├── .gitignore ├── LICENSE ├── README.md ├── demo_strokes.png ├── matlab ├── Dataset.m ├── UtilImage.m ├── apply_to_nested.m ├── data_background.mat ├── data_background_small1.mat ├── data_background_small2.mat ├── data_evaluation.mat ├── demo.m ├── one-shot-classification │ ├── demo_classification.m │ ├── items_classification.mat │ ├── myclassify.m │ └── verify_classif_images.m ├── plot_image_only.m ├── plot_motor_on_image.m ├── space_img_to_motor.m └── space_motor_to_img.m ├── omniglot_grid.jpg └── python ├── demo.py ├── images_background.zip ├── images_background_small1.zip ├── images_background_small2.zip ├── images_evaluation.zip ├── one-shot-classification ├── all_runs.zip └── demo_classification.py ├── strokes_background.zip ├── strokes_background_small1.zip ├── strokes_background_small2.zip └── strokes_evaluation.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/README.md -------------------------------------------------------------------------------- /demo_strokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/demo_strokes.png -------------------------------------------------------------------------------- /matlab/Dataset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/Dataset.m -------------------------------------------------------------------------------- /matlab/UtilImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/UtilImage.m -------------------------------------------------------------------------------- /matlab/apply_to_nested.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/apply_to_nested.m -------------------------------------------------------------------------------- /matlab/data_background.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/data_background.mat -------------------------------------------------------------------------------- /matlab/data_background_small1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/data_background_small1.mat -------------------------------------------------------------------------------- /matlab/data_background_small2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/data_background_small2.mat -------------------------------------------------------------------------------- /matlab/data_evaluation.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/data_evaluation.mat -------------------------------------------------------------------------------- /matlab/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/demo.m -------------------------------------------------------------------------------- /matlab/one-shot-classification/demo_classification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/one-shot-classification/demo_classification.m -------------------------------------------------------------------------------- /matlab/one-shot-classification/items_classification.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/one-shot-classification/items_classification.mat -------------------------------------------------------------------------------- /matlab/one-shot-classification/myclassify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/one-shot-classification/myclassify.m -------------------------------------------------------------------------------- /matlab/one-shot-classification/verify_classif_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/one-shot-classification/verify_classif_images.m -------------------------------------------------------------------------------- /matlab/plot_image_only.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/plot_image_only.m -------------------------------------------------------------------------------- /matlab/plot_motor_on_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/plot_motor_on_image.m -------------------------------------------------------------------------------- /matlab/space_img_to_motor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/space_img_to_motor.m -------------------------------------------------------------------------------- /matlab/space_motor_to_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/matlab/space_motor_to_img.m -------------------------------------------------------------------------------- /omniglot_grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/omniglot_grid.jpg -------------------------------------------------------------------------------- /python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/demo.py -------------------------------------------------------------------------------- /python/images_background.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/images_background.zip -------------------------------------------------------------------------------- /python/images_background_small1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/images_background_small1.zip -------------------------------------------------------------------------------- /python/images_background_small2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/images_background_small2.zip -------------------------------------------------------------------------------- /python/images_evaluation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/images_evaluation.zip -------------------------------------------------------------------------------- /python/one-shot-classification/all_runs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/one-shot-classification/all_runs.zip -------------------------------------------------------------------------------- /python/one-shot-classification/demo_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/one-shot-classification/demo_classification.py -------------------------------------------------------------------------------- /python/strokes_background.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/strokes_background.zip -------------------------------------------------------------------------------- /python/strokes_background_small1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/strokes_background_small1.zip -------------------------------------------------------------------------------- /python/strokes_background_small2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/strokes_background_small2.zip -------------------------------------------------------------------------------- /python/strokes_evaluation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendenlake/omniglot/HEAD/python/strokes_evaluation.zip --------------------------------------------------------------------------------