├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── babel.config.js ├── docs ├── CNAME ├── css │ ├── app.29cd2e1c.css │ └── chunk-vendors.ae8cd3c7.css ├── face-min.js ├── favicon.ico ├── gender │ ├── group1-shard1of1 │ ├── group10-shard1of1 │ ├── group11-shard1of1 │ ├── group12-shard1of9 │ ├── group12-shard2of9 │ ├── group12-shard3of9 │ ├── group12-shard4of9 │ ├── group12-shard5of9 │ ├── group12-shard6of9 │ ├── group12-shard7of9 │ ├── group12-shard8of9 │ ├── group12-shard9of9 │ ├── group13-shard1of1 │ ├── group2-shard1of1 │ ├── group3-shard1of1 │ ├── group4-shard1of1 │ ├── group5-shard1of1 │ ├── group6-shard1of1 │ ├── group7-shard1of1 │ ├── group8-shard1of1 │ ├── group9-shard1of1 │ └── model.json ├── img │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ └── placeholder.386e9382.svg ├── index.html ├── js │ ├── app.e75160eb.js │ ├── app.e75160eb.js.map │ ├── chunk-vendors.17d7d5a3.js │ └── chunk-vendors.17d7d5a3.js.map ├── manifest.json ├── precache-manifest.f1eb19bfaf498a8292918b99153f4323.js ├── robots.txt ├── service-worker.js └── tracking-min.js ├── package.json ├── preview.gif ├── public ├── CNAME ├── face-min.js ├── favicon.ico ├── gender │ ├── group1-shard1of1 │ ├── group10-shard1of1 │ ├── group11-shard1of1 │ ├── group12-shard1of9 │ ├── group12-shard2of9 │ ├── group12-shard3of9 │ ├── group12-shard4of9 │ ├── group12-shard5of9 │ ├── group12-shard6of9 │ ├── group12-shard7of9 │ ├── group12-shard8of9 │ ├── group12-shard9of9 │ ├── group13-shard1of1 │ ├── group2-shard1of1 │ ├── group3-shard1of1 │ ├── group4-shard1of1 │ ├── group5-shard1of1 │ ├── group6-shard1of1 │ ├── group7-shard1of1 │ ├── group8-shard1of1 │ ├── group9-shard1of1 │ └── model.json ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg ├── index.html ├── manifest.json ├── robots.txt └── tracking-min.js ├── src ├── App.vue ├── assets │ └── placeholder.svg ├── components │ └── GenderDetect.vue ├── main.js ├── plugins │ └── vuetify.js ├── registerServiceWorker.js └── utils.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | gender-detection.ml -------------------------------------------------------------------------------- /docs/css/app.29cd2e1c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/css/app.29cd2e1c.css -------------------------------------------------------------------------------- /docs/css/chunk-vendors.ae8cd3c7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/css/chunk-vendors.ae8cd3c7.css -------------------------------------------------------------------------------- /docs/face-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/face-min.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/gender/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group1-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group10-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group10-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group11-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group11-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group12-shard1of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard1of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard2of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard2of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard3of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard3of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard4of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard4of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard5of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard5of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard6of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard6of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard7of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard7of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard8of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard8of9 -------------------------------------------------------------------------------- /docs/gender/group12-shard9of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group12-shard9of9 -------------------------------------------------------------------------------- /docs/gender/group13-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group13-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group2-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group2-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group3-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group3-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group4-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group4-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group5-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group5-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group6-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group6-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group7-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group7-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group8-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group8-shard1of1 -------------------------------------------------------------------------------- /docs/gender/group9-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/group9-shard1of1 -------------------------------------------------------------------------------- /docs/gender/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/gender/model.json -------------------------------------------------------------------------------- /docs/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /docs/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /docs/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/img/placeholder.386e9382.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/img/placeholder.386e9382.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.e75160eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/js/app.e75160eb.js -------------------------------------------------------------------------------- /docs/js/app.e75160eb.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/js/app.e75160eb.js.map -------------------------------------------------------------------------------- /docs/js/chunk-vendors.17d7d5a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/js/chunk-vendors.17d7d5a3.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.17d7d5a3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/js/chunk-vendors.17d7d5a3.js.map -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/precache-manifest.f1eb19bfaf498a8292918b99153f4323.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/precache-manifest.f1eb19bfaf498a8292918b99153f4323.js -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /docs/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/service-worker.js -------------------------------------------------------------------------------- /docs/tracking-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/docs/tracking-min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/preview.gif -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | gender-detection.ml -------------------------------------------------------------------------------- /public/face-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/face-min.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/gender/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group1-shard1of1 -------------------------------------------------------------------------------- /public/gender/group10-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group10-shard1of1 -------------------------------------------------------------------------------- /public/gender/group11-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group11-shard1of1 -------------------------------------------------------------------------------- /public/gender/group12-shard1of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard1of9 -------------------------------------------------------------------------------- /public/gender/group12-shard2of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard2of9 -------------------------------------------------------------------------------- /public/gender/group12-shard3of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard3of9 -------------------------------------------------------------------------------- /public/gender/group12-shard4of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard4of9 -------------------------------------------------------------------------------- /public/gender/group12-shard5of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard5of9 -------------------------------------------------------------------------------- /public/gender/group12-shard6of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard6of9 -------------------------------------------------------------------------------- /public/gender/group12-shard7of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard7of9 -------------------------------------------------------------------------------- /public/gender/group12-shard8of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard8of9 -------------------------------------------------------------------------------- /public/gender/group12-shard9of9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group12-shard9of9 -------------------------------------------------------------------------------- /public/gender/group13-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group13-shard1of1 -------------------------------------------------------------------------------- /public/gender/group2-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group2-shard1of1 -------------------------------------------------------------------------------- /public/gender/group3-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group3-shard1of1 -------------------------------------------------------------------------------- /public/gender/group4-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group4-shard1of1 -------------------------------------------------------------------------------- /public/gender/group5-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group5-shard1of1 -------------------------------------------------------------------------------- /public/gender/group6-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group6-shard1of1 -------------------------------------------------------------------------------- /public/gender/group7-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group7-shard1of1 -------------------------------------------------------------------------------- /public/gender/group8-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group8-shard1of1 -------------------------------------------------------------------------------- /public/gender/group9-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/group9-shard1of1 -------------------------------------------------------------------------------- /public/gender/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/gender/model.json -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/tracking-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/public/tracking-min.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/assets/placeholder.svg -------------------------------------------------------------------------------- /src/components/GenderDetect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/components/GenderDetect.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/src/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharathvaj-ganesan/gender-detection-tensorflowjs/HEAD/yarn.lock --------------------------------------------------------------------------------