Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,43 +1,46 @@
|
|
|
|
1 |
import os
|
2 |
import subprocess
|
3 |
-
import logging
|
4 |
|
5 |
-
import gradio as gr
|
6 |
-
from transformers import pipeline
|
7 |
-
from transformers import AutoTokenizer, AutoModelForCausalLM
|
8 |
|
9 |
-
# 下载模型
|
10 |
-
base_dir = ".cache/huggingface/hub"
|
11 |
-
if not os.path.isdir(base_dir):
|
12 |
-
os.makedirs(base_dir)
|
13 |
|
14 |
-
cmd_list = ["cd", base_dir, "&&", "git lfs install", "&&", "git clone", "https://gitee.com/lanzhiwang/gpt2.git", "models"]
|
15 |
-
cmd_str = " ".join(cmd_list)
|
16 |
-
print("cmd_str:", cmd_str)
|
17 |
-
ret, out = subprocess.getstatusoutput(cmd_str)
|
18 |
-
print("ret:", ret)
|
19 |
-
print("out:", out)
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
return result[0]["generated_text"]
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
["The smooth Borealis basin in the Northern Hemisphere covers 40%"],
|
34 |
-
]
|
35 |
|
36 |
demo = gr.Interface(
|
37 |
-
fn=
|
38 |
-
inputs=
|
39 |
-
outputs=
|
40 |
-
examples=examples
|
41 |
)
|
42 |
|
43 |
-
demo.launch(
|
|
|
1 |
+
import gradio as gr
|
2 |
import os
|
3 |
import subprocess
|
|
|
4 |
|
|
|
|
|
|
|
5 |
|
|
|
|
|
|
|
|
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
+
print(os.system('nvidia-smi')
|
9 |
+
print()
|
10 |
+
|
11 |
+
def get_disk_usage():
|
12 |
+
try:
|
13 |
+
|
14 |
+
result = subprocess.run(['sudo', 'du', '-h', '/'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
15 |
+
|
16 |
+
|
17 |
+
if result.returncode != 0:
|
18 |
+
print(f"Error: {result.stderr}")
|
19 |
+
else:
|
20 |
+
print(result.stdout)
|
21 |
+
except Exception as e:
|
22 |
+
print(f"An error occurred: {e}")
|
23 |
|
24 |
+
def get_system_info():
|
25 |
+
print("=== System Information ===")
|
26 |
+
print(f"System: {platform.system()}")
|
27 |
+
print(f"Node Name: {platform.node()}")
|
28 |
+
print(f"Release: {platform.release()}")
|
29 |
+
print(f"Version: {platform.version()}")
|
30 |
+
print(f"Machine: {platform.machine()}")
|
31 |
+
print(f"Processor: {platform.processor()}")
|
32 |
+
print(f"Architecture: {platform.architecture()}")
|
33 |
|
34 |
+
get_disk_usage()
|
35 |
+
get_system_info()
|
|
|
36 |
|
37 |
+
def greet(name, intensity):
|
38 |
+
return "Hello, " + name + "!" * int(intensity)
|
|
|
|
|
39 |
|
40 |
demo = gr.Interface(
|
41 |
+
fn=greet,
|
42 |
+
inputs=["text", "slider"],
|
43 |
+
outputs=["text"],
|
|
|
44 |
)
|
45 |
|
46 |
+
demo.launch()
|