An open API service indexing awesome lists of open source software.

https://github.com/bkj/basenet

Pytorch NN helpers
https://github.com/bkj/basenet

computer-vision machine-learning neural-network nlp pytorch

Last synced: about 1 year ago
JSON representation

Pytorch NN helpers

Awesome Lists containing this project

README

          

#### basenet

Classes wrapping basic `pytorch` functionality.

- Train for an epoch
- Eval for an epoch
- Predict
- Learning rate schedules

##### Installation

```
conda create -n basenet4_env python=3.6 pip -y
source activate basenet4_env

pip install -r requirements.txt
conda install -y pytorch torchvision cuda90 -c pytorch
pip install -e .
```

#### Examples

```
cd examples/cifar
./run.sh
```