├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── npy.ts ├── npy_test.ts ├── package.json ├── testdata ├── 1.npy ├── 2.npy ├── 3.npy ├── 4.npy └── uint8.npy ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | .npmignore 3 | yarn.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/README.md -------------------------------------------------------------------------------- /npy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/npy.ts -------------------------------------------------------------------------------- /npy_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/npy_test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/package.json -------------------------------------------------------------------------------- /testdata/1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/testdata/1.npy -------------------------------------------------------------------------------- /testdata/2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/testdata/2.npy -------------------------------------------------------------------------------- /testdata/3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/testdata/3.npy -------------------------------------------------------------------------------- /testdata/4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/testdata/4.npy -------------------------------------------------------------------------------- /testdata/uint8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/testdata/uint8.npy -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propelml/tfjs-npy/HEAD/yarn.lock --------------------------------------------------------------------------------