By Jackson Dean and Nick Cheney
Create a conda environment using environment.yml:
conda env create -f environment.yml
python move.py
ptyhon move.py -c <path-to-config.json>
python move.py <args>
options
-h, --help show this help message and exit
--config CONFIG, -c CONFIG
Path to config json file (default: default.json).
--generations GENERATIONS, -g GENERATIONS
Number of generations to run (default: 1000).
--population POPULATION, -p POPULATION
Population size.
--output OUTPUT, -o OUTPUT
Output directory.
-t TARGET, --target TARGET
Target image.
-v, --verbose Print verbose output (default: False).
-d DEVICE, --device DEVICE
Device to run on (default: cuda:0).
-sgd, --sgd Use SGD to update weights (default: True).
-ff NUM_FOURIER_FEATURES, --num_fourier_features NUM_FOURIER_FEATURES
Number of fourier features (default: 8).
-hn NUM_HIDDEN_NODES, --num_hidden_nodes NUM_HIDDEN_NODES
Number of hidden nodes at initialization (default: 8).
The default configuration of MOVE uses fourier features as inputs (see here) and SGD to update CPPN weights.