CfC
CfC copied to clipboard
Closed-form Continuous-time Neural Networks
With pytorch_lightning 1.7 : ModuleNotFoundError: No module named 'pytorch_lightning.metrics' Solution : change imports in python train_*.py from ```import pytorch_lightning.metrics.functional...``` into ```import torchmetrics.functional `` and install torchmetrics (pip install torchmetrics for...
Hello, I am very interested in your model. When I run your traffic_with_cfc.py, I found ''--use_mixed_ltc'', but I did not find the MixedLTCCell function in the code. I really want...
Hello, I would like to ask, if cfc is used in time series, is the sample the entire sequence, or a fixed-length window of the time series? For the case...
Is it possible to train cfc neural network with other network structures such as transformer? Are there specific examples?
Hi, I am trying to estimate ECG metrics with a combination of Conv-layers and CFCs, taking inspiration from the Atari tutorial. Unlike Atari, where convolutions extract features from images, in...
ValueError: Unable to restore custom object of type _tf_keras_rnn_layer currently. Please make sure that the layer implements `get_config`and `from_config` when saving. In addition, please use the `custom_objects` arg when calling...
A regularizing kernel could be used to penalize the neural network weights. This can help to avoid overfitting the model and improve its overall performance. This could be done by...
- Assumes even distribution for timespans if timespans is `None` ✅
- Added APTx activation function based on improvement to Mish ✅ - Resource: https://arxiv.org/abs/2209.06119