├── LICENSE ├── README.md ├── fastgp ├── __init__.py ├── algorithms │ ├── __init__.py │ ├── afpo.py │ ├── evolutionary_feature_synthesis.py │ ├── fast_evaluate.py │ └── truncation_with_elite.py ├── logging │ ├── __init__.py │ ├── archive.py │ └── reports.py ├── parametrized │ ├── __init__.py │ ├── mutation.py │ └── simple_parametrized_terminals.py └── utilities │ ├── __init__.py │ ├── benchmark_problems.py │ ├── metrics.py │ ├── operators.py │ ├── subset_selection.py │ └── symbreg.py ├── requirements.txt ├── setup.py └── tests └── fastgp └── parametrized └── test_simple_parametrzied_terminal.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/README.md -------------------------------------------------------------------------------- /fastgp/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mszubert' 2 | -------------------------------------------------------------------------------- /fastgp/algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mszubert' 2 | -------------------------------------------------------------------------------- /fastgp/algorithms/afpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/algorithms/afpo.py -------------------------------------------------------------------------------- /fastgp/algorithms/evolutionary_feature_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/algorithms/evolutionary_feature_synthesis.py -------------------------------------------------------------------------------- /fastgp/algorithms/fast_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/algorithms/fast_evaluate.py -------------------------------------------------------------------------------- /fastgp/algorithms/truncation_with_elite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/algorithms/truncation_with_elite.py -------------------------------------------------------------------------------- /fastgp/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastgp/logging/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/logging/archive.py -------------------------------------------------------------------------------- /fastgp/logging/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/logging/reports.py -------------------------------------------------------------------------------- /fastgp/parametrized/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mszubert' 2 | -------------------------------------------------------------------------------- /fastgp/parametrized/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/parametrized/mutation.py -------------------------------------------------------------------------------- /fastgp/parametrized/simple_parametrized_terminals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/parametrized/simple_parametrized_terminals.py -------------------------------------------------------------------------------- /fastgp/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastgp/utilities/benchmark_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/utilities/benchmark_problems.py -------------------------------------------------------------------------------- /fastgp/utilities/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/utilities/metrics.py -------------------------------------------------------------------------------- /fastgp/utilities/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/utilities/operators.py -------------------------------------------------------------------------------- /fastgp/utilities/subset_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/utilities/subset_selection.py -------------------------------------------------------------------------------- /fastgp/utilities/symbreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/fastgp/utilities/symbreg.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | deap 3 | pytest 4 | cachetools 5 | numpy 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/fastgp/parametrized/test_simple_parametrzied_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfusting/fastgp/HEAD/tests/fastgp/parametrized/test_simple_parametrzied_terminal.py --------------------------------------------------------------------------------