├── CollectShapeData └── CollectShapeData.pde ├── LICENSE ├── README.md └── shapeclassifier_ml5 ├── index.html ├── model ├── model.json ├── model.weights.bin └── model_meta.json └── sketch.js /CollectShapeData/CollectShapeData.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/CollectShapeData/CollectShapeData.pde -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ShapeClassifierCNN 2 | test code for new tutorial 3 | -------------------------------------------------------------------------------- /shapeclassifier_ml5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/shapeclassifier_ml5/index.html -------------------------------------------------------------------------------- /shapeclassifier_ml5/model/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/shapeclassifier_ml5/model/model.json -------------------------------------------------------------------------------- /shapeclassifier_ml5/model/model.weights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/shapeclassifier_ml5/model/model.weights.bin -------------------------------------------------------------------------------- /shapeclassifier_ml5/model/model_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/shapeclassifier_ml5/model/model_meta.json -------------------------------------------------------------------------------- /shapeclassifier_ml5/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffman/ShapeClassifierCNN/HEAD/shapeclassifier_ml5/sketch.js --------------------------------------------------------------------------------