├── README.rst ├── examples ├── linear_classification_pytorch.py ├── linear_classification_tensorflow.py ├── linear_regression_pytorch.py ├── linear_regression_tensorflow.py ├── plot_clf_losses.py └── tsallis.png ├── fyl_numpy.py ├── fyl_pytorch.py ├── fyl_sklearn.py ├── fyl_tensorflow.py └── tests ├── test_fyl_numpy.py ├── test_fyl_pytorch.py ├── test_fyl_sklearn.py ├── test_fyl_tensorflow.py └── test_readme.py /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/README.rst -------------------------------------------------------------------------------- /examples/linear_classification_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/examples/linear_classification_pytorch.py -------------------------------------------------------------------------------- /examples/linear_classification_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/examples/linear_classification_tensorflow.py -------------------------------------------------------------------------------- /examples/linear_regression_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/examples/linear_regression_pytorch.py -------------------------------------------------------------------------------- /examples/linear_regression_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/examples/linear_regression_tensorflow.py -------------------------------------------------------------------------------- /examples/plot_clf_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/examples/plot_clf_losses.py -------------------------------------------------------------------------------- /examples/tsallis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/examples/tsallis.png -------------------------------------------------------------------------------- /fyl_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/fyl_numpy.py -------------------------------------------------------------------------------- /fyl_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/fyl_pytorch.py -------------------------------------------------------------------------------- /fyl_sklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/fyl_sklearn.py -------------------------------------------------------------------------------- /fyl_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/fyl_tensorflow.py -------------------------------------------------------------------------------- /tests/test_fyl_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/tests/test_fyl_numpy.py -------------------------------------------------------------------------------- /tests/test_fyl_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/tests/test_fyl_pytorch.py -------------------------------------------------------------------------------- /tests/test_fyl_sklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/tests/test_fyl_sklearn.py -------------------------------------------------------------------------------- /tests/test_fyl_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/tests/test_fyl_tensorflow.py -------------------------------------------------------------------------------- /tests/test_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mblondel/fenchel-young-losses/HEAD/tests/test_readme.py --------------------------------------------------------------------------------