├── .gitignore ├── infer.py ├── model.py └── train-rnn.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pt 3 | -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/turndetection/HEAD/infer.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/turndetection/HEAD/model.py -------------------------------------------------------------------------------- /train-rnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/turndetection/HEAD/train-rnn.ipynb --------------------------------------------------------------------------------