LightWeightConv layer warnings during training
See original GitHub issueIf just install specified requirements + Pillow and fairseq following warnings appear during training start:
No module named 'lightconv_cuda'
If install lightconv-layer from fairseq, the folllowing warning displayed:
WARNING: Unsupported filter length passed - skipping forward pass
Pytorch 1.7 Cuda 10.2 Fairseq 1.0.0a0+19793a7
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (2 by maintainers)
Top Results From Across the Web
Implementation of Lightweight Convolutional Neural Networks ...
The lightweight CNN can be obtained by training this reconstructed CNN. Figure 1 shows one convolutional layer (left) in the original CNN ...
Read more >Driver Behaviors Recognizer Based on Light-Weight ...
This research introduces a light-weight convolutional neural network architecture to recognize driver behaviors, helping the warning system ...
Read more >Large-Truck Safety Warning System Based on Lightweight ...
This paper presents a lightweight SSD model based on atrous convolution. It is used in large-truck safety warning systems. On the basis of...
Read more >Lightweight convolutional neural network for aircraft small ...
It can automatically identify aircraft in airport images and assist tower controllers in ensuring flight safety. It is essential in daily ...
Read more >A Lightweight Multi-Scale Convolutional Neural Network for ...
A Lightweight Multi-Scale Convolutional Neural Network for P300 Decoding: Analysis of Training Strategies and Uncovering of Network Decision.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@KinamSalad lightconv_cuda is not a package. It is a pytorch extension write in C++. The shitty thing is fairseq don’t automatically install it when you build fairseq(and I don’t see and guiding or warning about installing it either) so you have to build it yourself. You can install it by following steps:
python cuda_function_gen.py
python setup.py install
Note: This installation depend a lot on cuda env so.
@GuangChen2016 I did not install fairseq, LightweightConv of LEECHOONGHO script worked for me except the soft-DTW of Parallel Tacotron2
ps: The softDTW in this repo can not work with large batch-size. You can check the appendix of this paper, may it help: https://arxiv.org/pdf/2205.04421.pdf