forked from pratikpc/tf-kmeans
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 819 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@flucoma/tf-kmeans",
"version": "0.0.3",
"description": "A Library for Calculating K-Means using Tensorflow",
"keywords": [
"kmeans",
"kmeans-clustering",
"tensorflow",
"ML",
"Machine-Learning",
"MachineLearning",
"tf",
"tfjs"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"author": "Pratik Chowdhury",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pratikpc/tf-kmeans.git"
},
"bugs": {
"url": "https://github.com/pratikpc/tf-kmeans/issues"
},
"homepage": "https://github.com/pratikpc/tf-kmeans#readme",
"devDependencies": {
"typescript": "3.5.3",
"@tensorflow/tfjs": "3.16.0"
},
"peerDependencies": {
"@tensorflow/tfjs": "3.16.0"
}
}