-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 932 Bytes
/
package.json
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
38
39
40
{
"name": "@pipcook/plugins-pytorch-yolov5-model-train",
"version": "1.1.2",
"description": "This is the pipcook model-train plugin for yolo v5 model",
"main": "__init__.py",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "queyue.crk<[email protected]>",
"license": "Apache 2.0",
"dependencies": {
},
"devDependencies": {
"@types/jasmine": "^3.5.7",
"nyc": "14.1.1"
},
"publishConfig": {
"access": "public"
},
"pipcook": {
"category": "modelTrain",
"datatype": "image",
"runtime": "python"
},
"conda": {
"python": "3.7",
"dependencies": {
"torch": "1.6.0",
"torchvision": "0.7.0",
"Cython": "0.29.21",
"matplotlib": "3.3.2",
"numpy": "1.19.2",
"opencv-python-headless": "4.4.0.44",
"PyYAML": "5.3.1",
"tqdm": "4.51.0",
"pillow": "8.0.1",
"scipy": "1.2.2"
}
}
}