Koushik Dutta commited on
Commit
9853e63
·
1 Parent(s): c9b6b6d
Files changed (2) hide show
  1. .vscode/launch.json +17 -0
  2. requirements.txt +8 -0
.vscode/launch.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+
8
+ {
9
+ "justMyCode": false,
10
+ "name": "Python Debugger: Current File",
11
+ "type": "debugpy",
12
+ "request": "launch",
13
+ "program": "${file}",
14
+ "console": "integratedTerminal"
15
+ }
16
+ ]
17
+ }
requirements.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ onnx
2
+ onnxruntime
3
+ Pillow
4
+ transformers
5
+ coremltools
6
+ torch
7
+ huggingface
8
+ requests