├── LICENSE ├── README.md └── sge ├── .gitignore ├── examples ├── __init__.py ├── bostonhousing.py ├── gp_ant.py ├── multiplexer_11.py ├── parity_5.py ├── simple_symreg.py └── symreg.py ├── grammars ├── 5_bit_parity_grammar.txt ├── antgrammar.pybnf ├── boston_housing_grammar.txt ├── bostonhousing.bnf ├── mux11_grammar.txt ├── regression.pybnf └── simple_regression.pybnf ├── parameters ├── standard.yml └── standard_gp_ant.yml ├── requirements.txt ├── resources ├── BostonHousing │ ├── Index │ ├── housing.data │ ├── housing.folds │ └── housing.names ├── create_folds.py ├── housing.folds ├── housing.txt ├── losaltos.txt └── santafe_trail.txt ├── setup.py ├── sge ├── __init__.py ├── engine.py ├── grammar.py ├── logger.py ├── operators │ ├── __init__.py │ ├── mutation.py │ ├── recombination.py │ └── selection.py ├── parameters.py └── utilities │ ├── __init__.py │ ├── ordered_set.py │ ├── protected_math.py │ └── run_info_orm.py └── tests └── core ├── test_grammar.py └── utilities └── test_utilities.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/README.md -------------------------------------------------------------------------------- /sge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/.gitignore -------------------------------------------------------------------------------- /sge/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sge/examples/bostonhousing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/examples/bostonhousing.py -------------------------------------------------------------------------------- /sge/examples/gp_ant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/examples/gp_ant.py -------------------------------------------------------------------------------- /sge/examples/multiplexer_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/examples/multiplexer_11.py -------------------------------------------------------------------------------- /sge/examples/parity_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/examples/parity_5.py -------------------------------------------------------------------------------- /sge/examples/simple_symreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/examples/simple_symreg.py -------------------------------------------------------------------------------- /sge/examples/symreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/examples/symreg.py -------------------------------------------------------------------------------- /sge/grammars/5_bit_parity_grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/5_bit_parity_grammar.txt -------------------------------------------------------------------------------- /sge/grammars/antgrammar.pybnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/antgrammar.pybnf -------------------------------------------------------------------------------- /sge/grammars/boston_housing_grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/boston_housing_grammar.txt -------------------------------------------------------------------------------- /sge/grammars/bostonhousing.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/bostonhousing.bnf -------------------------------------------------------------------------------- /sge/grammars/mux11_grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/mux11_grammar.txt -------------------------------------------------------------------------------- /sge/grammars/regression.pybnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/regression.pybnf -------------------------------------------------------------------------------- /sge/grammars/simple_regression.pybnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/grammars/simple_regression.pybnf -------------------------------------------------------------------------------- /sge/parameters/standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/parameters/standard.yml -------------------------------------------------------------------------------- /sge/parameters/standard_gp_ant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/parameters/standard_gp_ant.yml -------------------------------------------------------------------------------- /sge/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.19.2 2 | PyYAML==5.3.1 3 | tqdm==4.51.0 -------------------------------------------------------------------------------- /sge/resources/BostonHousing/Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/BostonHousing/Index -------------------------------------------------------------------------------- /sge/resources/BostonHousing/housing.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/BostonHousing/housing.data -------------------------------------------------------------------------------- /sge/resources/BostonHousing/housing.folds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/BostonHousing/housing.folds -------------------------------------------------------------------------------- /sge/resources/BostonHousing/housing.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/BostonHousing/housing.names -------------------------------------------------------------------------------- /sge/resources/create_folds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/create_folds.py -------------------------------------------------------------------------------- /sge/resources/housing.folds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/housing.folds -------------------------------------------------------------------------------- /sge/resources/housing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/housing.txt -------------------------------------------------------------------------------- /sge/resources/losaltos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/losaltos.txt -------------------------------------------------------------------------------- /sge/resources/santafe_trail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/resources/santafe_trail.txt -------------------------------------------------------------------------------- /sge/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/setup.py -------------------------------------------------------------------------------- /sge/sge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/__init__.py -------------------------------------------------------------------------------- /sge/sge/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/engine.py -------------------------------------------------------------------------------- /sge/sge/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/grammar.py -------------------------------------------------------------------------------- /sge/sge/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/logger.py -------------------------------------------------------------------------------- /sge/sge/operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sge/sge/operators/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/operators/mutation.py -------------------------------------------------------------------------------- /sge/sge/operators/recombination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/operators/recombination.py -------------------------------------------------------------------------------- /sge/sge/operators/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/operators/selection.py -------------------------------------------------------------------------------- /sge/sge/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/parameters.py -------------------------------------------------------------------------------- /sge/sge/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sge/sge/utilities/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/utilities/ordered_set.py -------------------------------------------------------------------------------- /sge/sge/utilities/protected_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/utilities/protected_math.py -------------------------------------------------------------------------------- /sge/sge/utilities/run_info_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/sge/utilities/run_info_orm.py -------------------------------------------------------------------------------- /sge/tests/core/test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/tests/core/test_grammar.py -------------------------------------------------------------------------------- /sge/tests/core/utilities/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunolourenco/sge3/HEAD/sge/tests/core/utilities/test_utilities.py --------------------------------------------------------------------------------