UNPKG

tensorflow-helpers

Version:

Helper functions to use tensorflow in nodejs for transfer learning, image classification, and more

73 lines 1.93 kB
{ "name": "tensorflow-helpers", "version": "2.0.1", "description": "Helper functions to use tensorflow in nodejs for transfer learning, image classification, and more", "keywords": [ "tensorflow", "tensorflowjs", "tfjs", "typescript", "helpers", "utility", "image", "embedding", "classifier", "neural-network", "transfer-learning", "deep-learning", "feature-extraction" ], "author": "", "license": "BSD-2-Clause", "repository": { "type": "git", "url": "git+https://github.com/beenotung/tensorflow-helpers.git" }, "homepage": "https://github.com/beenotung/tensorflow-helpers#readme", "bugs": { "url": "https://github.com/beenotung/tensorflow-helpers/issues" }, "main": "index.js", "types": "index.d.ts", "bin": { "download-tfjs-model": "./download-tfjs-model.js" }, "scripts": { "dev": "npm run bundle -- --watch", "dev:chart": "npm run bundle:chart -- --watch", "bundle": "esbuild browser.test.ts --bundle --outfile=bundle.js", "bundle:chart": "esbuild chart.ts --bundle --outfile=chart.bundle.js", "test": "tsc --noEmit", "clean": "rimraf dist", "build": "rimraf dist && tsc -p . && rimraf dist/*.{tsbuildinfo,test.d.ts,test.js} && rimraf dist/chart.* && mk-package", "tsc": "tsc -p ." }, "dependencies": { "@beenotung/tslib": "^24.6.2", "@tensorflow/tfjs": "^4.22.0", "@tensorflow/tfjs-node": "^4.22.0" }, "peerDependencies": { "@tensorflow/tfjs": "^4.22.0", "@tensorflow/tfjs-core": "^4.22.0", "@tensorflow/tfjs-node": "^4.22.0" }, "peerDependenciesMeta": { "@tensorflow/tfjs": { "optional": true }, "@tensorflow/tfjs-core": { "optional": true }, "@tensorflow/tfjs-node": { "optional": true } }, "pnpm": { "onlyBuiltDependencies": [ "@tensorflow/tfjs-node", "core-js", "esbuild" ] } }