-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.js
More file actions
104 lines (101 loc) · 3.21 KB
/
Copy pathinstall.js
File metadata and controls
104 lines (101 loc) · 3.21 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
module.exports = {
run: [
// Edit this step to customize the git repository to use
{
method: "shell.run",
params: {
message: [
"git clone https://github.com/Lytanshade/LivePortrait.git app",
]
}
},
// Delete this step if your project does not use torch
{
method: "script.start",
params: {
uri: "torch.js",
params: {
venv: "env", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
// xformers: true // uncomment this line if your project requires xformers
}
}
},
// Edit this step with your custom install commands
{
method: "shell.run",
params: {
venv: "env", // Edit this to customize the venv folder path
path: "app", // Edit this to customize the path to start the shell from
message: [
"pip install gradio devicetorch",
"{{platform === 'darwin' ? 'pip install onnxruntime-silicon==1.16.3' : null}}",
"{{gpu === 'nvidia' ? 'pip install onnxruntime-gpu==1.18.0' : null}}",
"pip install -r requirements.txt"
]
}
},
// Uncomment this step to add automatic venv deduplication (Experimental)
// {
// method: "fs.link",
// params: {
// venv: "app/env"
// }
// },
{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/insightface/resolve/main/det_10g.onnx",
dir: "app/pretrained_weights/insightface/models/buffalo_l"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/insightface/resolve/main/2d106det.onnx",
dir: "app/pretrained_weights/insightface/models/buffalo_l"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/liveportrait/resolve/main/liveportrait/landmark.onnx",
dir: "app/pretrained_weights/liveportrait"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/liveportrait/resolve/main/liveportrait/base_models/appearance_feature_extractor.pth",
dir: "app/pretrained_weights/liveportrait/base_models"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/liveportrait/resolve/main/liveportrait/base_models/motion_extractor.pth",
dir: "app/pretrained_weights/liveportrait/base_models"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/liveportrait/resolve/main/liveportrait/base_models/spade_generator.pth",
dir: "app/pretrained_weights/liveportrait/base_models"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/liveportrait/resolve/main/liveportrait/base_models/warping_module.pth",
dir: "app/pretrained_weights/liveportrait/base_models"
}
},{
method: "fs.download",
params: {
uri: "https://huggingface.co/lytanshade/liveportrait/resolve/main/liveportrait/retargeting_models/stitching_retargeting_module.pth",
dir: "app/pretrained_weights/liveportrait/retargeting_models"
}
},
{
method: "notify",
params: {
html: "Click the 'start' tab to get started!"
}
}
]
}