free-x commited on
Commit
86d9d69
·
verified ·
1 Parent(s): 583270e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -30
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
- tokenizer = AutoTokenizer.from_pretrained(pretrained_model_name_or_path=".cache/huggingface/hub/models")
22
- model = AutoModelForCausalLM.from_pretrained(pretrained_model_name_or_path=".cache/huggingface/hub/models")
23
- generator = pipeline('text-generation', model=model, tokenizer=tokenizer)
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
- # generator = pipeline('text-generation', model='gpt2')
 
 
 
 
 
 
 
 
26
 
27
- def generate(text):
28
- result = generator(text, max_length=30, num_return_sequences=1)
29
- return result[0]["generated_text"]
30
 
31
- examples = [
32
- ["The Moon's orbit around Earth has"],
33
- ["The smooth Borealis basin in the Northern Hemisphere covers 40%"],
34
- ]
35
 
36
  demo = gr.Interface(
37
- fn=generate,
38
- inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
39
- outputs=gr.outputs.Textbox(label="Generated Text"),
40
- examples=examples
41
  )
42
 
43
- demo.launch(server_name="0.0.0.0", server_port=7860)
 
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()