gitextract_kpew33sp/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Tutorials/ │ └── MNIST-Quickstart/ │ ├── MNIST-Quickstart.ipynb │ └── mnist_quickstart.py ├── arghandle/ │ ├── README.md │ ├── __init__.py │ ├── core.py │ └── handlers.py ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── _static/ │ │ └── css/ │ │ └── magnet-theme.css │ ├── _templates/ │ │ └── footer.html │ ├── conf.py │ ├── data.rst │ ├── debug.rst │ ├── index.rst │ ├── magnet.rst │ ├── nodes.rst │ ├── training.rst │ └── utils.rst ├── environment.yml ├── magnet/ │ ├── __init__.py │ ├── _autograd.py │ ├── data/ │ │ ├── __init__.py │ │ ├── core.py │ │ ├── data.py │ │ ├── dataloader.py │ │ ├── sampler.py │ │ └── transforms.py │ ├── debug.py │ ├── nodes/ │ │ ├── __init__.py │ │ ├── core.py │ │ ├── functional/ │ │ │ ├── __init__.py │ │ │ ├── activations.py │ │ │ ├── functional.py │ │ │ ├── losses.py │ │ │ └── metrics.py │ │ └── nodes.py │ ├── training/ │ │ ├── __init__.py │ │ ├── callbacks.py │ │ ├── history.py │ │ ├── train.py │ │ └── utils.py │ └── utils/ │ ├── __arghandle__/ │ │ ├── __init__.py │ │ └── images.py │ ├── __init__.py │ ├── _node.py │ ├── images.py │ ├── misc.py │ ├── plot.py │ ├── statistical.py │ └── varseq.py ├── readthedocs.yml ├── setup.py └── tests/ ├── data/ │ └── test_dataloader.py ├── nodes/ │ ├── test_core.py │ └── test_nodes.py ├── test_debug.py ├── training/ │ ├── test_callbacks.py │ ├── test_history.py │ └── test_train.py └── utils/ ├── test__node.py ├── test_images.py ├── test_plot.py ├── test_statistical.py └── test_varseq.py