bamsumit
bamsumit
Hi @alexggener, great! Here are the coarse steps: 1. create a ConvT process (`class ConvT` in `src/lava/proc/convT/process.py`) 2. create a ConvT PyProcModel. (`src/lava/proc/convT/models.py`) 3. add ConvT utilities to `src/lava/proc/convT/utils.py` You...
Here is an example conversion for basic convolution with stride 1: ```python import numpy as np import torch import torch.nn.functional as F for i in range(10): kernel_x = np.random.randint(7) +...
@zeyuliu1037 seems there are some linting errors regarding code quality. Link [here](https://github.com/lava-nc/lava/actions/runs/7999700382/job/21890696613?pr=833). Can you fix them?
@zeyuliu1037 we still have a few linting errors: ```bash tests/lava/proc/conv_in_time/test_process.py 38: 25 E128 continuation line under-indented for visual indent [pycodestyle] n_flat_output_neurons, n_flat_input_neurons]) - 128 ^ 41: 25 E128 continuation line...
1. `current_decay` and `voltage_decay` need to be between 0 and 1. So a value of 10 is most likely getting clamped in this valid range. 2. Thresholds in CUBA-LIF neurons...