├── .github └── workflows │ ├── pythonapp.yml │ └── pythonpublish.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yml ├── LICENSE ├── README.md ├── doc ├── Makefile └── source │ ├── apisrc │ └── evolutionary_keras.rst │ ├── conf.py │ ├── howto.rst │ ├── index.rst │ └── optimizers.rst ├── examples └── test.py ├── setup.py └── src └── evolutionary_keras ├── __init__.py ├── models.py ├── optimizers.py ├── tests ├── __init__.py ├── test_fit.py └── test_utilities.py └── utilities.py /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/apisrc/evolutionary_keras.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/doc/source/apisrc/evolutionary_keras.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/howto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/doc/source/howto.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/optimizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/doc/source/optimizers.rst -------------------------------------------------------------------------------- /examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/examples/test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/setup.py -------------------------------------------------------------------------------- /src/evolutionary_keras/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1" 2 | -------------------------------------------------------------------------------- /src/evolutionary_keras/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/src/evolutionary_keras/models.py -------------------------------------------------------------------------------- /src/evolutionary_keras/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/src/evolutionary_keras/optimizers.py -------------------------------------------------------------------------------- /src/evolutionary_keras/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/evolutionary_keras/tests/test_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/src/evolutionary_keras/tests/test_fit.py -------------------------------------------------------------------------------- /src/evolutionary_keras/tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/src/evolutionary_keras/tests/test_utilities.py -------------------------------------------------------------------------------- /src/evolutionary_keras/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3PDF/evolutionary_keras/HEAD/src/evolutionary_keras/utilities.py --------------------------------------------------------------------------------