├── .gitignore ├── LICENSE ├── README.md ├── docs ├── ai-cover.jpg ├── cnn-convolution.gif ├── cnn-convolution.png ├── cnn-layers.png ├── cnn-maxpooling.png ├── cnn-pooling.png ├── conv-with-padding.png ├── fe-ai.md ├── img-grayscale.jpeg ├── img-regression.jpg ├── picture-55.jpg ├── picture-rgb.png ├── regression-result.jpg └── tensorflow-playground.png ├── index.html └── net ├── car.js └── convnet.js /.gitignore: -------------------------------------------------------------------------------- 1 | # MAC 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/README.md -------------------------------------------------------------------------------- /docs/ai-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/ai-cover.jpg -------------------------------------------------------------------------------- /docs/cnn-convolution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/cnn-convolution.gif -------------------------------------------------------------------------------- /docs/cnn-convolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/cnn-convolution.png -------------------------------------------------------------------------------- /docs/cnn-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/cnn-layers.png -------------------------------------------------------------------------------- /docs/cnn-maxpooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/cnn-maxpooling.png -------------------------------------------------------------------------------- /docs/cnn-pooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/cnn-pooling.png -------------------------------------------------------------------------------- /docs/conv-with-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/conv-with-padding.png -------------------------------------------------------------------------------- /docs/fe-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/fe-ai.md -------------------------------------------------------------------------------- /docs/img-grayscale.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/img-grayscale.jpeg -------------------------------------------------------------------------------- /docs/img-regression.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/img-regression.jpg -------------------------------------------------------------------------------- /docs/picture-55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/picture-55.jpg -------------------------------------------------------------------------------- /docs/picture-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/picture-rgb.png -------------------------------------------------------------------------------- /docs/regression-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/regression-result.jpg -------------------------------------------------------------------------------- /docs/tensorflow-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/docs/tensorflow-playground.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/index.html -------------------------------------------------------------------------------- /net/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/net/car.js -------------------------------------------------------------------------------- /net/convnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryOnlyZRJ/image-regression/HEAD/net/convnet.js --------------------------------------------------------------------------------