optiml 1.7__tar.gz → 1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. optiml-1.8/MANIFEST.in +1 -0
  2. {optiml-1.7 → optiml-1.8}/PKG-INFO +2 -1
  3. {optiml-1.7 → optiml-1.8}/README.md +1 -0
  4. optiml-1.8/optiml/ml/data/ML-CUP19/ML-CUP19-TR.csv +1772 -0
  5. optiml-1.8/optiml/ml/data/ML-CUP19/ML-CUP19-TS.csv +418 -0
  6. optiml-1.8/optiml/ml/data/ML-CUP19/dmeoli_ML-CUP19-TS.csv +416 -0
  7. {optiml-1.7 → optiml-1.8}/optiml/ml/svm/_base.py +2 -2
  8. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/test_svc.py +2 -1
  9. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/test_svr.py +2 -1
  10. {optiml-1.7 → optiml-1.8}/optiml/opti/_base.py +6 -2
  11. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/_base.py +10 -4
  12. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/active_set.py +18 -9
  13. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/frank_wolfe.py +16 -9
  14. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/interior_point.py +4 -5
  15. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/projected_gradient.py +14 -9
  16. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/_base.py +3 -0
  17. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/conjugate_gradient.py +6 -10
  18. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/gradient_descent.py +6 -10
  19. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/newton.py +6 -10
  20. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/quasi_newton.py +12 -20
  21. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/proximal_bundle.py +6 -11
  22. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/_base.py +6 -9
  23. {optiml-1.7 → optiml-1.8}/optiml.egg-info/PKG-INFO +2 -1
  24. {optiml-1.7 → optiml-1.8}/optiml.egg-info/SOURCES.txt +4 -0
  25. {optiml-1.7 → optiml-1.8}/setup.py +3 -1
  26. {optiml-1.7 → optiml-1.8}/LICENSE +0 -0
  27. {optiml-1.7 → optiml-1.8}/optiml/__init__.py +0 -0
  28. {optiml-1.7 → optiml-1.8}/optiml/ml/__init__.py +0 -0
  29. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/__init__.py +0 -0
  30. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/_base.py +0 -0
  31. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/activations.py +0 -0
  32. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/initializers.py +0 -0
  33. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/layers.py +0 -0
  34. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/losses.py +0 -0
  35. {optiml-1.7 → optiml-1.8}/optiml/ml/neural_network/regularizers.py +0 -0
  36. {optiml-1.7 → optiml-1.8}/optiml/ml/svm/__init__.py +0 -0
  37. {optiml-1.7 → optiml-1.8}/optiml/ml/svm/kernels.py +0 -0
  38. {optiml-1.7 → optiml-1.8}/optiml/ml/svm/losses.py +0 -0
  39. {optiml-1.7 → optiml-1.8}/optiml/ml/svm/smo.py +0 -0
  40. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/__init__.py +0 -0
  41. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/_datasets.py +0 -0
  42. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/_utils.py +0 -0
  43. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/test_initializers.py +0 -0
  44. {optiml-1.7 → optiml-1.8}/optiml/ml/tests/test_neural_network.py +0 -0
  45. {optiml-1.7 → optiml-1.8}/optiml/ml/utils.py +0 -0
  46. {optiml-1.7 → optiml-1.8}/optiml/opti/__init__.py +0 -0
  47. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/__init__.py +0 -0
  48. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/__init__.py +0 -0
  49. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/test_active_set.py +0 -0
  50. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/test_frank_wolfe.py +0 -0
  51. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/test_interior_point.py +0 -0
  52. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/test_lagrangian_quadratic.py +0 -0
  53. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/test_lower_bound.py +0 -0
  54. {optiml-1.7 → optiml-1.8}/optiml/opti/constrained/tests/test_projected_gradient.py +0 -0
  55. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/__init__.py +0 -0
  56. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/__init__.py +0 -0
  57. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/_base.py +0 -0
  58. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/line_search/line_search.py +0 -0
  59. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/__init__.py +0 -0
  60. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/adadelta.py +0 -0
  61. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/adagrad.py +0 -0
  62. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/adam.py +0 -0
  63. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/adamax.py +0 -0
  64. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/amsgrad.py +0 -0
  65. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/gradient_descent.py +0 -0
  66. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/rmsprop.py +0 -0
  67. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/stochastic/schedules.py +0 -0
  68. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/__init__.py +0 -0
  69. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_adadelta.py +0 -0
  70. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_adagrad.py +0 -0
  71. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_adam.py +0 -0
  72. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_adamax.py +0 -0
  73. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_amsgrad.py +0 -0
  74. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_conjugate_gradient.py +0 -0
  75. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_functions.py +0 -0
  76. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_gradient_descent.py +0 -0
  77. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_newton.py +0 -0
  78. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_quasi_newton.py +0 -0
  79. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_rmsprop.py +0 -0
  80. {optiml-1.7 → optiml-1.8}/optiml/opti/unconstrained/tests/test_verbose.py +0 -0
  81. {optiml-1.7 → optiml-1.8}/optiml/opti/utils.py +0 -0
  82. {optiml-1.7 → optiml-1.8}/optiml.egg-info/dependency_links.txt +0 -0
  83. {optiml-1.7 → optiml-1.8}/optiml.egg-info/requires.txt +0 -0
  84. {optiml-1.7 → optiml-1.8}/optiml.egg-info/top_level.txt +0 -0
  85. {optiml-1.7 → optiml-1.8}/setup.cfg +0 -0
optiml-1.8/MANIFEST.in ADDED
@@ -0,0 +1 @@
1
+ recursive-include optiml/ml/data *.csv
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: optiml
3
- Version: 1.7
3
+ Version: 1.8
4
4
  Summary: Optimizers for/and sklearn compatible Machine Learning models
5
5
  Home-page: https://github.com/dmeoli/optiml
6
6
  Author: Donato Meoli
@@ -40,6 +40,7 @@ Dynamic: summary
40
40
  [![PyPI Version](https://img.shields.io/pypi/v/optiml.svg?color=blue)](https://pypi.org/project/optiml/)
41
41
  [![PyPI Downloads](https://img.shields.io/pypi/dm/optiml.svg)](https://pypistats.org/packages/optiml)
42
42
  [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/dmeoli/optiml/master)
43
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dmeoli/optiml)
43
44
  [![Documentation](https://img.shields.io/badge/docs-online-blue)](https://dmeoli.github.io/optiml)
44
45
 
45
46
  OptiML is a sklearn compatible implementation of *Support Vector Machines* and *Deep Neural Networks*, both with some of
@@ -6,6 +6,7 @@
6
6
  [![PyPI Version](https://img.shields.io/pypi/v/optiml.svg?color=blue)](https://pypi.org/project/optiml/)
7
7
  [![PyPI Downloads](https://img.shields.io/pypi/dm/optiml.svg)](https://pypistats.org/packages/optiml)
8
8
  [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/dmeoli/optiml/master)
9
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dmeoli/optiml)
9
10
  [![Documentation](https://img.shields.io/badge/docs-online-blue)](https://dmeoli.github.io/optiml)
10
11
 
11
12
  OptiML is a sklearn compatible implementation of *Support Vector Machines* and *Deep Neural Networks*, both with some of