├── keras-example ├── tensorflow │ ├── _api │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── app │ │ │ └── __init__.py │ │ │ ├── keras │ │ │ ├── estimator │ │ │ │ └── __init__.py │ │ │ ├── datasets │ │ │ │ ├── mnist │ │ │ │ │ └── __init__.py │ │ │ │ ├── fashion_mnist │ │ │ │ │ └── __init__.py │ │ │ │ ├── cifar10 │ │ │ │ │ └── __init__.py │ │ │ │ ├── cifar100 │ │ │ │ │ └── __init__.py │ │ │ │ ├── boston_housing │ │ │ │ │ └── __init__.py │ │ │ │ ├── imdb │ │ │ │ │ └── __init__.py │ │ │ │ └── reuters │ │ │ │ │ └── __init__.py │ │ │ ├── wrappers │ │ │ │ └── __init__.py │ │ │ └── preprocessing │ │ │ │ └── __init__.py │ │ │ └── user_ops │ │ │ └── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── debug │ │ │ └── __init__.py │ │ ├── util │ │ │ └── __init__.py │ │ ├── example │ │ │ └── __init__.py │ │ ├── framework │ │ │ └── __init__.py │ │ ├── grappler │ │ │ ├── __init__.py │ │ │ └── costs │ │ │ │ └── __init__.py │ │ ├── kernels │ │ │ ├── __init__.py │ │ │ └── boosted_trees │ │ │ │ └── __init__.py │ │ ├── profiler │ │ │ └── __init__.py │ │ └── protobuf │ │ │ └── __init__.py │ ├── tools │ │ ├── __init__.py │ │ ├── docs │ │ │ └── __init__.py │ │ ├── dist_test │ │ │ ├── __init__.py │ │ │ └── server │ │ │ │ └── __init__.py │ │ └── pip_package │ │ │ └── __init__.py │ ├── compiler │ │ ├── __init__.py │ │ ├── jit │ │ │ ├── __init__.py │ │ │ └── ops │ │ │ │ └── __init__.py │ │ └── xla │ │ │ ├── __init__.py │ │ │ ├── service │ │ │ └── __init__.py │ │ │ ├── experimental │ │ │ ├── __init__.py │ │ │ └── xla_sharding │ │ │ │ └── __init__.py │ │ │ └── python_api │ │ │ └── __init__.py │ ├── examples │ │ ├── __init__.py │ │ └── tutorials │ │ │ └── __init__.py │ └── python │ │ ├── ops │ │ ├── __init__.py │ │ ├── linalg │ │ │ └── __init__.py │ │ ├── losses │ │ │ └── __init__.py │ │ └── distributions │ │ │ └── __init__.py │ │ ├── util │ │ ├── __init__.py │ │ └── protobuf │ │ │ └── __init__.py │ │ ├── client │ │ └── __init__.py │ │ ├── compat │ │ └── __init__.py │ │ ├── data │ │ ├── ops │ │ │ └── __init__.py │ │ ├── util │ │ │ └── __init__.py │ │ ├── kernel_tests │ │ │ └── __init__.py │ │ └── experimental │ │ │ ├── ops │ │ │ └── __init__.py │ │ │ └── kernel_tests │ │ │ ├── __init__.py │ │ │ └── serialization │ │ │ └── __init__.py │ │ ├── debug │ │ ├── cli │ │ │ └── __init__.py │ │ ├── examples │ │ │ └── __init__.py │ │ └── wrappers │ │ │ └── __init__.py │ │ ├── eager │ │ └── __init__.py │ │ ├── framework │ │ └── __init__.py │ │ ├── grappler │ │ └── __init__.py │ │ ├── layers │ │ └── __init__.py │ │ ├── platform │ │ └── __init__.py │ │ ├── profiler │ │ ├── __init__.py │ │ └── internal │ │ │ └── __init__.py │ │ ├── summary │ │ ├── __init__.py │ │ └── writer │ │ │ └── __init__.py │ │ ├── tools │ │ ├── __init__.py │ │ └── api │ │ │ ├── __init__.py │ │ │ └── generator │ │ │ └── __init__.py │ │ ├── training │ │ ├── __init__.py │ │ └── checkpointable │ │ │ └── __init__.py │ │ ├── user_ops │ │ └── __init__.py │ │ ├── autograph │ │ ├── core │ │ │ └── __init__.py │ │ ├── impl │ │ │ └── __init__.py │ │ ├── lang │ │ │ └── __init__.py │ │ ├── converters │ │ │ └── __init__.py │ │ └── pyct │ │ │ ├── common_transformers │ │ │ └── __init__.py │ │ │ └── static_analysis │ │ │ └── __init__.py │ │ ├── distribute │ │ └── __init__.py │ │ ├── feature_column │ │ └── __init__.py │ │ ├── saved_model │ │ └── __init__.py │ │ └── estimator │ │ ├── canned │ │ └── __init__.py │ │ ├── export │ │ └── __init__.py │ │ ├── inputs │ │ ├── __init__.py │ │ └── queues │ │ │ └── __init__.py │ │ └── api │ │ └── estimator │ │ └── inputs │ │ └── __init__.py ├── node_modules │ ├── glob-all │ │ ├── .npmignore │ │ ├── example │ │ │ ├── files │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ ├── c.txt │ │ │ │ └── x │ │ │ │ │ ├── y.txt │ │ │ │ │ └── z.txt │ │ │ ├── order.js │ │ │ ├── sync.js │ │ │ ├── async.js │ │ │ ├── perf.js │ │ │ └── events.js │ │ └── bin │ │ │ └── glob-all │ ├── .bin │ │ ├── md5-file │ │ ├── rimraf │ │ └── glob-all │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── index.js │ │ └── test.js │ ├── jszip │ │ ├── .jshintignore │ │ ├── .editorconfig │ │ ├── .codeclimate.yml │ │ └── .jshintrc │ ├── yargs │ │ ├── test │ │ │ ├── mocha.opts │ │ │ ├── config.json │ │ │ ├── _ │ │ │ │ └── bin.js │ │ │ └── whitespace.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── example │ │ │ ├── short.js │ │ │ ├── demand_count.js │ │ │ ├── nonopt.js │ │ │ ├── boolean_single.js │ │ │ ├── default_hash.js │ │ │ ├── default_singles.js │ │ │ ├── boolean_double.js │ │ │ ├── divide.js │ │ │ ├── implies.js │ │ │ ├── xup.js │ │ │ ├── string.js │ │ │ ├── bool.js │ │ │ └── requires_arg.js │ ├── array-filter │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── test │ │ │ ├── holes.js │ │ │ └── filter.js │ │ └── index.js │ ├── appdirectory │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── Makefile │ ├── readable-stream │ │ ├── duplex.js │ │ ├── transform.js │ │ ├── passthrough.js │ │ ├── duplex-browser.js │ │ ├── writable-browser.js │ │ ├── writable.js │ │ └── readable-browser.js │ ├── concat-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── array-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── minimist │ │ ├── .travis.yml │ │ ├── example │ │ │ └── parse.js │ │ └── test │ │ │ ├── whitespace.js │ │ │ └── parse_modified.js │ ├── array-reduce │ │ ├── .travis.yml │ │ └── example │ │ │ └── sum.js │ ├── shell-quote │ │ ├── .travis.yml │ │ └── example │ │ │ ├── op.js │ │ │ ├── quote.js │ │ │ ├── parse.js │ │ │ └── env.js │ ├── balanced-match │ │ └── .npmignore │ ├── core-util-is │ │ └── README.md │ ├── bluebird │ │ ├── changelog.md │ │ └── js │ │ │ └── release │ │ │ ├── bluebird.js │ │ │ └── filter.js │ ├── jsonify │ │ ├── index.js │ │ └── test │ │ │ ├── stringify.js │ │ │ └── parse.js │ ├── lie │ │ └── polyfill.js │ ├── md5-file │ │ ├── cli.js │ │ └── promise.js │ ├── util-deprecate │ │ ├── node.js │ │ └── History.md │ ├── inherits │ │ └── inherits.js │ ├── set-immediate-shim │ │ └── index.js │ └── pako │ │ └── index.js ├── PIL │ ├── _version.py │ ├── .libs │ │ ├── libz-a147dcb0.so.1.2.3 │ │ ├── libjpeg-3fe7dfc0.so.9.3.0 │ │ ├── liblcms2-a6801db4.so.2.0.8 │ │ ├── liblzma-6cd627ed.so.5.2.4 │ │ ├── libtiff-8267adfe.so.5.4.0 │ │ ├── libwebp-baad113c.so.7.0.4 │ │ ├── libopenjp2-e366d6b0.so.2.1.0 │ │ ├── libpng16-9e58a7b0.so.16.36.0 │ │ ├── libwebpmux-75695800.so.3.0.4 │ │ ├── libfreetype-3e240bcb.so.6.16.1 │ │ └── libwebpdemux-60cc0b6d.so.2.0.6 │ └── ImagePath.py ├── event.json ├── .vscode │ └── settings.json ├── elephant.jpg ├── package.json ├── .gitignore └── requirements.txt ├── keras-assignment ├── tensorflow │ ├── _api │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── app │ │ │ └── __init__.py │ │ │ ├── keras │ │ │ ├── estimator │ │ │ │ └── __init__.py │ │ │ ├── datasets │ │ │ │ ├── mnist │ │ │ │ │ └── __init__.py │ │ │ │ ├── fashion_mnist │ │ │ │ │ └── __init__.py │ │ │ │ ├── cifar10 │ │ │ │ │ └── __init__.py │ │ │ │ ├── cifar100 │ │ │ │ │ └── __init__.py │ │ │ │ ├── boston_housing │ │ │ │ │ └── __init__.py │ │ │ │ ├── imdb │ │ │ │ │ └── __init__.py │ │ │ │ └── reuters │ │ │ │ │ └── __init__.py │ │ │ └── wrappers │ │ │ │ └── __init__.py │ │ │ └── user_ops │ │ │ └── __init__.py │ ├── compiler │ │ ├── __init__.py │ │ ├── jit │ │ │ ├── __init__.py │ │ │ └── ops │ │ │ │ └── __init__.py │ │ └── xla │ │ │ ├── __init__.py │ │ │ ├── python_api │ │ │ └── __init__.py │ │ │ ├── service │ │ │ └── __init__.py │ │ │ └── experimental │ │ │ ├── __init__.py │ │ │ └── xla_sharding │ │ │ └── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── debug │ │ │ └── __init__.py │ │ ├── example │ │ │ └── __init__.py │ │ ├── grappler │ │ │ ├── __init__.py │ │ │ └── costs │ │ │ │ └── __init__.py │ │ ├── kernels │ │ │ ├── __init__.py │ │ │ └── boosted_trees │ │ │ │ └── __init__.py │ │ ├── profiler │ │ │ └── __init__.py │ │ ├── protobuf │ │ │ └── __init__.py │ │ ├── util │ │ │ └── __init__.py │ │ └── framework │ │ │ └── __init__.py │ ├── examples │ │ ├── __init__.py │ │ └── tutorials │ │ │ └── __init__.py │ ├── tools │ │ ├── __init__.py │ │ ├── docs │ │ │ └── __init__.py │ │ ├── dist_test │ │ │ ├── __init__.py │ │ │ └── server │ │ │ │ └── __init__.py │ │ └── pip_package │ │ │ └── __init__.py │ └── python │ │ ├── client │ │ └── __init__.py │ │ ├── compat │ │ └── __init__.py │ │ ├── eager │ │ └── __init__.py │ │ ├── layers │ │ └── __init__.py │ │ ├── ops │ │ ├── __init__.py │ │ ├── linalg │ │ │ └── __init__.py │ │ ├── losses │ │ │ └── __init__.py │ │ └── distributions │ │ │ └── __init__.py │ │ ├── tools │ │ ├── __init__.py │ │ └── api │ │ │ ├── __init__.py │ │ │ └── generator │ │ │ └── __init__.py │ │ ├── util │ │ ├── __init__.py │ │ └── protobuf │ │ │ └── __init__.py │ │ ├── data │ │ ├── ops │ │ │ └── __init__.py │ │ ├── util │ │ │ └── __init__.py │ │ ├── experimental │ │ │ ├── ops │ │ │ │ └── __init__.py │ │ │ └── kernel_tests │ │ │ │ ├── __init__.py │ │ │ │ └── serialization │ │ │ │ └── __init__.py │ │ └── kernel_tests │ │ │ └── __init__.py │ │ ├── debug │ │ ├── cli │ │ │ └── __init__.py │ │ ├── examples │ │ │ └── __init__.py │ │ └── wrappers │ │ │ └── __init__.py │ │ ├── distribute │ │ └── __init__.py │ │ ├── framework │ │ └── __init__.py │ │ ├── grappler │ │ └── __init__.py │ │ ├── platform │ │ └── __init__.py │ │ ├── profiler │ │ ├── __init__.py │ │ └── internal │ │ │ └── __init__.py │ │ ├── saved_model │ │ └── __init__.py │ │ ├── summary │ │ ├── __init__.py │ │ └── writer │ │ │ └── __init__.py │ │ ├── training │ │ ├── __init__.py │ │ └── checkpointable │ │ │ └── __init__.py │ │ ├── user_ops │ │ └── __init__.py │ │ ├── autograph │ │ ├── core │ │ │ └── __init__.py │ │ ├── impl │ │ │ └── __init__.py │ │ ├── lang │ │ │ └── __init__.py │ │ ├── converters │ │ │ └── __init__.py │ │ └── pyct │ │ │ ├── static_analysis │ │ │ └── __init__.py │ │ │ └── common_transformers │ │ │ └── __init__.py │ │ ├── estimator │ │ ├── canned │ │ │ └── __init__.py │ │ ├── export │ │ │ └── __init__.py │ │ ├── inputs │ │ │ ├── __init__.py │ │ │ └── queues │ │ │ │ └── __init__.py │ │ └── api │ │ │ └── estimator │ │ │ └── inputs │ │ │ └── __init__.py │ │ └── feature_column │ │ └── __init__.py ├── node_modules │ ├── glob-all │ │ ├── .npmignore │ │ ├── example │ │ │ ├── files │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ ├── c.txt │ │ │ │ └── x │ │ │ │ │ ├── y.txt │ │ │ │ │ └── z.txt │ │ │ ├── order.js │ │ │ ├── sync.js │ │ │ ├── async.js │ │ │ ├── perf.js │ │ │ └── events.js │ │ └── bin │ │ │ └── glob-all │ ├── .bin │ │ ├── rimraf │ │ ├── md5-file │ │ └── glob-all │ ├── yargs │ │ ├── test │ │ │ ├── mocha.opts │ │ │ ├── config.json │ │ │ ├── _ │ │ │ │ └── bin.js │ │ │ └── whitespace.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── example │ │ │ ├── short.js │ │ │ ├── demand_count.js │ │ │ ├── nonopt.js │ │ │ ├── boolean_single.js │ │ │ ├── default_hash.js │ │ │ ├── default_singles.js │ │ │ ├── boolean_double.js │ │ │ ├── divide.js │ │ │ ├── implies.js │ │ │ ├── xup.js │ │ │ ├── string.js │ │ │ ├── bool.js │ │ │ └── requires_arg.js │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── index.js │ │ └── test.js │ ├── jszip │ │ ├── .jshintignore │ │ ├── .editorconfig │ │ ├── .codeclimate.yml │ │ └── .jshintrc │ ├── array-filter │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── test │ │ │ ├── holes.js │ │ │ └── filter.js │ ├── appdirectory │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── Makefile │ ├── readable-stream │ │ ├── duplex.js │ │ ├── transform.js │ │ ├── passthrough.js │ │ ├── duplex-browser.js │ │ ├── writable-browser.js │ │ ├── writable.js │ │ └── readable-browser.js │ ├── concat-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── array-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── array-reduce │ │ ├── .travis.yml │ │ └── example │ │ │ └── sum.js │ ├── minimist │ │ ├── .travis.yml │ │ ├── example │ │ │ └── parse.js │ │ └── test │ │ │ ├── whitespace.js │ │ │ └── parse_modified.js │ ├── shell-quote │ │ ├── .travis.yml │ │ └── example │ │ │ ├── op.js │ │ │ ├── quote.js │ │ │ ├── parse.js │ │ │ └── env.js │ ├── balanced-match │ │ └── .npmignore │ ├── core-util-is │ │ └── README.md │ ├── bluebird │ │ ├── changelog.md │ │ └── js │ │ │ └── release │ │ │ ├── bluebird.js │ │ │ └── filter.js │ ├── jsonify │ │ ├── index.js │ │ └── test │ │ │ ├── stringify.js │ │ │ └── parse.js │ ├── lie │ │ └── polyfill.js │ ├── md5-file │ │ ├── cli.js │ │ └── promise.js │ ├── util-deprecate │ │ ├── node.js │ │ └── History.md │ ├── inherits │ │ └── inherits.js │ ├── set-immediate-shim │ │ └── index.js │ └── pako │ │ └── index.js ├── PIL │ ├── _version.py │ ├── .libs │ │ ├── libz-a147dcb0.so.1.2.3 │ │ ├── libjpeg-3fe7dfc0.so.9.3.0 │ │ ├── liblcms2-a6801db4.so.2.0.8 │ │ ├── liblzma-6cd627ed.so.5.2.4 │ │ ├── libtiff-8267adfe.so.5.4.0 │ │ ├── libwebp-baad113c.so.7.0.4 │ │ ├── libopenjp2-e366d6b0.so.2.1.0 │ │ ├── libpng16-9e58a7b0.so.16.36.0 │ │ ├── libwebpmux-75695800.so.3.0.4 │ │ ├── libfreetype-3e240bcb.so.6.16.1 │ │ └── libwebpdemux-60cc0b6d.so.2.0.6 │ └── ImagePath.py ├── event.json ├── .vscode │ └── settings.json ├── package.json ├── .gitignore └── requirements.txt ├── scikit-example ├── node_modules │ ├── glob-all │ │ ├── .npmignore │ │ ├── example │ │ │ ├── files │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ ├── c.txt │ │ │ │ └── x │ │ │ │ │ ├── y.txt │ │ │ │ │ └── z.txt │ │ │ ├── order.js │ │ │ ├── sync.js │ │ │ ├── async.js │ │ │ ├── perf.js │ │ │ └── events.js │ │ └── bin │ │ │ └── glob-all │ ├── .bin │ │ ├── rimraf │ │ ├── md5-file │ │ └── glob-all │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── index.js │ │ └── test.js │ ├── yargs │ │ ├── test │ │ │ ├── mocha.opts │ │ │ ├── config.json │ │ │ ├── _ │ │ │ │ └── bin.js │ │ │ └── whitespace.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── example │ │ │ ├── short.js │ │ │ ├── demand_count.js │ │ │ ├── nonopt.js │ │ │ ├── boolean_single.js │ │ │ ├── default_hash.js │ │ │ ├── default_singles.js │ │ │ ├── boolean_double.js │ │ │ ├── divide.js │ │ │ ├── implies.js │ │ │ ├── xup.js │ │ │ ├── string.js │ │ │ ├── bool.js │ │ │ └── requires_arg.js │ ├── array-filter │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── test │ │ │ ├── holes.js │ │ │ └── filter.js │ ├── jszip │ │ ├── .jshintignore │ │ ├── .editorconfig │ │ ├── .codeclimate.yml │ │ └── .jshintrc │ ├── appdirectory │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── Makefile │ ├── readable-stream │ │ ├── duplex.js │ │ ├── passthrough.js │ │ ├── transform.js │ │ ├── duplex-browser.js │ │ ├── writable-browser.js │ │ ├── writable.js │ │ └── readable-browser.js │ ├── array-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── concat-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── minimist │ │ ├── .travis.yml │ │ ├── example │ │ │ └── parse.js │ │ └── test │ │ │ ├── whitespace.js │ │ │ └── parse_modified.js │ ├── array-reduce │ │ ├── .travis.yml │ │ └── example │ │ │ └── sum.js │ ├── shell-quote │ │ ├── .travis.yml │ │ └── example │ │ │ ├── op.js │ │ │ ├── quote.js │ │ │ ├── parse.js │ │ │ └── env.js │ ├── balanced-match │ │ └── .npmignore │ ├── core-util-is │ │ └── README.md │ ├── bluebird │ │ ├── changelog.md │ │ └── js │ │ │ └── release │ │ │ ├── bluebird.js │ │ │ └── filter.js │ ├── jsonify │ │ ├── index.js │ │ └── test │ │ │ ├── stringify.js │ │ │ └── parse.js │ ├── lie │ │ └── polyfill.js │ ├── md5-file │ │ ├── cli.js │ │ └── promise.js │ ├── util-deprecate │ │ ├── node.js │ │ └── History.md │ ├── inherits │ │ └── inherits.js │ ├── set-immediate-shim │ │ └── index.js │ └── pako │ │ └── index.js ├── requirements.txt ├── .vscode │ └── settings.json ├── event.json ├── model_1553724836.6208675.joblib ├── package.json └── .gitignore ├── spacy-assignment ├── node_modules │ ├── glob-all │ │ ├── .npmignore │ │ ├── example │ │ │ ├── files │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ ├── c.txt │ │ │ │ └── x │ │ │ │ │ ├── y.txt │ │ │ │ │ └── z.txt │ │ │ ├── order.js │ │ │ ├── sync.js │ │ │ ├── async.js │ │ │ ├── perf.js │ │ │ └── events.js │ │ └── bin │ │ │ └── glob-all │ ├── .bin │ │ ├── rimraf │ │ ├── md5-file │ │ └── glob-all │ ├── yargs │ │ ├── test │ │ │ ├── mocha.opts │ │ │ ├── config.json │ │ │ ├── _ │ │ │ │ └── bin.js │ │ │ └── whitespace.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── example │ │ │ ├── short.js │ │ │ ├── demand_count.js │ │ │ ├── nonopt.js │ │ │ ├── boolean_single.js │ │ │ ├── default_hash.js │ │ │ ├── default_singles.js │ │ │ ├── boolean_double.js │ │ │ ├── divide.js │ │ │ ├── implies.js │ │ │ ├── xup.js │ │ │ ├── string.js │ │ │ ├── bool.js │ │ │ └── requires_arg.js │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── index.js │ │ └── test.js │ ├── jszip │ │ ├── .jshintignore │ │ ├── .editorconfig │ │ ├── .codeclimate.yml │ │ └── .jshintrc │ ├── array-filter │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── test │ │ │ ├── holes.js │ │ │ └── filter.js │ ├── appdirectory │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── Makefile │ ├── readable-stream │ │ ├── duplex.js │ │ ├── transform.js │ │ ├── passthrough.js │ │ ├── duplex-browser.js │ │ ├── writable-browser.js │ │ ├── writable.js │ │ └── readable-browser.js │ ├── concat-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── array-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── array-reduce │ │ ├── .travis.yml │ │ └── example │ │ │ └── sum.js │ ├── minimist │ │ ├── .travis.yml │ │ ├── example │ │ │ └── parse.js │ │ └── test │ │ │ ├── whitespace.js │ │ │ └── parse_modified.js │ ├── shell-quote │ │ ├── .travis.yml │ │ └── example │ │ │ ├── op.js │ │ │ ├── quote.js │ │ │ ├── parse.js │ │ │ └── env.js │ ├── balanced-match │ │ └── .npmignore │ ├── core-util-is │ │ └── README.md │ ├── bluebird │ │ ├── changelog.md │ │ └── js │ │ │ └── release │ │ │ ├── bluebird.js │ │ │ └── filter.js │ ├── jsonify │ │ ├── index.js │ │ └── test │ │ │ ├── stringify.js │ │ │ └── parse.js │ ├── lie │ │ └── polyfill.js │ ├── md5-file │ │ ├── cli.js │ │ └── promise.js │ ├── util-deprecate │ │ ├── node.js │ │ └── History.md │ ├── inherits │ │ └── inherits.js │ ├── set-immediate-shim │ │ └── index.js │ └── pako │ │ └── index.js ├── event.json ├── .vscode │ └── settings.json ├── requirements.txt ├── package.json └── .gitignore ├── spacy-example ├── node_modules │ ├── glob-all │ │ ├── .npmignore │ │ ├── example │ │ │ ├── files │ │ │ │ ├── a.txt │ │ │ │ ├── b.txt │ │ │ │ ├── c.txt │ │ │ │ └── x │ │ │ │ │ ├── y.txt │ │ │ │ │ └── z.txt │ │ │ ├── order.js │ │ │ ├── sync.js │ │ │ ├── async.js │ │ │ ├── perf.js │ │ │ └── events.js │ │ └── bin │ │ │ └── glob-all │ ├── .bin │ │ ├── md5-file │ │ ├── rimraf │ │ └── glob-all │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── index.js │ │ └── test.js │ ├── jszip │ │ ├── .jshintignore │ │ ├── .editorconfig │ │ ├── .codeclimate.yml │ │ └── .jshintrc │ ├── yargs │ │ ├── test │ │ │ ├── mocha.opts │ │ │ ├── config.json │ │ │ ├── _ │ │ │ │ └── bin.js │ │ │ └── whitespace.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── example │ │ │ ├── short.js │ │ │ ├── demand_count.js │ │ │ ├── nonopt.js │ │ │ ├── boolean_single.js │ │ │ ├── default_hash.js │ │ │ ├── default_singles.js │ │ │ ├── boolean_double.js │ │ │ ├── divide.js │ │ │ ├── implies.js │ │ │ ├── xup.js │ │ │ ├── string.js │ │ │ ├── bool.js │ │ │ └── requires_arg.js │ ├── array-filter │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── test │ │ │ ├── holes.js │ │ │ └── filter.js │ ├── appdirectory │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── Makefile │ ├── readable-stream │ │ ├── duplex.js │ │ ├── transform.js │ │ ├── passthrough.js │ │ ├── duplex-browser.js │ │ ├── writable-browser.js │ │ ├── writable.js │ │ └── readable-browser.js │ ├── concat-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── array-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── minimist │ │ ├── .travis.yml │ │ ├── example │ │ │ └── parse.js │ │ └── test │ │ │ ├── whitespace.js │ │ │ └── parse_modified.js │ ├── array-reduce │ │ ├── .travis.yml │ │ └── example │ │ │ └── sum.js │ ├── shell-quote │ │ ├── .travis.yml │ │ └── example │ │ │ ├── op.js │ │ │ ├── quote.js │ │ │ ├── parse.js │ │ │ └── env.js │ ├── balanced-match │ │ └── .npmignore │ ├── core-util-is │ │ └── README.md │ ├── bluebird │ │ ├── changelog.md │ │ └── js │ │ │ └── release │ │ │ ├── bluebird.js │ │ │ └── filter.js │ ├── jsonify │ │ ├── index.js │ │ └── test │ │ │ ├── stringify.js │ │ │ └── parse.js │ ├── lie │ │ └── polyfill.js │ ├── md5-file │ │ ├── cli.js │ │ └── promise.js │ ├── util-deprecate │ │ ├── node.js │ │ └── History.md │ ├── inherits │ │ └── inherits.js │ ├── set-immediate-shim │ │ └── index.js │ └── pako │ │ └── index.js ├── event.json ├── .vscode │ └── settings.json ├── requirements.txt ├── package.json └── .gitignore ├── web-gui-code ├── .vscode │ └── settings.json └── img │ └── loading_32.gif └── hello-world ├── .gitignore └── handler.py /keras-example/tensorflow/_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/debug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/tools/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/jit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/xla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/debug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/grappler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/kernels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/profiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/eager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/tools/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/jit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/jit/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/xla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/grappler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/kernels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/profiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/data/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/data/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/debug/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/eager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/grappler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/profiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/summary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/tools/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/user_ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/tools/dist_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /scikit-example/requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-learn==0.20.2 -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /keras-assignment/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/jit/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/examples/tutorials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/data/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/data/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/debug/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/distribute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/grappler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/ops/linalg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/ops/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/profiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/saved_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/summary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/tools/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/user_ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/tools/dist_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/tools/pip_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/node_modules/.bin/md5-file: -------------------------------------------------------------------------------- 1 | ../md5-file/cli.js -------------------------------------------------------------------------------- /keras-example/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/xla/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/grappler/costs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/examples/tutorials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/autograph/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/autograph/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/autograph/lang/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/debug/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/debug/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/distribute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/feature_column/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/ops/linalg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/ops/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/saved_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/summary/writer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/util/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/tools/pip_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scikit-example/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /spacy-assignment/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /spacy-example/node_modules/.bin/md5-file: -------------------------------------------------------------------------------- 1 | ../md5-file/cli.js -------------------------------------------------------------------------------- /spacy-example/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /keras-assignment/node_modules/.bin/md5-file: -------------------------------------------------------------------------------- 1 | ../md5-file/cli.js -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/files/a.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/files/b.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/files/c.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/test/mocha.opts: -------------------------------------------------------------------------------- 1 | -R nyan 2 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/xla/python_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/xla/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/grappler/costs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/autograph/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/autograph/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/autograph/lang/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/debug/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/debug/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/estimator/canned/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/estimator/export/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/estimator/inputs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/feature_column/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/summary/writer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/util/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/tools/dist_test/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/files/a.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/files/b.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/files/c.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /keras-example/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/jszip/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/test/mocha.opts: -------------------------------------------------------------------------------- 1 | -R nyan 2 | -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/xla/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/xla/python_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/core/kernels/boosted_trees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/data/kernel_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/estimator/canned/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/estimator/export/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/estimator/inputs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/ops/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/profiler/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/tools/api/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/tools/dist_test/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scikit-example/node_modules/.bin/md5-file: -------------------------------------------------------------------------------- 1 | ../md5-file/cli.js -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/files/a.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/files/b.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/files/c.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /scikit-example/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/test/mocha.opts: -------------------------------------------------------------------------------- 1 | -R nyan 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/.bin/md5-file: -------------------------------------------------------------------------------- 1 | ../md5-file/cli.js -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/files/a.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/files/b.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/files/c.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/test/mocha.opts: -------------------------------------------------------------------------------- 1 | -R nyan 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/files/a.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/files/b.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/files/c.txt: -------------------------------------------------------------------------------- 1 | a.txt -------------------------------------------------------------------------------- /spacy-example/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/jszip/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/test/mocha.opts: -------------------------------------------------------------------------------- 1 | -R nyan 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/.bin/glob-all: -------------------------------------------------------------------------------- 1 | ../glob-all/bin/glob-all -------------------------------------------------------------------------------- /keras-assignment/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jszip/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/xla/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/core/kernels/boosted_trees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/autograph/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/data/experimental/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/data/kernel_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/ops/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/profiler/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/tools/api/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/node_modules/.bin/glob-all: -------------------------------------------------------------------------------- 1 | ../glob-all/bin/glob-all -------------------------------------------------------------------------------- /keras-example/node_modules/array-filter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/files/x/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/files/x/z.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/autograph/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/data/experimental/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/estimator/inputs/queues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/training/checkpointable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scikit-example/node_modules/.bin/glob-all: -------------------------------------------------------------------------------- 1 | ../glob-all/bin/glob-all -------------------------------------------------------------------------------- /scikit-example/node_modules/array-filter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/files/x/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/files/x/z.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jszip/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/.bin/glob-all: -------------------------------------------------------------------------------- 1 | ../glob-all/bin/glob-all -------------------------------------------------------------------------------- /spacy-assignment/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jszip/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/.bin/glob-all: -------------------------------------------------------------------------------- 1 | ../glob-all/bin/glob-all -------------------------------------------------------------------------------- /spacy-example/node_modules/array-filter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/files/x/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/files/x/z.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-filter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/files/x/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/files/x/z.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/estimator/inputs/queues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/training/checkpointable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-filter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/files/x/y.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/files/x/z.txt: -------------------------------------------------------------------------------- 1 | y.txt 2 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/compiler/xla/experimental/xla_sharding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/autograph/pyct/static_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/data/experimental/kernel_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/compiler/xla/experimental/xla_sharding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/autograph/pyct/common_transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/autograph/pyct/static_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/data/experimental/kernel_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/autograph/pyct/common_transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /keras-example/PIL/_version.py: -------------------------------------------------------------------------------- 1 | # Master version for Pillow 2 | __version__ = '6.0.0' 3 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/data/experimental/kernel_tests/serialization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | *.swp 4 | -------------------------------------------------------------------------------- /keras-assignment/PIL/_version.py: -------------------------------------------------------------------------------- 1 | # Master version for Pillow 2 | __version__ = '6.0.0' 3 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/data/experimental/kernel_tests/serialization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/appdirectory/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | .coveralls.yml -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/appdirectory/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | .coveralls.yml -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/appdirectory/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | .coveralls.yml -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/appdirectory/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | .coveralls.yml -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /spacy-example/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "body": "Jim bought 300 shares of Acme Corp. in 2006." 3 | } -------------------------------------------------------------------------------- /spacy-example/node_modules/appdirectory/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | .coveralls.yml -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Duplex 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /spacy-assignment/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "body": "{\"text\":\"The quick brown fox jumps over the lazy dog.\"}" 3 | } -------------------------------------------------------------------------------- /spacy-assignment/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').Transform 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /keras-assignment/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "queryStringParameters": { 3 | "imageKey": "elephant.jpg" 4 | } 5 | } -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-filter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-reduce/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/shell-quote/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "queryStringParameters": { 3 | "imageKey": "elephant.jpg" 4 | } 5 | } -------------------------------------------------------------------------------- /keras-example/node_modules/array-filter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-reduce/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/shell-quote/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/test/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "herp": "derp", 3 | "z": 55, 4 | "foo": "baz" 5 | } -------------------------------------------------------------------------------- /scikit-example/node_modules/array-filter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-reduce/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/shell-quote/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-filter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-reduce/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./readable').PassThrough 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/shell-quote/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-filter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-reduce/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/shell-quote/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/test/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "herp": "derp", 3 | "z": 55, 4 | "foo": "baz" 5 | } -------------------------------------------------------------------------------- /keras-assignment/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/test/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "herp": "derp", 3 | "z": 55, 4 | "foo": "baz" 5 | } -------------------------------------------------------------------------------- /keras-example/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /keras-example/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /scikit-example/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/test/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "herp": "derp", 3 | "z": 55, 4 | "foo": "baz" 5 | } -------------------------------------------------------------------------------- /spacy-assignment/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/duplex-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_duplex.js'); 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/test/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "herp": "derp", 3 | "z": 55, 4 | "foo": "baz" 5 | } -------------------------------------------------------------------------------- /spacy-example/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /spacy-example/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /web-gui-code/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "G:\\Anaconda3\\envs\\aws-spacy-dep\\python.exe" 3 | } -------------------------------------------------------------------------------- /keras-assignment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/home/osboxes/miniconda3/envs/keras-dev/bin/python" 3 | } -------------------------------------------------------------------------------- /keras-assignment/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /keras-example/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/home/osboxes/miniconda3/envs/keras-dev/bin/python" 3 | } -------------------------------------------------------------------------------- /keras-example/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /scikit-example/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/home/osboxes/miniconda3/envs/scikit-dev/bin/python" 3 | } -------------------------------------------------------------------------------- /spacy-assignment/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/home/osboxes/miniconda3/envs/spacy-dev/bin/python" 3 | } -------------------------------------------------------------------------------- /spacy-assignment/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/writable-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/_stream_writable.js'); 2 | -------------------------------------------------------------------------------- /spacy-example/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/home/osboxes/miniconda3/envs/spacy-dev/bin/python" 3 | } -------------------------------------------------------------------------------- /spacy-example/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /keras-example/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /scikit-example/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /spacy-example/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/bluebird/changelog.md: -------------------------------------------------------------------------------- 1 | [http://bluebirdjs.com/docs/changelog.html](http://bluebirdjs.com/docs/changelog.html) 2 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /keras-example/node_modules/bluebird/changelog.md: -------------------------------------------------------------------------------- 1 | [http://bluebirdjs.com/docs/changelog.html](http://bluebirdjs.com/docs/changelog.html) 2 | -------------------------------------------------------------------------------- /keras-example/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /scikit-example/node_modules/bluebird/changelog.md: -------------------------------------------------------------------------------- 1 | [http://bluebirdjs.com/docs/changelog.html](http://bluebirdjs.com/docs/changelog.html) 2 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/bluebird/changelog.md: -------------------------------------------------------------------------------- 1 | [http://bluebirdjs.com/docs/changelog.html](http://bluebirdjs.com/docs/changelog.html) 2 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /spacy-example/node_modules/bluebird/changelog.md: -------------------------------------------------------------------------------- 1 | [http://bluebirdjs.com/docs/changelog.html](http://bluebirdjs.com/docs/changelog.html) 2 | -------------------------------------------------------------------------------- /spacy-example/node_modules/jsonify/index.js: -------------------------------------------------------------------------------- 1 | exports.parse = require('./lib/parse'); 2 | exports.stringify = require('./lib/stringify'); 3 | -------------------------------------------------------------------------------- /keras-example/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/elephant.jpg -------------------------------------------------------------------------------- /keras-assignment/node_modules/lie/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | if (typeof global.Promise !== 'function') { 3 | global.Promise = require('./lib'); 4 | } 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/shell-quote/example/op.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep || boop > /byte'); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/lie/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | if (typeof global.Promise !== 'function') { 3 | global.Promise = require('./lib'); 4 | } 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/shell-quote/example/op.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep || boop > /byte'); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/lie/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | if (typeof global.Promise !== 'function') { 3 | global.Promise = require('./lib'); 4 | } 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/shell-quote/example/op.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep || boop > /byte'); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/lie/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | if (typeof global.Promise !== 'function') { 3 | global.Promise = require('./lib'); 4 | } 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/shell-quote/example/op.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep || boop > /byte'); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /spacy-assignment/requirements.txt: -------------------------------------------------------------------------------- 1 | spacy==2.1.3 2 | https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.1.0/en_core_web_sm-2.1.0.tar.gz -------------------------------------------------------------------------------- /spacy-example/node_modules/lie/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | if (typeof global.Promise !== 'function') { 3 | global.Promise = require('./lib'); 4 | } 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/shell-quote/example/op.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep || boop > /byte'); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /spacy-example/requirements.txt: -------------------------------------------------------------------------------- 1 | spacy==2.1.3 2 | https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.1.0/en_core_web_sm-2.1.0.tar.gz -------------------------------------------------------------------------------- /keras-example/node_modules/shell-quote/example/quote.js: -------------------------------------------------------------------------------- 1 | var quote = require('../').quote; 2 | var s = quote([ 'a', 'b c d', '$f', '"g"' ]); 3 | console.log(s); 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/shell-quote/example/quote.js: -------------------------------------------------------------------------------- 1 | var quote = require('../').quote; 2 | var s = quote([ 'a', 'b c d', '$f', '"g"' ]); 3 | console.log(s); 4 | -------------------------------------------------------------------------------- /web-gui-code/img/loading_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/web-gui-code/img/loading_32.gif -------------------------------------------------------------------------------- /keras-assignment/node_modules/shell-quote/example/quote.js: -------------------------------------------------------------------------------- 1 | var quote = require('../').quote; 2 | var s = quote([ 'a', 'b c d', '$f', '"g"' ]); 3 | console.log(s); 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/demand_count.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .demand(2) 4 | .argv; 5 | console.dir(argv) 6 | -------------------------------------------------------------------------------- /scikit-example/node_modules/shell-quote/example/quote.js: -------------------------------------------------------------------------------- 1 | var quote = require('../').quote; 2 | var s = quote([ 'a', 'b c d', '$f', '"g"' ]); 3 | console.log(s); 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/shell-quote/example/quote.js: -------------------------------------------------------------------------------- 1 | var quote = require('../').quote; 2 | var s = quote([ 'a', 'b c d', '$f', '"g"' ]); 3 | console.log(s); 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/demand_count.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .demand(2) 4 | .argv; 5 | console.dir(argv) 6 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/shell-quote/example/parse.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('a "b c" \\$def \'it\\\'s great\''); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/demand_count.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .demand(2) 4 | .argv; 5 | console.dir(argv) 6 | -------------------------------------------------------------------------------- /keras-example/node_modules/shell-quote/example/parse.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('a "b c" \\$def \'it\\\'s great\''); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/shell-quote/example/parse.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('a "b c" \\$def \'it\\\'s great\''); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/demand_count.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .demand(2) 4 | .argv; 5 | console.dir(argv) 6 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/shell-quote/example/parse.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('a "b c" \\$def \'it\\\'s great\''); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/demand_count.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .demand(2) 4 | .argv; 5 | console.dir(argv) 6 | -------------------------------------------------------------------------------- /spacy-example/node_modules/shell-quote/example/parse.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('a "b c" \\$def \'it\\\'s great\''); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/shell-quote/example/env.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep --boop="$PWD"', { PWD: '/home/robot' }); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/shell-quote/example/env.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep --boop="$PWD"', { PWD: '/home/robot' }); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/md5-file/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict' 4 | 5 | const md5File = require('./') 6 | 7 | console.log(md5File.sync(process.argv[2])) 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/shell-quote/example/env.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep --boop="$PWD"', { PWD: '/home/robot' }); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /keras-example/node_modules/md5-file/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict' 4 | 5 | const md5File = require('./') 6 | 7 | console.log(md5File.sync(process.argv[2])) 8 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/md5-file/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict' 4 | 5 | const md5File = require('./') 6 | 7 | console.log(md5File.sync(process.argv[2])) 8 | -------------------------------------------------------------------------------- /scikit-example/node_modules/shell-quote/example/env.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep --boop="$PWD"', { PWD: '/home/robot' }); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/md5-file/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict' 4 | 5 | const md5File = require('./') 6 | 7 | console.log(md5File.sync(process.argv[2])) 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/shell-quote/example/env.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('beep --boop="$PWD"', { PWD: '/home/robot' }); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /spacy-example/node_modules/md5-file/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict' 4 | 5 | const md5File = require('./') 6 | 7 | console.log(md5File.sync(process.argv[2])) 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libz-a147dcb0.so.1.2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libz-a147dcb0.so.1.2.3 -------------------------------------------------------------------------------- /keras-example/node_modules/jszip/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | -------------------------------------------------------------------------------- /scikit-example/event.json: -------------------------------------------------------------------------------- 1 | {"queryStringParameters": {"medInc": 200000, "houseAge": 10, "aveRooms": 4, "aveBedrms": 1, "population": 800, "aveOccup": 3, "latitude": 37.54, "longitude": -121.72}} -------------------------------------------------------------------------------- /scikit-example/model_1553724836.6208675.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/scikit-example/model_1553724836.6208675.joblib -------------------------------------------------------------------------------- /spacy-example/node_modules/jszip/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libz-a147dcb0.so.1.2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libz-a147dcb0.so.1.2.3 -------------------------------------------------------------------------------- /keras-assignment/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jszip/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libjpeg-3fe7dfc0.so.9.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libjpeg-3fe7dfc0.so.9.3.0 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/liblcms2-a6801db4.so.2.0.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/liblcms2-a6801db4.so.2.0.8 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/liblzma-6cd627ed.so.5.2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/liblzma-6cd627ed.so.5.2.4 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libtiff-8267adfe.so.5.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libtiff-8267adfe.so.5.4.0 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libwebp-baad113c.so.7.0.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libwebp-baad113c.so.7.0.4 -------------------------------------------------------------------------------- /keras-example/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /keras-example/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /scikit-example/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jszip/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | -------------------------------------------------------------------------------- /scikit-example/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jszip/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | -------------------------------------------------------------------------------- /spacy-example/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /spacy-example/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libjpeg-3fe7dfc0.so.9.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libjpeg-3fe7dfc0.so.9.3.0 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/liblcms2-a6801db4.so.2.0.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/liblcms2-a6801db4.so.2.0.8 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/liblzma-6cd627ed.so.5.2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/liblzma-6cd627ed.so.5.2.4 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libtiff-8267adfe.so.5.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libtiff-8267adfe.so.5.4.0 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libwebp-baad113c.so.7.0.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libwebp-baad113c.so.7.0.4 -------------------------------------------------------------------------------- /keras-assignment/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libopenjp2-e366d6b0.so.2.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libopenjp2-e366d6b0.so.2.1.0 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libpng16-9e58a7b0.so.16.36.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libpng16-9e58a7b0.so.16.36.0 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libwebpmux-75695800.so.3.0.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libwebpmux-75695800.so.3.0.4 -------------------------------------------------------------------------------- /spacy-assignment/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libopenjp2-e366d6b0.so.2.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libopenjp2-e366d6b0.so.2.1.0 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libpng16-9e58a7b0.so.16.36.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libpng16-9e58a7b0.so.16.36.0 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libwebpmux-75695800.so.3.0.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libwebpmux-75695800.so.3.0.4 -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-reduce/example/sum.js: -------------------------------------------------------------------------------- 1 | var reduce = require('../'); 2 | var xs = [ 1, 2, 3, 4 ]; 3 | var sum = reduce(xs, function (acc, x) { return acc + x }, 0); 4 | console.log(sum); 5 | -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libfreetype-3e240bcb.so.6.16.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libfreetype-3e240bcb.so.6.16.1 -------------------------------------------------------------------------------- /keras-example/PIL/.libs/libwebpdemux-60cc0b6d.so.2.0.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-example/PIL/.libs/libwebpdemux-60cc0b6d.so.2.0.6 -------------------------------------------------------------------------------- /keras-example/node_modules/array-reduce/example/sum.js: -------------------------------------------------------------------------------- 1 | var reduce = require('../'); 2 | var xs = [ 1, 2, 3, 4 ]; 3 | var sum = reduce(xs, function (acc, x) { return acc + x }, 0); 4 | console.log(sum); 5 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-reduce/example/sum.js: -------------------------------------------------------------------------------- 1 | var reduce = require('../'); 2 | var xs = [ 1, 2, 3, 4 ]; 3 | var sum = reduce(xs, function (acc, x) { return acc + x }, 0); 4 | console.log(sum); 5 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-reduce/example/sum.js: -------------------------------------------------------------------------------- 1 | var reduce = require('../'); 2 | var xs = [ 1, 2, 3, 4 ]; 3 | var sum = reduce(xs, function (acc, x) { return acc + x }, 0); 4 | console.log(sum); 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-reduce/example/sum.js: -------------------------------------------------------------------------------- 1 | var reduce = require('../'); 2 | var xs = [ 1, 2, 3, 4 ]; 3 | var sum = reduce(xs, function (acc, x) { return acc + x }, 0); 4 | console.log(sum); 5 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libfreetype-3e240bcb.so.6.16.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libfreetype-3e240bcb.so.6.16.1 -------------------------------------------------------------------------------- /keras-assignment/PIL/.libs/libwebpdemux-60cc0b6d.so.2.0.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Machine-Learning-Projects-CT/serverless-machine-learning/master/keras-assignment/PIL/.libs/libwebpdemux-60cc0b6d.so.2.0.6 -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-map/example/map.js: -------------------------------------------------------------------------------- 1 | var map = require('../'); 2 | var letters = map([97,98,99], function (c) { 3 | return String.fromCharCode(c); 4 | }); 5 | console.log(letters.join('')); 6 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-map/example/map.js: -------------------------------------------------------------------------------- 1 | var map = require('../'); 2 | var letters = map([97,98,99], function (c) { 3 | return String.fromCharCode(c); 4 | }); 5 | console.log(letters.join('')); 6 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-map/example/map.js: -------------------------------------------------------------------------------- 1 | var map = require('../'); 2 | var letters = map([97,98,99], function (c) { 3 | return String.fromCharCode(c); 4 | }); 5 | console.log(letters.join('')); 6 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-map/example/map.js: -------------------------------------------------------------------------------- 1 | var map = require('../'); 2 | var letters = map([97,98,99], function (c) { 3 | return String.fromCharCode(c); 4 | }); 5 | console.log(letters.join('')); 6 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/order.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/x/y.txt', 5 | 'files/**' 6 | ]); 7 | 8 | console.log(files); 9 | 10 | 11 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/order.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/x/y.txt', 5 | 'files/**' 6 | ]); 7 | 8 | console.log(files); 9 | 10 | 11 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/order.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/x/y.txt', 5 | 'files/**' 6 | ]); 7 | 8 | console.log(files); 9 | 10 | 11 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-map/example/map.js: -------------------------------------------------------------------------------- 1 | var map = require('../'); 2 | var letters = map([97,98,99], function (c) { 3 | return String.fromCharCode(c); 4 | }); 5 | console.log(letters.join('')); 6 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/order.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/x/y.txt', 5 | 'files/**' 6 | ]); 7 | 8 | console.log(files); 9 | 10 | 11 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/order.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/x/y.txt', 5 | 'files/**' 6 | ]); 7 | 8 | console.log(files); 9 | 10 | 11 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/sync.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ]); 8 | 9 | console.log(files); 10 | 11 | 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/sync.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ]); 8 | 9 | console.log(files); 10 | 11 | 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/boolean_double.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean(['x','y','z']) 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y, argv.z ]); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/divide.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .demand(['x','y']) 6 | .argv; 7 | 8 | console.log(argv.x / argv.y); 9 | -------------------------------------------------------------------------------- /keras-example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "resnet50", 3 | "description": "", 4 | "version": "0.1.0", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "serverless-python-requirements": "^4.2.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/sync.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ]); 8 | 9 | console.log(files); 10 | 11 | 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/boolean_double.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean(['x','y','z']) 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y, argv.z ]); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/sync.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ]); 8 | 9 | console.log(files); 10 | 11 | 12 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/sync.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var files = glob.sync([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ]); 8 | 9 | console.log(files); 10 | 11 | 12 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/boolean_double.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean(['x','y','z']) 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y, argv.z ]); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/divide.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .demand(['x','y']) 6 | .argv; 7 | 8 | console.log(argv.x / argv.y); 9 | -------------------------------------------------------------------------------- /spacy-example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ner-api", 3 | "description": "", 4 | "version": "0.1.0", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "serverless-python-requirements": "^4.2.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/boolean_double.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean(['x','y','z']) 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y, argv.z ]); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/divide.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .demand(['x','y']) 6 | .argv; 7 | 8 | console.log(argv.x / argv.y); 9 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/divide.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .demand(['x','y']) 6 | .argv; 7 | 8 | console.log(argv.x / argv.y); 9 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/boolean_double.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .boolean(['x','y','z']) 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y, argv.z ]); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/divide.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .demand(['x','y']) 6 | .argv; 7 | 8 | console.log(argv.x / argv.y); 9 | -------------------------------------------------------------------------------- /spacy-assignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "parse-api", 3 | "description": "", 4 | "version": "0.1.0", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "serverless-python-requirements": "^4.2.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /keras-assignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inception-v3", 3 | "description": "", 4 | "version": "0.1.0", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "serverless-python-requirements": "^4.2.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /keras-example/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /scikit-example/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /scikit-example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "california-housing", 3 | "description": "", 4 | "version": "0.1.0", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "serverless-python-requirements": "^4.2.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /spacy-example/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /keras-example/node_modules/appdirectory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | 7 | before_script: 'npm install -g istanbul && npm install -g mocha' 8 | script: 'make test-cov' 9 | after_success: 'make coveralls' -------------------------------------------------------------------------------- /spacy-example/node_modules/appdirectory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | 7 | before_script: 'npm install -g istanbul && npm install -g mocha' 8 | script: 'make test-cov' 9 | after_success: 'make coveralls' -------------------------------------------------------------------------------- /keras-assignment/node_modules/appdirectory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | 7 | before_script: 'npm install -g istanbul && npm install -g mocha' 8 | script: 'make test-cov' 9 | after_success: 'make coveralls' -------------------------------------------------------------------------------- /keras-example/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | if (typeof util.inherits !== 'function') throw ''; 4 | module.exports = util.inherits; 5 | } catch (e) { 6 | module.exports = require('./inherits_browser.js'); 7 | } 8 | -------------------------------------------------------------------------------- /scikit-example/node_modules/appdirectory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | 7 | before_script: 'npm install -g istanbul && npm install -g mocha' 8 | script: 'make test-cov' 9 | after_success: 'make coveralls' -------------------------------------------------------------------------------- /scikit-example/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | if (typeof util.inherits !== 'function') throw ''; 4 | module.exports = util.inherits; 5 | } catch (e) { 6 | module.exports = require('./inherits_browser.js'); 7 | } 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/appdirectory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | 7 | before_script: 'npm install -g istanbul && npm install -g mocha' 8 | script: 'make test-cov' 9 | after_success: 'make coveralls' -------------------------------------------------------------------------------- /spacy-example/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | if (typeof util.inherits !== 'function') throw ''; 4 | module.exports = util.inherits; 5 | } catch (e) { 6 | module.exports = require('./inherits_browser.js'); 7 | } 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/async.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], { 8 | mark: true 9 | }, function(err, files) { 10 | console.log(err || files); 11 | }); 12 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | if (typeof util.inherits !== 'function') throw ''; 4 | module.exports = util.inherits; 5 | } catch (e) { 6 | module.exports = require('./inherits_browser.js'); 7 | } 8 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/async.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], { 8 | mark: true 9 | }, function(err, files) { 10 | console.log(err || files); 11 | }); 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/async.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], { 8 | mark: true 9 | }, function(err, files) { 10 | console.log(err || files); 11 | }); 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/async.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], { 8 | mark: true 9 | }, function(err, files) { 10 | console.log(err || files); 11 | }); 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | if (typeof util.inherits !== 'function') throw ''; 4 | module.exports = util.inherits; 5 | } catch (e) { 6 | module.exports = require('./inherits_browser.js'); 7 | } 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/async.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], { 8 | mark: true 9 | }, function(err, files) { 10 | console.log(err || files); 11 | }); 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/implies.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .implies('x', 'y') 6 | .argv; 7 | 8 | if (argv.x) { 9 | console.log(argv.x / argv.y); 10 | } 11 | -------------------------------------------------------------------------------- /scikit-example/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /spacy-example/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/implies.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .implies('x', 'y') 6 | .argv; 7 | 8 | if (argv.x) { 9 | console.log(argv.x / argv.y); 10 | } 11 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/implies.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .implies('x', 'y') 6 | .argv; 7 | 8 | if (argv.x) { 9 | console.log(argv.x / argv.y); 10 | } 11 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/xup.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | 4 | if (argv.rif - 5 * argv.xup > 7.138) { 5 | console.log('Buy more riffiwobbles'); 6 | } 7 | else { 8 | console.log('Sell the xupptumblers'); 9 | } 10 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/implies.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .implies('x', 'y') 6 | .argv; 7 | 8 | if (argv.x) { 9 | console.log(argv.x / argv.y); 10 | } 11 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/xup.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | 4 | if (argv.rif - 5 * argv.xup > 7.138) { 5 | console.log('Buy more riffiwobbles'); 6 | } 7 | else { 8 | console.log('Sell the xupptumblers'); 9 | } 10 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/implies.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('yargs') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .implies('x', 'y') 6 | .argv; 7 | 8 | if (argv.x) { 9 | console.log(argv.x / argv.y); 10 | } 11 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/xup.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | 4 | if (argv.rif - 5 * argv.xup > 7.138) { 5 | console.log('Buy more riffiwobbles'); 6 | } 7 | else { 8 | console.log('Sell the xupptumblers'); 9 | } 10 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/xup.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | 4 | if (argv.rif - 5 * argv.xup > 7.138) { 5 | console.log('Buy more riffiwobbles'); 6 | } 7 | else { 8 | console.log('Sell the xupptumblers'); 9 | } 10 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/xup.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs').argv; 3 | 4 | if (argv.rif - 5 * argv.xup > 7.138) { 5 | console.log('Buy more riffiwobbles'); 6 | } 7 | else { 8 | console.log('Sell the xupptumblers'); 9 | } 10 | -------------------------------------------------------------------------------- /keras-example/node_modules/set-immediate-shim/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = typeof setImmediate === 'function' ? setImmediate : 3 | function setImmediate() { 4 | var args = [].slice.apply(arguments); 5 | args.splice(1, 0, 0); 6 | setTimeout.apply(null, args); 7 | }; 8 | -------------------------------------------------------------------------------- /scikit-example/node_modules/set-immediate-shim/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = typeof setImmediate === 'function' ? setImmediate : 3 | function setImmediate() { 4 | var args = [].slice.apply(arguments); 5 | args.splice(1, 0, 0); 6 | setTimeout.apply(null, args); 7 | }; 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/set-immediate-shim/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = typeof setImmediate === 'function' ? setImmediate : 3 | function setImmediate() { 4 | var args = [].slice.apply(arguments); 5 | args.splice(1, 0, 0); 6 | setTimeout.apply(null, args); 7 | }; 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/set-immediate-shim/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = typeof setImmediate === 'function' ? setImmediate : 3 | function setImmediate() { 4 | var args = [].slice.apply(arguments); 5 | args.splice(1, 0, 0); 6 | setTimeout.apply(null, args); 7 | }; 8 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/set-immediate-shim/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = typeof setImmediate === 'function' ? setImmediate : 3 | function setImmediate() { 4 | var args = [].slice.apply(arguments); 5 | args.splice(1, 0, 0); 6 | setTimeout.apply(null, args); 7 | }; 8 | -------------------------------------------------------------------------------- /hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Serverless directories 20 | .serverless -------------------------------------------------------------------------------- /keras-example/.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Serverless directories 20 | .serverless -------------------------------------------------------------------------------- /scikit-example/.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Serverless directories 20 | .serverless -------------------------------------------------------------------------------- /spacy-example/.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Serverless directories 20 | .serverless -------------------------------------------------------------------------------- /keras-assignment/.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Serverless directories 20 | .serverless -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | var Stream = require("stream") 2 | var Writable = require("./lib/_stream_writable.js") 3 | 4 | if (process.env.READABLE_STREAM === 'disable') { 5 | module.exports = Stream && Stream.Writable || Writable 6 | } else { 7 | module.exports = Writable 8 | } 9 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | var Stream = require("stream") 2 | var Writable = require("./lib/_stream_writable.js") 3 | 4 | if (process.env.READABLE_STREAM === 'disable') { 5 | module.exports = Stream && Stream.Writable || Writable 6 | } else { 7 | module.exports = Writable 8 | } 9 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | var Stream = require("stream") 2 | var Writable = require("./lib/_stream_writable.js") 3 | 4 | if (process.env.READABLE_STREAM === 'disable') { 5 | module.exports = Stream && Stream.Writable || Writable 6 | } else { 7 | module.exports = Writable 8 | } 9 | -------------------------------------------------------------------------------- /spacy-assignment/.gitignore: -------------------------------------------------------------------------------- 1 | # Distribution / packaging 2 | .Python 3 | env/ 4 | build/ 5 | develop-eggs/ 6 | dist/ 7 | downloads/ 8 | eggs/ 9 | .eggs/ 10 | lib/ 11 | lib64/ 12 | parts/ 13 | sdist/ 14 | var/ 15 | *.egg-info/ 16 | .installed.cfg 17 | *.egg 18 | 19 | # Serverless directories 20 | .serverless -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | var Stream = require("stream") 2 | var Writable = require("./lib/_stream_writable.js") 3 | 4 | if (process.env.READABLE_STREAM === 'disable') { 5 | module.exports = Stream && Stream.Writable || Writable 6 | } else { 7 | module.exports = Writable 8 | } 9 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | var Stream = require("stream") 2 | var Writable = require("./lib/_stream_writable.js") 3 | 4 | if (process.env.READABLE_STREAM === 'disable') { 5 | module.exports = Stream && Stream.Writable || Writable 6 | } else { 7 | module.exports = Writable 8 | } 9 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/string.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .string('x', 'y') 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y ]); 7 | 8 | /* Turns off numeric coercion: 9 | ./node string.js -x 000123 -y 9876 10 | [ '000123', '9876' ] 11 | */ 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/string.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .string('x', 'y') 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y ]); 7 | 8 | /* Turns off numeric coercion: 9 | ./node string.js -x 000123 -y 9876 10 | [ '000123', '9876' ] 11 | */ 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/string.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .string('x', 'y') 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y ]); 7 | 8 | /* Turns off numeric coercion: 9 | ./node string.js -x 000123 -y 9876 10 | [ '000123', '9876' ] 11 | */ 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/string.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .string('x', 'y') 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y ]); 7 | 8 | /* Turns off numeric coercion: 9 | ./node string.js -x 000123 -y 9876 10 | [ '000123', '9876' ] 11 | */ 12 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/string.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('yargs') 3 | .string('x', 'y') 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y ]); 7 | 8 | /* Turns off numeric coercion: 9 | ./node string.js -x 000123 -y 9876 10 | [ '000123', '9876' ] 11 | */ 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/bool.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var util = require('util'); 3 | var argv = require('yargs').argv; 4 | 5 | if (argv.s) { 6 | util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); 7 | } 8 | console.log( 9 | (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') 10 | ); 11 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/bool.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var util = require('util'); 3 | var argv = require('yargs').argv; 4 | 5 | if (argv.s) { 6 | util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); 7 | } 8 | console.log( 9 | (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') 10 | ); 11 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/bool.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var util = require('util'); 3 | var argv = require('yargs').argv; 4 | 5 | if (argv.s) { 6 | util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); 7 | } 8 | console.log( 9 | (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') 10 | ); 11 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/bool.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var util = require('util'); 3 | var argv = require('yargs').argv; 4 | 5 | if (argv.s) { 6 | util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); 7 | } 8 | console.log( 9 | (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') 10 | ); 11 | -------------------------------------------------------------------------------- /keras-example/node_modules/jszip/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | duplication: 4 | enabled: true 5 | config: 6 | languages: 7 | - javascript 8 | eslint: 9 | enabled: true 10 | fixme: 11 | enabled: true 12 | ratings: 13 | paths: 14 | - "lib/*.js" 15 | exclude_paths: 16 | - "dist/*" 17 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/bool.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var util = require('util'); 3 | var argv = require('yargs').argv; 4 | 5 | if (argv.s) { 6 | util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); 7 | } 8 | console.log( 9 | (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') 10 | ); 11 | -------------------------------------------------------------------------------- /spacy-example/node_modules/jszip/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | duplication: 4 | enabled: true 5 | config: 6 | languages: 7 | - javascript 8 | eslint: 9 | enabled: true 10 | fixme: 11 | enabled: true 12 | ratings: 13 | paths: 14 | - "lib/*.js" 15 | exclude_paths: 16 | - "dist/*" 17 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jszip/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | duplication: 4 | enabled: true 5 | config: 6 | languages: 7 | - javascript 8 | eslint: 9 | enabled: true 10 | fixme: 11 | enabled: true 12 | ratings: 13 | paths: 14 | - "lib/*.js" 15 | exclude_paths: 16 | - "dist/*" 17 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jszip/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | duplication: 4 | enabled: true 5 | config: 6 | languages: 7 | - javascript 8 | eslint: 9 | enabled: true 10 | fixme: 11 | enabled: true 12 | ratings: 13 | paths: 14 | - "lib/*.js" 15 | exclude_paths: 16 | - "dist/*" 17 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jszip/.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | duplication: 4 | enabled: true 5 | config: 6 | languages: 7 | - javascript 8 | eslint: 9 | enabled: true 10 | fixme: 11 | enabled: true 12 | ratings: 13 | paths: 14 | - "lib/*.js" 15 | exclude_paths: 16 | - "dist/*" 17 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /keras-example/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /scikit-example/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /spacy-example/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /keras-example/node_modules/appdirectory/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/mocha/bin/mocha --reporter spec 3 | 4 | test-cov: 5 | istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot 6 | 7 | coveralls: 8 | cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/perf.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var t = Date.now(); 4 | glob([ 5 | '**', 6 | '!**/*.js' 7 | ], { 8 | cwd: '/Users/jpillora/Code/Node/', /* folder with many files */ 9 | }, function(err, files) { 10 | console.log('found %s files in %sms', files.length, Date.now()-t); 11 | }); 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/appdirectory/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/mocha/bin/mocha --reporter spec 3 | 4 | test-cov: 5 | istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot 6 | 7 | coveralls: 8 | cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /spacy-example/node_modules/appdirectory/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/mocha/bin/mocha --reporter spec 3 | 4 | test-cov: 5 | istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot 6 | 7 | coveralls: 8 | cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/perf.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var t = Date.now(); 4 | glob([ 5 | '**', 6 | '!**/*.js' 7 | ], { 8 | cwd: '/Users/jpillora/Code/Node/', /* folder with many files */ 9 | }, function(err, files) { 10 | console.log('found %s files in %sms', files.length, Date.now()-t); 11 | }); 12 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/appdirectory/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/mocha/bin/mocha --reporter spec 3 | 4 | test-cov: 5 | istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot 6 | 7 | coveralls: 8 | cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/perf.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var t = Date.now(); 4 | glob([ 5 | '**', 6 | '!**/*.js' 7 | ], { 8 | cwd: '/Users/jpillora/Code/Node/', /* folder with many files */ 9 | }, function(err, files) { 10 | console.log('found %s files in %sms', files.length, Date.now()-t); 11 | }); 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-filter/test/holes.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('skip over holes', function(t) { 5 | var arr = new Array(5); 6 | delete arr.filter; 7 | var res = filter(arr, function(el) { 8 | return false; 9 | }); 10 | t.deepEqual(res, []); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/perf.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var t = Date.now(); 4 | glob([ 5 | '**', 6 | '!**/*.js' 7 | ], { 8 | cwd: '/Users/jpillora/Code/Node/', /* folder with many files */ 9 | }, function(err, files) { 10 | console.log('found %s files in %sms', files.length, Date.now()-t); 11 | }); 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/appdirectory/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/mocha/bin/mocha --reporter spec 3 | 4 | test-cov: 5 | istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot 6 | 7 | coveralls: 8 | cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/perf.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var t = Date.now(); 4 | glob([ 5 | '**', 6 | '!**/*.js' 7 | ], { 8 | cwd: '/Users/jpillora/Code/Node/', /* folder with many files */ 9 | }, function(err, files) { 10 | console.log('found %s files in %sms', files.length, Date.now()-t); 11 | }); 12 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-filter/test/holes.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('skip over holes', function(t) { 5 | var arr = new Array(5); 6 | delete arr.filter; 7 | var res = filter(arr, function(el) { 8 | return false; 9 | }); 10 | t.deepEqual(res, []); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-filter/test/holes.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('skip over holes', function(t) { 5 | var arr = new Array(5); 6 | delete arr.filter; 7 | var res = filter(arr, function(el) { 8 | return false; 9 | }); 10 | t.deepEqual(res, []); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-filter/test/holes.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('skip over holes', function(t) { 5 | var arr = new Array(5); 6 | delete arr.filter; 7 | var res = filter(arr, function(el) { 8 | return false; 9 | }); 10 | t.deepEqual(res, []); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-filter/test/holes.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('skip over holes', function(t) { 5 | var arr = new Array(5); 6 | delete arr.filter; 7 | var res = filter(arr, function(el) { 8 | return false; 9 | }); 10 | t.deepEqual(res, []); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-filter/test/filter.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('filter', function(t) { 5 | var arr = [1, 2, 3, 4, 5]; 6 | delete arr.filter; 7 | var even = filter(arr, function(el) { 8 | return el % 2 == 0; 9 | }); 10 | t.deepEqual(even, [2, 4]); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-filter/test/filter.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('filter', function(t) { 5 | var arr = [1, 2, 3, 4, 5]; 6 | delete arr.filter; 7 | var even = filter(arr, function(el) { 8 | return el % 2 == 0; 9 | }); 10 | t.deepEqual(even, [2, 4]); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-filter/test/filter.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('filter', function(t) { 5 | var arr = [1, 2, 3, 4, 5]; 6 | delete arr.filter; 7 | var even = filter(arr, function(el) { 8 | return el % 2 == 0; 9 | }); 10 | t.deepEqual(even, [2, 4]); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-filter/test/filter.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('filter', function(t) { 5 | var arr = [1, 2, 3, 4, 5]; 6 | delete arr.filter; 7 | var even = filter(arr, function(el) { 8 | return el % 2 == 0; 9 | }); 10 | t.deepEqual(even, [2, 4]); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-filter/test/filter.js: -------------------------------------------------------------------------------- 1 | var filter = require('..'); 2 | var test = require('tape'); 3 | 4 | test('filter', function(t) { 5 | var arr = [1, 2, 3, 4, 5]; 6 | delete arr.filter; 7 | var even = filter(arr, function(el) { 8 | return el % 2 == 0; 9 | }); 10 | t.deepEqual(even, [2, 4]); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/app/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Generic entry point script. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.platform.app import run 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/app/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Generic entry point script. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.platform.app import run 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, f) { 2 | if (xs.map) return xs.map(f); 3 | var res = []; 4 | for (var i = 0; i < xs.length; i++) { 5 | var x = xs[i]; 6 | if (hasOwn.call(xs, i)) res.push(f(x, i, xs)); 7 | } 8 | return res; 9 | }; 10 | 11 | var hasOwn = Object.prototype.hasOwnProperty; 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/array-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, f) { 2 | if (xs.map) return xs.map(f); 3 | var res = []; 4 | for (var i = 0; i < xs.length; i++) { 5 | var x = xs[i]; 6 | if (hasOwn.call(xs, i)) res.push(f(x, i, xs)); 7 | } 8 | return res; 9 | }; 10 | 11 | var hasOwn = Object.prototype.hasOwnProperty; 12 | -------------------------------------------------------------------------------- /spacy-example/node_modules/array-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, f) { 2 | if (xs.map) return xs.map(f); 3 | var res = []; 4 | for (var i = 0; i < xs.length; i++) { 5 | var x = xs[i]; 6 | if (hasOwn.call(xs, i)) res.push(f(x, i, xs)); 7 | } 8 | return res; 9 | }; 10 | 11 | var hasOwn = Object.prototype.hasOwnProperty; 12 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/array-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, f) { 2 | if (xs.map) return xs.map(f); 3 | var res = []; 4 | for (var i = 0; i < xs.length; i++) { 5 | var x = xs[i]; 6 | if (hasOwn.call(xs, i)) res.push(f(x, i, xs)); 7 | } 8 | return res; 9 | }; 10 | 11 | var hasOwn = Object.prototype.hasOwnProperty; 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/array-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, f) { 2 | if (xs.map) return xs.map(f); 3 | var res = []; 4 | for (var i = 0; i < xs.length; i++) { 5 | var x = xs[i]; 6 | if (hasOwn.call(xs, i)) res.push(f(x, i, xs)); 7 | } 8 | return res; 9 | }; 10 | 11 | var hasOwn = Object.prototype.hasOwnProperty; 12 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/estimator/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Keras estimator API. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.keras.estimator import model_to_estimator 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/user_ops/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Public API for tf.user_ops namespace. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.user_ops.user_ops import my_fact 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var should = require('chai').should(), 2 | yargs = require('../'); 3 | 4 | describe('whitespace', function () { 5 | 6 | it('should be whitespace', function () { 7 | var argv = yargs.parse([ '-x', '\t' ]); 8 | should.exist(argv); 9 | argv.should.have.property('x', '\t'); 10 | }); 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/estimator/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Keras estimator API. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.keras.estimator import model_to_estimator 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/user_ops/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Public API for tf.user_ops namespace. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.user_ops.user_ops import my_fact 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var should = require('chai').should(), 2 | yargs = require('../'); 3 | 4 | describe('whitespace', function () { 5 | 6 | it('should be whitespace', function () { 7 | var argv = yargs.parse([ '-x', '\t' ]); 8 | should.exist(argv); 9 | argv.should.have.property('x', '\t'); 10 | }); 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var should = require('chai').should(), 2 | yargs = require('../'); 3 | 4 | describe('whitespace', function () { 5 | 6 | it('should be whitespace', function () { 7 | var argv = yargs.parse([ '-x', '\t' ]); 8 | should.exist(argv); 9 | argv.should.have.property('x', '\t'); 10 | }); 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var should = require('chai').should(), 2 | yargs = require('../'); 3 | 4 | describe('whitespace', function () { 5 | 6 | it('should be whitespace', function () { 7 | var argv = yargs.parse([ '-x', '\t' ]); 8 | should.exist(argv); 9 | argv.should.have.property('x', '\t'); 10 | }); 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var should = require('chai').should(), 2 | yargs = require('../'); 3 | 4 | describe('whitespace', function () { 5 | 6 | it('should be whitespace', function () { 7 | var argv = yargs.parse([ '-x', '\t' ]); 8 | should.exist(argv); 9 | argv.should.have.property('x', '\t'); 10 | }); 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/bluebird/js/release/bluebird.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var old; 3 | if (typeof Promise !== "undefined") old = Promise; 4 | function noConflict() { 5 | try { if (Promise === bluebird) Promise = old; } 6 | catch (e) {} 7 | return bluebird; 8 | } 9 | var bluebird = require("./promise")(); 10 | bluebird.noConflict = noConflict; 11 | module.exports = bluebird; 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/bluebird/js/release/bluebird.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var old; 3 | if (typeof Promise !== "undefined") old = Promise; 4 | function noConflict() { 5 | try { if (Promise === bluebird) Promise = old; } 6 | catch (e) {} 7 | return bluebird; 8 | } 9 | var bluebird = require("./promise")(); 10 | bluebird.noConflict = noConflict; 11 | module.exports = bluebird; 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/bluebird/js/release/bluebird.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var old; 3 | if (typeof Promise !== "undefined") old = Promise; 4 | function noConflict() { 5 | try { if (Promise === bluebird) Promise = old; } 6 | catch (e) {} 7 | return bluebird; 8 | } 9 | var bluebird = require("./promise")(); 10 | bluebird.noConflict = noConflict; 11 | module.exports = bluebird; 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/bluebird/js/release/bluebird.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var old; 3 | if (typeof Promise !== "undefined") old = Promise; 4 | function noConflict() { 5 | try { if (Promise === bluebird) Promise = old; } 6 | catch (e) {} 7 | return bluebird; 8 | } 9 | var bluebird = require("./promise")(); 10 | bluebird.noConflict = noConflict; 11 | module.exports = bluebird; 12 | -------------------------------------------------------------------------------- /spacy-example/node_modules/bluebird/js/release/bluebird.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var old; 3 | if (typeof Promise !== "undefined") old = Promise; 4 | function noConflict() { 5 | try { if (Promise === bluebird) Promise = old; } 6 | catch (e) {} 7 | return bluebird; 8 | } 9 | var bluebird = require("./promise")(); 10 | bluebird.noConflict = noConflict; 11 | module.exports = bluebird; 12 | -------------------------------------------------------------------------------- /keras-assignment/requirements.txt: -------------------------------------------------------------------------------- 1 | absl-py==0.7.1 2 | astor==0.8.0 3 | certifi==2019.3.9 4 | gast==0.2.2 5 | grpcio==1.21.1 6 | h5py==2.9.0 7 | Keras==2.2.4 8 | Keras-Applications==1.0.7 9 | Keras-Preprocessing==1.0.9 10 | Markdown==3.1.1 11 | numpy==1.16.3 12 | protobuf==3.7.1 13 | PyYAML==5.1 14 | scipy==1.3.0 15 | six==1.12.0 16 | tensorboard==1.12.2 17 | termcolor==1.1.0 18 | Werkzeug==0.15.4 19 | -------------------------------------------------------------------------------- /keras-example/requirements.txt: -------------------------------------------------------------------------------- 1 | absl-py==0.7.1 2 | astor==0.8.0 3 | certifi==2019.3.9 4 | gast==0.2.2 5 | grpcio==1.21.1 6 | h5py==2.9.0 7 | Keras==2.2.4 8 | Keras-Applications==1.0.7 9 | Keras-Preprocessing==1.0.9 10 | Markdown==3.1.1 11 | numpy==1.16.3 12 | protobuf==3.7.1 13 | PyYAML==5.1 14 | scipy==1.3.0 15 | six==1.12.0 16 | tensorboard==1.12.2 17 | termcolor==1.1.0 18 | Werkzeug==0.15.4 19 | -------------------------------------------------------------------------------- /hello-world/handler.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | 4 | def hello(event, context): 5 | body = { 6 | "message": "Go Serverless v1.0! Your hello-world function executed successfully!", 7 | "input": event 8 | } 9 | 10 | print(body['message']) 11 | 12 | response = { 13 | "statusCode": 200, 14 | "body": json.dumps(body) 15 | } 16 | 17 | return response 18 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/mnist/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """MNIST handwritten digits dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.mnist import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/mnist/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """MNIST handwritten digits dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.mnist import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /spacy-example/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/example/events.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var g = glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], function(err, files) { 8 | console.log(err || files); 9 | }); 10 | 11 | g.on('match', function(f) { 12 | console.log('glob match: %s', f); 13 | }); 14 | 15 | g.on('end', function() { 16 | console.log('globbing complete'); 17 | }); -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/fashion_mnist/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Fashion-MNIST dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.fashion_mnist import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/example/events.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var g = glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], function(err, files) { 8 | console.log(err || files); 9 | }); 10 | 11 | g.on('match', function(f) { 12 | console.log('glob match: %s', f); 13 | }); 14 | 15 | g.on('end', function() { 16 | console.log('globbing complete'); 17 | }); -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/fashion_mnist/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Fashion-MNIST dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.fashion_mnist import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/example/events.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var g = glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], function(err, files) { 8 | console.log(err || files); 9 | }); 10 | 11 | g.on('match', function(f) { 12 | console.log('glob match: %s', f); 13 | }); 14 | 15 | g.on('end', function() { 16 | console.log('globbing complete'); 17 | }); -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/example/events.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var g = glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], function(err, files) { 8 | console.log(err || files); 9 | }); 10 | 11 | g.on('match', function(f) { 12 | console.log('glob match: %s', f); 13 | }); 14 | 15 | g.on('end', function() { 16 | console.log('globbing complete'); 17 | }); -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/example/events.js: -------------------------------------------------------------------------------- 1 | var glob = require('../'); 2 | 3 | var g = glob([ 4 | 'files/**', 5 | '!files/x/**', 6 | 'files/x/z.txt' 7 | ], function(err, files) { 8 | console.log(err || files); 9 | }); 10 | 11 | g.on('match', function(f) { 12 | console.log('glob match: %s', f); 13 | }); 14 | 15 | g.on('end', function() { 16 | console.log('globbing complete'); 17 | }); -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/cifar10/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """CIFAR10 small images classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.cifar10 import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/bluebird/js/release/filter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = function(Promise, INTERNAL) { 3 | var PromiseMap = Promise.map; 4 | 5 | Promise.prototype.filter = function (fn, options) { 6 | return PromiseMap(this, fn, options, INTERNAL); 7 | }; 8 | 9 | Promise.filter = function (promises, fn, options) { 10 | return PromiseMap(promises, fn, options, INTERNAL); 11 | }; 12 | }; 13 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/cifar10/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """CIFAR10 small images classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.cifar10 import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/cifar100/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """CIFAR100 small images classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.cifar100 import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/bluebird/js/release/filter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = function(Promise, INTERNAL) { 3 | var PromiseMap = Promise.map; 4 | 5 | Promise.prototype.filter = function (fn, options) { 6 | return PromiseMap(this, fn, options, INTERNAL); 7 | }; 8 | 9 | Promise.filter = function (promises, fn, options) { 10 | return PromiseMap(promises, fn, options, INTERNAL); 11 | }; 12 | }; 13 | -------------------------------------------------------------------------------- /spacy-example/node_modules/bluebird/js/release/filter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = function(Promise, INTERNAL) { 3 | var PromiseMap = Promise.map; 4 | 5 | Promise.prototype.filter = function (fn, options) { 6 | return PromiseMap(this, fn, options, INTERNAL); 7 | }; 8 | 9 | Promise.filter = function (promises, fn, options) { 10 | return PromiseMap(promises, fn, options, INTERNAL); 11 | }; 12 | }; 13 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/bluebird/js/release/filter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = function(Promise, INTERNAL) { 3 | var PromiseMap = Promise.map; 4 | 5 | Promise.prototype.filter = function (fn, options) { 6 | return PromiseMap(this, fn, options, INTERNAL); 7 | }; 8 | 9 | Promise.filter = function (promises, fn, options) { 10 | return PromiseMap(promises, fn, options, INTERNAL); 11 | }; 12 | }; 13 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/cifar100/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """CIFAR100 small images classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.cifar100 import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/bluebird/js/release/filter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = function(Promise, INTERNAL) { 3 | var PromiseMap = Promise.map; 4 | 5 | Promise.prototype.filter = function (fn, options) { 6 | return PromiseMap(this, fn, options, INTERNAL); 7 | }; 8 | 9 | Promise.filter = function (promises, fn, options) { 10 | return PromiseMap(promises, fn, options, INTERNAL); 11 | }; 12 | }; 13 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/boston_housing/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Boston housing price regression dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.boston_housing import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Wrappers for Keras models, providing compatibility with other frameworks. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow._api.v1.keras.wrappers import scikit_learn 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /keras-example/node_modules/jsonify/test/stringify.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('stringify', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var obj = garbage(50); 8 | t.equal( 9 | json.stringify(obj), 10 | JSON.stringify(obj) 11 | ); 12 | } 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /keras-example/node_modules/readable-stream/readable-browser.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Stream = exports; 3 | exports.Readable = exports; 4 | exports.Writable = require('./lib/_stream_writable.js'); 5 | exports.Duplex = require('./lib/_stream_duplex.js'); 6 | exports.Transform = require('./lib/_stream_transform.js'); 7 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 8 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/boston_housing/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Boston housing price regression dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.boston_housing import load_data 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Wrappers for Keras models, providing compatibility with other frameworks. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow._api.v1.keras.wrappers import scikit_learn 9 | 10 | del print_function 11 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jsonify/test/stringify.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('stringify', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var obj = garbage(50); 8 | t.equal( 9 | json.stringify(obj), 10 | JSON.stringify(obj) 11 | ); 12 | } 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /scikit-example/node_modules/readable-stream/readable-browser.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Stream = exports; 3 | exports.Readable = exports; 4 | exports.Writable = require('./lib/_stream_writable.js'); 5 | exports.Duplex = require('./lib/_stream_duplex.js'); 6 | exports.Transform = require('./lib/_stream_transform.js'); 7 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/jsonify/test/stringify.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('stringify', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var obj = garbage(50); 8 | t.equal( 9 | json.stringify(obj), 10 | JSON.stringify(obj) 11 | ); 12 | } 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /spacy-example/node_modules/readable-stream/readable-browser.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Stream = exports; 3 | exports.Readable = exports; 4 | exports.Writable = require('./lib/_stream_writable.js'); 5 | exports.Duplex = require('./lib/_stream_duplex.js'); 6 | exports.Transform = require('./lib/_stream_transform.js'); 7 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 8 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jsonify/test/stringify.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('stringify', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var obj = garbage(50); 8 | t.equal( 9 | json.stringify(obj), 10 | JSON.stringify(obj) 11 | ); 12 | } 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/readable-stream/readable-browser.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Stream = exports; 3 | exports.Readable = exports; 4 | exports.Writable = require('./lib/_stream_writable.js'); 5 | exports.Duplex = require('./lib/_stream_duplex.js'); 6 | exports.Transform = require('./lib/_stream_transform.js'); 7 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 8 | -------------------------------------------------------------------------------- /keras-example/node_modules/md5-file/promise.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const md5File = require('./') 4 | 5 | function md5FileAsPromised (filename) { 6 | return new Promise(function (resolve, reject) { 7 | md5File(filename, function (err, hash) { 8 | if (err) return reject(err) 9 | 10 | resolve(hash) 11 | }) 12 | }) 13 | } 14 | 15 | module.exports = md5FileAsPromised 16 | module.exports.sync = md5File.sync 17 | -------------------------------------------------------------------------------- /scikit-example/node_modules/md5-file/promise.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const md5File = require('./') 4 | 5 | function md5FileAsPromised (filename) { 6 | return new Promise(function (resolve, reject) { 7 | md5File(filename, function (err, hash) { 8 | if (err) return reject(err) 9 | 10 | resolve(hash) 11 | }) 12 | }) 13 | } 14 | 15 | module.exports = md5FileAsPromised 16 | module.exports.sync = md5File.sync 17 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jsonify/test/stringify.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('stringify', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var obj = garbage(50); 8 | t.equal( 9 | json.stringify(obj), 10 | JSON.stringify(obj) 11 | ); 12 | } 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/readable-stream/readable-browser.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Stream = exports; 3 | exports.Readable = exports; 4 | exports.Writable = require('./lib/_stream_writable.js'); 5 | exports.Duplex = require('./lib/_stream_duplex.js'); 6 | exports.Transform = require('./lib/_stream_transform.js'); 7 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 8 | -------------------------------------------------------------------------------- /spacy-example/node_modules/md5-file/promise.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const md5File = require('./') 4 | 5 | function md5FileAsPromised (filename) { 6 | return new Promise(function (resolve, reject) { 7 | md5File(filename, function (err, hash) { 8 | if (err) return reject(err) 9 | 10 | resolve(hash) 11 | }) 12 | }) 13 | } 14 | 15 | module.exports = md5FileAsPromised 16 | module.exports.sync = md5File.sync 17 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/md5-file/promise.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const md5File = require('./') 4 | 5 | function md5FileAsPromised (filename) { 6 | return new Promise(function (resolve, reject) { 7 | md5File(filename, function (err, hash) { 8 | if (err) return reject(err) 9 | 10 | resolve(hash) 11 | }) 12 | }) 13 | } 14 | 15 | module.exports = md5FileAsPromised 16 | module.exports.sync = md5File.sync 17 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/md5-file/promise.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const md5File = require('./') 4 | 5 | function md5FileAsPromised (filename) { 6 | return new Promise(function (resolve, reject) { 7 | md5File(filename, function (err, hash) { 8 | if (err) return reject(err) 9 | 10 | resolve(hash) 11 | }) 12 | }) 13 | } 14 | 15 | module.exports = md5FileAsPromised 16 | module.exports.sync = md5File.sync 17 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jsonify/test/parse.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('parse', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var s = JSON.stringify(garbage(50)); 8 | 9 | t.deepEqual( 10 | json.parse(s), 11 | JSON.parse(s) 12 | ); 13 | } 14 | 15 | t.end(); 16 | }); 17 | -------------------------------------------------------------------------------- /keras-example/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /keras-example/node_modules/jsonify/test/parse.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('parse', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var s = JSON.stringify(garbage(50)); 8 | 9 | t.deepEqual( 10 | json.parse(s), 11 | JSON.parse(s) 12 | ); 13 | } 14 | 15 | t.end(); 16 | }); 17 | -------------------------------------------------------------------------------- /keras-example/node_modules/pako/index.js: -------------------------------------------------------------------------------- 1 | // Top level file is just a mixin of submodules & constants 2 | 'use strict'; 3 | 4 | var assign = require('./lib/utils/common').assign; 5 | 6 | var deflate = require('./lib/deflate'); 7 | var inflate = require('./lib/inflate'); 8 | var constants = require('./lib/zlib/constants'); 9 | 10 | var pako = {}; 11 | 12 | assign(pako, deflate, inflate, constants); 13 | 14 | module.exports = pako; 15 | -------------------------------------------------------------------------------- /scikit-example/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jsonify/test/parse.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('parse', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var s = JSON.stringify(garbage(50)); 8 | 9 | t.deepEqual( 10 | json.parse(s), 11 | JSON.parse(s) 12 | ); 13 | } 14 | 15 | t.end(); 16 | }); 17 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jsonify/test/parse.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('parse', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var s = JSON.stringify(garbage(50)); 8 | 9 | t.deepEqual( 10 | json.parse(s), 11 | JSON.parse(s) 12 | ); 13 | } 14 | 15 | t.end(); 16 | }); 17 | -------------------------------------------------------------------------------- /spacy-example/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /spacy-example/node_modules/jsonify/test/parse.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test; 2 | var json = require('../'); 3 | var garbage = require('garbage'); 4 | 5 | test('parse', function (t) { 6 | for (var i = 0; i < 50; i++) { 7 | var s = JSON.stringify(garbage(50)); 8 | 9 | t.deepEqual( 10 | json.parse(s), 11 | JSON.parse(s) 12 | ); 13 | } 14 | 15 | t.end(); 16 | }); 17 | -------------------------------------------------------------------------------- /spacy-example/node_modules/pako/index.js: -------------------------------------------------------------------------------- 1 | // Top level file is just a mixin of submodules & constants 2 | 'use strict'; 3 | 4 | var assign = require('./lib/utils/common').assign; 5 | 6 | var deflate = require('./lib/deflate'); 7 | var inflate = require('./lib/inflate'); 8 | var constants = require('./lib/zlib/constants'); 9 | 10 | var pako = {}; 11 | 12 | assign(pako, deflate, inflate, constants); 13 | 14 | module.exports = pako; 15 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/pako/index.js: -------------------------------------------------------------------------------- 1 | // Top level file is just a mixin of submodules & constants 2 | 'use strict'; 3 | 4 | var assign = require('./lib/utils/common').assign; 5 | 6 | var deflate = require('./lib/deflate'); 7 | var inflate = require('./lib/inflate'); 8 | var constants = require('./lib/zlib/constants'); 9 | 10 | var pako = {}; 11 | 12 | assign(pako, deflate, inflate, constants); 13 | 14 | module.exports = pako; 15 | -------------------------------------------------------------------------------- /keras-example/node_modules/isarray/test.js: -------------------------------------------------------------------------------- 1 | var isArray = require('./'); 2 | var test = require('tape'); 3 | 4 | test('is array', function(t){ 5 | t.ok(isArray([])); 6 | t.notOk(isArray({})); 7 | t.notOk(isArray(null)); 8 | t.notOk(isArray(false)); 9 | 10 | var obj = {}; 11 | obj[0] = true; 12 | t.notOk(isArray(obj)); 13 | 14 | var arr = []; 15 | arr.foo = 'bar'; 16 | t.ok(isArray(arr)); 17 | 18 | t.end(); 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /scikit-example/node_modules/pako/index.js: -------------------------------------------------------------------------------- 1 | // Top level file is just a mixin of submodules & constants 2 | 'use strict'; 3 | 4 | var assign = require('./lib/utils/common').assign; 5 | 6 | var deflate = require('./lib/deflate'); 7 | var inflate = require('./lib/inflate'); 8 | var constants = require('./lib/zlib/constants'); 9 | 10 | var pako = {}; 11 | 12 | assign(pako, deflate, inflate, constants); 13 | 14 | module.exports = pako; 15 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/pako/index.js: -------------------------------------------------------------------------------- 1 | // Top level file is just a mixin of submodules & constants 2 | 'use strict'; 3 | 4 | var assign = require('./lib/utils/common').assign; 5 | 6 | var deflate = require('./lib/deflate'); 7 | var inflate = require('./lib/inflate'); 8 | var constants = require('./lib/zlib/constants'); 9 | 10 | var pako = {}; 11 | 12 | assign(pako, deflate, inflate, constants); 13 | 14 | module.exports = pako; 15 | -------------------------------------------------------------------------------- /spacy-example/node_modules/isarray/test.js: -------------------------------------------------------------------------------- 1 | var isArray = require('./'); 2 | var test = require('tape'); 3 | 4 | test('is array', function(t){ 5 | t.ok(isArray([])); 6 | t.notOk(isArray({})); 7 | t.notOk(isArray(null)); 8 | t.notOk(isArray(false)); 9 | 10 | var obj = {}; 11 | obj[0] = true; 12 | t.notOk(isArray(obj)); 13 | 14 | var arr = []; 15 | arr.foo = 'bar'; 16 | t.ok(isArray(arr)); 17 | 18 | t.end(); 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/isarray/test.js: -------------------------------------------------------------------------------- 1 | var isArray = require('./'); 2 | var test = require('tape'); 3 | 4 | test('is array', function(t){ 5 | t.ok(isArray([])); 6 | t.notOk(isArray({})); 7 | t.notOk(isArray(null)); 8 | t.notOk(isArray(false)); 9 | 10 | var obj = {}; 11 | obj[0] = true; 12 | t.notOk(isArray(obj)); 13 | 14 | var arr = []; 15 | arr.foo = 'bar'; 16 | t.ok(isArray(arr)); 17 | 18 | t.end(); 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /keras-example/PIL/ImagePath.py: -------------------------------------------------------------------------------- 1 | # 2 | # The Python Imaging Library 3 | # $Id$ 4 | # 5 | # path interface 6 | # 7 | # History: 8 | # 1996-11-04 fl Created 9 | # 2002-04-14 fl Added documentation stub class 10 | # 11 | # Copyright (c) Secret Labs AB 1997. 12 | # Copyright (c) Fredrik Lundh 1996. 13 | # 14 | # See the README file for information on usage and redistribution. 15 | # 16 | 17 | from . import Image 18 | 19 | 20 | Path = Image.core.path 21 | -------------------------------------------------------------------------------- /scikit-example/node_modules/isarray/test.js: -------------------------------------------------------------------------------- 1 | var isArray = require('./'); 2 | var test = require('tape'); 3 | 4 | test('is array', function(t){ 5 | t.ok(isArray([])); 6 | t.notOk(isArray({})); 7 | t.notOk(isArray(null)); 8 | t.notOk(isArray(false)); 9 | 10 | var obj = {}; 11 | obj[0] = true; 12 | t.notOk(isArray(obj)); 13 | 14 | var arr = []; 15 | arr.foo = 'bar'; 16 | t.ok(isArray(arr)); 17 | 18 | t.end(); 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/isarray/test.js: -------------------------------------------------------------------------------- 1 | var isArray = require('./'); 2 | var test = require('tape'); 3 | 4 | test('is array', function(t){ 5 | t.ok(isArray([])); 6 | t.notOk(isArray({})); 7 | t.notOk(isArray(null)); 8 | t.notOk(isArray(false)); 9 | 10 | var obj = {}; 11 | obj[0] = true; 12 | t.notOk(isArray(obj)); 13 | 14 | var arr = []; 15 | arr.foo = 'bar'; 16 | t.ok(isArray(arr)); 17 | 18 | t.end(); 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /keras-assignment/PIL/ImagePath.py: -------------------------------------------------------------------------------- 1 | # 2 | # The Python Imaging Library 3 | # $Id$ 4 | # 5 | # path interface 6 | # 7 | # History: 8 | # 1996-11-04 fl Created 9 | # 2002-04-14 fl Added documentation stub class 10 | # 11 | # Copyright (c) Secret Labs AB 1997. 12 | # Copyright (c) Fredrik Lundh 1996. 13 | # 14 | # See the README file for information on usage and redistribution. 15 | # 16 | 17 | from . import Image 18 | 19 | 20 | Path = Image.core.path 21 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/imdb/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """IMDB sentiment classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.imdb import get_word_index 10 | from tensorflow.python.keras.datasets.imdb import load_data 11 | 12 | del print_function 13 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/imdb/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """IMDB sentiment classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.imdb import get_word_index 10 | from tensorflow.python.keras.datasets.imdb import load_data 11 | 12 | del print_function 13 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/_api/v1/keras/datasets/reuters/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Reuters topic classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.reuters import get_word_index 10 | from tensorflow.python.keras.datasets.reuters import load_data 11 | 12 | del print_function 13 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/datasets/reuters/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Reuters topic classification dataset. 4 | 5 | """ 6 | 7 | from __future__ import print_function 8 | 9 | from tensorflow.python.keras.datasets.reuters import get_word_index 10 | from tensorflow.python.keras.datasets.reuters import load_data 11 | 12 | del print_function 13 | -------------------------------------------------------------------------------- /keras-assignment/tensorflow/python/estimator/api/estimator/inputs/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Utility methods to create simple input_fns. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.estimator.inputs.inputs import numpy_input_fn 9 | from tensorflow.python.estimator.inputs.inputs import pandas_input_fn 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /keras-example/node_modules/yargs/example/requires_arg.js: -------------------------------------------------------------------------------- 1 | var yargs = require('yargs'); 2 | 3 | var argv = yargs.usage('This is my awesome program', { 4 | 'input': { 5 | description: 'Input file name', 6 | requiresArg: true, 7 | short: 'i', 8 | }, 9 | 'output': { 10 | description: 'Output file name', 11 | requiresArg: true, 12 | short: 'o' 13 | } 14 | }).argv; 15 | 16 | yargs.showHelp(); 17 | 18 | console.log('\n\nInspecting options'); 19 | console.dir(argv); 20 | -------------------------------------------------------------------------------- /keras-example/tensorflow/python/estimator/api/estimator/inputs/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Utility methods to create simple input_fns. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow.python.estimator.inputs.inputs import numpy_input_fn 9 | from tensorflow.python.estimator.inputs.inputs import pandas_input_fn 10 | 11 | del print_function 12 | -------------------------------------------------------------------------------- /scikit-example/node_modules/yargs/example/requires_arg.js: -------------------------------------------------------------------------------- 1 | var yargs = require('yargs'); 2 | 3 | var argv = yargs.usage('This is my awesome program', { 4 | 'input': { 5 | description: 'Input file name', 6 | requiresArg: true, 7 | short: 'i', 8 | }, 9 | 'output': { 10 | description: 'Output file name', 11 | requiresArg: true, 12 | short: 'o' 13 | } 14 | }).argv; 15 | 16 | yargs.showHelp(); 17 | 18 | console.log('\n\nInspecting options'); 19 | console.dir(argv); 20 | -------------------------------------------------------------------------------- /spacy-example/node_modules/yargs/example/requires_arg.js: -------------------------------------------------------------------------------- 1 | var yargs = require('yargs'); 2 | 3 | var argv = yargs.usage('This is my awesome program', { 4 | 'input': { 5 | description: 'Input file name', 6 | requiresArg: true, 7 | short: 'i', 8 | }, 9 | 'output': { 10 | description: 'Output file name', 11 | requiresArg: true, 12 | short: 'o' 13 | } 14 | }).argv; 15 | 16 | yargs.showHelp(); 17 | 18 | console.log('\n\nInspecting options'); 19 | console.dir(argv); 20 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/jszip/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "nonew": true, 5 | "noarg": true, 6 | "forin": true, 7 | "futurehostile": true, 8 | "freeze": true, 9 | "undef": true, 10 | "strict": true, 11 | "sub": true, 12 | "esversion": 3, 13 | 14 | "globals": { 15 | "TextEncoder": false, 16 | "TextDecoder": false, 17 | "self": true 18 | }, 19 | "browser": true, 20 | "node": true 21 | } 22 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/yargs/example/requires_arg.js: -------------------------------------------------------------------------------- 1 | var yargs = require('yargs'); 2 | 3 | var argv = yargs.usage('This is my awesome program', { 4 | 'input': { 5 | description: 'Input file name', 6 | requiresArg: true, 7 | short: 'i', 8 | }, 9 | 'output': { 10 | description: 'Output file name', 11 | requiresArg: true, 12 | short: 'o' 13 | } 14 | }).argv; 15 | 16 | yargs.showHelp(); 17 | 18 | console.log('\n\nInspecting options'); 19 | console.dir(argv); 20 | -------------------------------------------------------------------------------- /keras-example/node_modules/jszip/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "nonew": true, 5 | "noarg": true, 6 | "forin": true, 7 | "futurehostile": true, 8 | "freeze": true, 9 | "undef": true, 10 | "strict": true, 11 | "sub": true, 12 | "esversion": 3, 13 | 14 | "globals": { 15 | "TextEncoder": false, 16 | "TextDecoder": false, 17 | "self": true 18 | }, 19 | "browser": true, 20 | "node": true 21 | } 22 | -------------------------------------------------------------------------------- /scikit-example/node_modules/jszip/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "nonew": true, 5 | "noarg": true, 6 | "forin": true, 7 | "futurehostile": true, 8 | "freeze": true, 9 | "undef": true, 10 | "strict": true, 11 | "sub": true, 12 | "esversion": 3, 13 | 14 | "globals": { 15 | "TextEncoder": false, 16 | "TextDecoder": false, 17 | "self": true 18 | }, 19 | "browser": true, 20 | "node": true 21 | } 22 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/jszip/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "nonew": true, 5 | "noarg": true, 6 | "forin": true, 7 | "futurehostile": true, 8 | "freeze": true, 9 | "undef": true, 10 | "strict": true, 11 | "sub": true, 12 | "esversion": 3, 13 | 14 | "globals": { 15 | "TextEncoder": false, 16 | "TextDecoder": false, 17 | "self": true 18 | }, 19 | "browser": true, 20 | "node": true 21 | } 22 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/yargs/example/requires_arg.js: -------------------------------------------------------------------------------- 1 | var yargs = require('yargs'); 2 | 3 | var argv = yargs.usage('This is my awesome program', { 4 | 'input': { 5 | description: 'Input file name', 6 | requiresArg: true, 7 | short: 'i', 8 | }, 9 | 'output': { 10 | description: 'Output file name', 11 | requiresArg: true, 12 | short: 'o' 13 | } 14 | }).argv; 15 | 16 | yargs.showHelp(); 17 | 18 | console.log('\n\nInspecting options'); 19 | console.dir(argv); 20 | -------------------------------------------------------------------------------- /spacy-example/node_modules/jszip/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "nonew": true, 5 | "noarg": true, 6 | "forin": true, 7 | "futurehostile": true, 8 | "freeze": true, 9 | "undef": true, 10 | "strict": true, 11 | "sub": true, 12 | "esversion": 3, 13 | 14 | "globals": { 15 | "TextEncoder": false, 16 | "TextDecoder": false, 17 | "self": true 18 | }, 19 | "browser": true, 20 | "node": true 21 | } 22 | -------------------------------------------------------------------------------- /keras-example/node_modules/glob-all/bin/glob-all: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Find files that match one or more patterns 5 | */ 6 | 7 | var glob = require('..'); 8 | var argv = require('yargs') 9 | .usage('Usage: $0 [pattern1..patternN]') 10 | .demand(1) 11 | .argv; 12 | 13 | var patterns = argv._; 14 | if (patterns.length === 1) { patterns = patterns[0].split('\n'); } 15 | 16 | glob.sync(patterns).forEach(function (file) { 17 | process.stdout.write(file + '\n'); 18 | }); 19 | -------------------------------------------------------------------------------- /scikit-example/node_modules/glob-all/bin/glob-all: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Find files that match one or more patterns 5 | */ 6 | 7 | var glob = require('..'); 8 | var argv = require('yargs') 9 | .usage('Usage: $0 [pattern1..patternN]') 10 | .demand(1) 11 | .argv; 12 | 13 | var patterns = argv._; 14 | if (patterns.length === 1) { patterns = patterns[0].split('\n'); } 15 | 16 | glob.sync(patterns).forEach(function (file) { 17 | process.stdout.write(file + '\n'); 18 | }); 19 | -------------------------------------------------------------------------------- /spacy-example/node_modules/glob-all/bin/glob-all: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Find files that match one or more patterns 5 | */ 6 | 7 | var glob = require('..'); 8 | var argv = require('yargs') 9 | .usage('Usage: $0 [pattern1..patternN]') 10 | .demand(1) 11 | .argv; 12 | 13 | var patterns = argv._; 14 | if (patterns.length === 1) { patterns = patterns[0].split('\n'); } 15 | 16 | glob.sync(patterns).forEach(function (file) { 17 | process.stdout.write(file + '\n'); 18 | }); 19 | -------------------------------------------------------------------------------- /keras-assignment/node_modules/glob-all/bin/glob-all: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Find files that match one or more patterns 5 | */ 6 | 7 | var glob = require('..'); 8 | var argv = require('yargs') 9 | .usage('Usage: $0 [pattern1..patternN]') 10 | .demand(1) 11 | .argv; 12 | 13 | var patterns = argv._; 14 | if (patterns.length === 1) { patterns = patterns[0].split('\n'); } 15 | 16 | glob.sync(patterns).forEach(function (file) { 17 | process.stdout.write(file + '\n'); 18 | }); 19 | -------------------------------------------------------------------------------- /keras-example/node_modules/array-filter/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Array#filter. 3 | * 4 | * @param {Array} arr 5 | * @param {Function} fn 6 | * @return {Array} 7 | */ 8 | 9 | module.exports = function (arr, fn) { 10 | if (arr.filter) return arr.filter(fn); 11 | var ret = []; 12 | for (var i = 0; i < arr.length; i++) { 13 | if (!hasOwn.call(arr, i)) continue; 14 | if (fn(arr[i], i, arr)) ret.push(arr[i]); 15 | } 16 | return ret; 17 | }; 18 | 19 | var hasOwn = Object.prototype.hasOwnProperty; 20 | -------------------------------------------------------------------------------- /keras-example/tensorflow/_api/v1/keras/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is MACHINE GENERATED! Do not edit. 2 | # Generated by: tensorflow/python/tools/api/generator/create_python_api.py script. 3 | """Keras data preprocessing utils. 4 | """ 5 | 6 | from __future__ import print_function 7 | 8 | from tensorflow._api.v1.keras.preprocessing import image 9 | from tensorflow._api.v1.keras.preprocessing import sequence 10 | from tensorflow._api.v1.keras.preprocessing import text 11 | 12 | del print_function 13 | -------------------------------------------------------------------------------- /spacy-assignment/node_modules/glob-all/bin/glob-all: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Find files that match one or more patterns 5 | */ 6 | 7 | var glob = require('..'); 8 | var argv = require('yargs') 9 | .usage('Usage: $0 [pattern1..patternN]') 10 | .demand(1) 11 | .argv; 12 | 13 | var patterns = argv._; 14 | if (patterns.length === 1) { patterns = patterns[0].split('\n'); } 15 | 16 | glob.sync(patterns).forEach(function (file) { 17 | process.stdout.write(file + '\n'); 18 | }); 19 | --------------------------------------------------------------------------------