Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,3 @@
|
|
1 |
-
import os
|
2 |
-
import shutil
|
3 |
-
import subprocess
|
4 |
-
import torch
|
5 |
-
import gradio as gr
|
6 |
|
7 |
# Clone and install dependencies
|
8 |
print("Cloning the repository...")
|
@@ -16,6 +11,13 @@ print("Copying files...")
|
|
16 |
source_dir = "edge_vlm"
|
17 |
destination_dir = "."
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
for item in os.listdir(source_dir):
|
20 |
source_item = os.path.join(source_dir, item)
|
21 |
destination_item = os.path.join(destination_dir, item)
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
# Clone and install dependencies
|
3 |
print("Cloning the repository...")
|
|
|
11 |
source_dir = "edge_vlm"
|
12 |
destination_dir = "."
|
13 |
|
14 |
+
import os
|
15 |
+
import shutil
|
16 |
+
import subprocess
|
17 |
+
import torch
|
18 |
+
import gradio as gr
|
19 |
+
|
20 |
+
|
21 |
for item in os.listdir(source_dir):
|
22 |
source_item = os.path.join(source_dir, item)
|
23 |
destination_item = os.path.join(destination_dir, item)
|