├── .gitignore ├── LICENSE ├── README.md ├── analytical ├── analyze_simulation_results.py ├── conditionnumber.py ├── experiments.py ├── numerical_test.py ├── numerical_test_torch.py ├── peter.py └── repr_stability.py ├── configs.py ├── configs_test.py ├── datasets └── hallem ├── dict_methods.py ├── hallem.py ├── main.py ├── mamldataset.py ├── mamlmetatrain.py ├── mamlmodel.py ├── model.py ├── normalization.py ├── notebooks ├── .ipynb_checkpoints │ └── analyze_K.ipynb ├── RNN_notebook.ipynb ├── Scratch.ipynb ├── Untitled.ipynb ├── __init__.py ├── analyze_K.ipynb ├── analyze_K_big.ipynb ├── hemibrain.ipynb ├── hemibrain_vs_simulation.ipynb ├── parameterizeK.ipynb └── quickstart.ipynb ├── one_hidden_layer ├── analysis.py └── experiment.py ├── oracle └── evaluatewithnoise.py ├── paper_datasets.py ├── paper_supplementals.py ├── peter_cluster.py ├── random_hp ├── analysis.py └── experiment.py ├── random_larry_analysis.py ├── schematics ├── figs_weight_movie.py ├── figure.py └── plotVoronoi.py ├── settings.py ├── standard ├── __init__.py ├── analysis.py ├── analysis_activity.py ├── analysis_metalearn.py ├── analysis_multihead.py ├── analysis_nonnegative.py ├── analysis_orn2pn.py ├── analysis_pn2kc_random.py ├── analysis_pn2kc_training.py ├── analysis_rnn.py ├── analysis_rnn_obsolete.py ├── analysis_weight.py ├── experiment_controls.py ├── experiment_metas.py ├── experiment_unused.py ├── experiment_utils.py ├── experiments.py └── old.py ├── task.py ├── temp_meta ├── __init__.py ├── meta_analysis.py ├── metamodel.py └── metatrain.py ├── tools.py ├── torchmodel.py ├── torchmovie.py ├── torchtrain.py ├── train.py ├── transfer_experiment ├── analysis.py └── experiment.py └── vary_basearchitecture ├── analysis.py └── experiment.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/README.md -------------------------------------------------------------------------------- /analytical/analyze_simulation_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/analyze_simulation_results.py -------------------------------------------------------------------------------- /analytical/conditionnumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/conditionnumber.py -------------------------------------------------------------------------------- /analytical/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/experiments.py -------------------------------------------------------------------------------- /analytical/numerical_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/numerical_test.py -------------------------------------------------------------------------------- /analytical/numerical_test_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/numerical_test_torch.py -------------------------------------------------------------------------------- /analytical/peter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/peter.py -------------------------------------------------------------------------------- /analytical/repr_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/analytical/repr_stability.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/configs.py -------------------------------------------------------------------------------- /configs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/configs_test.py -------------------------------------------------------------------------------- /datasets/hallem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/datasets/hallem -------------------------------------------------------------------------------- /dict_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/dict_methods.py -------------------------------------------------------------------------------- /hallem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/hallem.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/main.py -------------------------------------------------------------------------------- /mamldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/mamldataset.py -------------------------------------------------------------------------------- /mamlmetatrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/mamlmetatrain.py -------------------------------------------------------------------------------- /mamlmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/mamlmodel.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/model.py -------------------------------------------------------------------------------- /normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/normalization.py -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/analyze_K.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/.ipynb_checkpoints/analyze_K.ipynb -------------------------------------------------------------------------------- /notebooks/RNN_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/RNN_notebook.ipynb -------------------------------------------------------------------------------- /notebooks/Scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/Scratch.ipynb -------------------------------------------------------------------------------- /notebooks/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/Untitled.ipynb -------------------------------------------------------------------------------- /notebooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/analyze_K.ipynb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/analyze_K_big.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/analyze_K_big.ipynb -------------------------------------------------------------------------------- /notebooks/hemibrain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/hemibrain.ipynb -------------------------------------------------------------------------------- /notebooks/hemibrain_vs_simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/hemibrain_vs_simulation.ipynb -------------------------------------------------------------------------------- /notebooks/parameterizeK.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/parameterizeK.ipynb -------------------------------------------------------------------------------- /notebooks/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/notebooks/quickstart.ipynb -------------------------------------------------------------------------------- /one_hidden_layer/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/one_hidden_layer/analysis.py -------------------------------------------------------------------------------- /one_hidden_layer/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/one_hidden_layer/experiment.py -------------------------------------------------------------------------------- /oracle/evaluatewithnoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/oracle/evaluatewithnoise.py -------------------------------------------------------------------------------- /paper_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/paper_datasets.py -------------------------------------------------------------------------------- /paper_supplementals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/paper_supplementals.py -------------------------------------------------------------------------------- /peter_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/peter_cluster.py -------------------------------------------------------------------------------- /random_hp/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/random_hp/analysis.py -------------------------------------------------------------------------------- /random_hp/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/random_hp/experiment.py -------------------------------------------------------------------------------- /random_larry_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/random_larry_analysis.py -------------------------------------------------------------------------------- /schematics/figs_weight_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/schematics/figs_weight_movie.py -------------------------------------------------------------------------------- /schematics/figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/schematics/figure.py -------------------------------------------------------------------------------- /schematics/plotVoronoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/schematics/plotVoronoi.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/settings.py -------------------------------------------------------------------------------- /standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis.py -------------------------------------------------------------------------------- /standard/analysis_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_activity.py -------------------------------------------------------------------------------- /standard/analysis_metalearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_metalearn.py -------------------------------------------------------------------------------- /standard/analysis_multihead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_multihead.py -------------------------------------------------------------------------------- /standard/analysis_nonnegative.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /standard/analysis_orn2pn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_orn2pn.py -------------------------------------------------------------------------------- /standard/analysis_pn2kc_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_pn2kc_random.py -------------------------------------------------------------------------------- /standard/analysis_pn2kc_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_pn2kc_training.py -------------------------------------------------------------------------------- /standard/analysis_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_rnn.py -------------------------------------------------------------------------------- /standard/analysis_rnn_obsolete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_rnn_obsolete.py -------------------------------------------------------------------------------- /standard/analysis_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/analysis_weight.py -------------------------------------------------------------------------------- /standard/experiment_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/experiment_controls.py -------------------------------------------------------------------------------- /standard/experiment_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/experiment_metas.py -------------------------------------------------------------------------------- /standard/experiment_unused.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/experiment_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/experiment_utils.py -------------------------------------------------------------------------------- /standard/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/experiments.py -------------------------------------------------------------------------------- /standard/old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/standard/old.py -------------------------------------------------------------------------------- /task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/task.py -------------------------------------------------------------------------------- /temp_meta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /temp_meta/meta_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/temp_meta/meta_analysis.py -------------------------------------------------------------------------------- /temp_meta/metamodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/temp_meta/metamodel.py -------------------------------------------------------------------------------- /temp_meta/metatrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/temp_meta/metatrain.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/tools.py -------------------------------------------------------------------------------- /torchmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/torchmodel.py -------------------------------------------------------------------------------- /torchmovie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/torchmovie.py -------------------------------------------------------------------------------- /torchtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/torchtrain.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/train.py -------------------------------------------------------------------------------- /transfer_experiment/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/transfer_experiment/analysis.py -------------------------------------------------------------------------------- /transfer_experiment/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/transfer_experiment/experiment.py -------------------------------------------------------------------------------- /vary_basearchitecture/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/vary_basearchitecture/analysis.py -------------------------------------------------------------------------------- /vary_basearchitecture/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyyang/olfaction_evolution/HEAD/vary_basearchitecture/experiment.py --------------------------------------------------------------------------------