ruslanmv commited on
Commit
c392e6f
1 Parent(s): 701a967

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +20 -29
main.py CHANGED
@@ -1,30 +1,21 @@
1
  import gradio as gr
2
- import torch
3
- import requests
4
- from torchvision import transforms
5
-
6
- model = torch.hub.load("pytorch/vision:v0.6.0", "resnet18", pretrained=True).eval()
7
- response = requests.get("https://git.io/JJkYN")
8
- labels = response.text.split("\n")
9
-
10
-
11
- def predict(inp):
12
- inp = transforms.ToTensor()(inp).unsqueeze(0)
13
- with torch.no_grad():
14
- prediction = torch.nn.functional.softmax(model(inp)[0], dim=0)
15
- confidences = {labels[i]: float(prediction[i]) for i in range(1000)}
16
- return confidences
17
-
18
-
19
- def run():
20
- demo = gr.Interface(
21
- fn=predict,
22
- inputs=gr.inputs.Image(type="pil"),
23
- outputs=gr.outputs.Label(num_top_classes=3),
24
- )
25
-
26
- demo.launch(server_name="0.0.0.0", server_port=7860)
27
-
28
-
29
- if __name__ == "__main__":
30
- run()
 
1
  import gradio as gr
2
+ import subprocess
3
+ def run_command(command):
4
+ try:
5
+ result = subprocess.check_output(command, shell=True, text=True)
6
+ return result
7
+ except subprocess.CalledProcessError as e:
8
+ return f"Error: {e}"
9
+ iface = gr.Interface(
10
+ fn=run_command,
11
+ inputs="text",
12
+ outputs="text",
13
+ #live=True,
14
+ title="Command Output Viewer",
15
+ description="Enter a command and view its output.",
16
+ examples=[
17
+ ["ls"],
18
+ ["pwd"],
19
+ ["echo 'Hello, Gradio!'"]]
20
+ )
21
+ iface.launch(server_name="0.0.0.0", server_port=7860)