lava-dl
lava-dl copied to clipboard
Deep Learning library for Lava
The objective of the issue: I have created a notebook that implements the conversion of the network created in the Slayer NMNIST tutorial. This issue is opened for the pull...
Objective of issue: - Increase GPU utilization. **Lava DL version:** - [ ] **0.3.0** (feature release) - [ ] **0.2.1** (bug fixes) - [x] **0.2.0** (current version) - [ ]...
I tried to run your tutorial from bootstrap/mnist/train.ipynb, but it crashes because of runtime errors related to ninja_build (see details below). When I switch to "device = torch.device('cpu')" it works...
### User story As a user, I want to modify the arguments to slayer neuron norms. The neuron norms provide arguments to adjust momentum and other parameters: https://github.com/lava-nc/lava-dl/blob/543efaac136bfb028f1445f0384fe36555c0fc21/src/lava/lib/dl/slayer/neuron/norm.py#L36 However, when...
In the latest release, the in port of the Input AbstractBlock for netx does not connect it's in port to it's neuron in port. Load any model via netx with...
Steps to reproduce the behavior: 1. When I run this code ``` import torch input = torch.randn(1,8,6,7,160) CL= slayer.block.cuba.Pool(neuron_params, kernel_size =(2,2) , stride = 2, padding =0) output = CL(input)...
Issue Number: Objective of pull request: ## Pull request checklist Your PR fulfills the following requirements: - [ ] [Issue](https://github.com/lava-nc/lava-dl/issues) created that explains the change and why it's needed -...
**Describe the bug** When I try to use the cuba Recurrent blocks in my network, I get ```RuntimeError: Output 0 of SelectBackward0 is a view and is being modified inplace....
**Describe the bug** There seems to be a small bug in the implementation of the adrf neuron (lava-dl/src/lib/dl/slayer/neuron/adrf.py). The Neuron.forward() function calls self.spike(real, imag, threshold + refractory), while it should...