tensorflow-helpers
Version:
Helper functions to use tensorflow in nodejs for transfer learning, image classification, and more
68 lines • 1.71 kB
JSON
{
"name": "tensorflow-helpers",
"version": "1.3.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",
"scripts": {
"dev": "npm run bundle -- --watch",
"bundle": "esbuild browser.test.ts --bundle --outfile=bundle.js",
"test": "tsc --noEmit",
"clean": "rimraf dist",
"build": "rimraf dist && tsc -p . && rimraf dist/*.{tsbuildinfo,test.d.ts,test.js} && 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.21.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"
]
}
}