You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anh Nguyen edited this page May 26, 2015
·
3 revisions
The ImageNet experiment takes ~4 days x 128 cores to run on the cluster. To test evolving images quickly, you can choose to either:
Run the MNSIT experiment dl_map_elites_images_mnisthere.
Run the test ImageNet experiment dl_map_elites_images_test.cpphere. If you choose this option #2, please follow the steps below:
Then configure waf to compile your experiment. In wscript file, update the obj.source property to:
obj.source = 'dl_map_elites_images_test.cpp'
This experiment should evolve 28x28 color images in 10 ImageNet classes from 1-10. And it should take it a few minutes to run on a single machine of 4 cores.
Please note the settings configured differently from the real experiment:
// Evolve towards 10 ImageNet classes instead of 1000SFERES_CONSTsize_t res_y = 10; // e.g. 1000SFERES_CONSTint num_categories = 10; //e.g. 1000//number of initial random pointsstaticconstsize_t init_size = 10; //e.g. 400// size of the populationSFERES_CONSTunsigned size = 10; //e.g. 400;// number of generationsSFERES_CONSTunsigned nb_gen = 10; //e.g. 5000;// Evolve images of size 28 x 28SFERES_CONSTint size = 28; // e.g. 256// Use only 1 center crop as configured in the prototxtSFERES_CONSTbool use_crops = false;