├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ols ├── __init__.py ├── label_smooth.py └── online_label_smooth.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── test_loss.py └── test_update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/README.md -------------------------------------------------------------------------------- /ols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/ols/__init__.py -------------------------------------------------------------------------------- /ols/label_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/ols/label_smooth.py -------------------------------------------------------------------------------- /ols/online_label_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/ols/online_label_smooth.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch==1.8.1 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/test/test_loss.py -------------------------------------------------------------------------------- /test/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankandrew/online-label-smoothing-pt/HEAD/test/test_update.py --------------------------------------------------------------------------------