Spaces:
Running
Running
Commit
·
a23a68c
1
Parent(s):
d8a8ced
Add application files
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
import subprocess
|
3 |
|
4 |
-
|
5 |
import gradio as gr
|
6 |
|
7 |
def greet(name):
|
@@ -10,7 +10,6 @@ def greet(name):
|
|
10 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
11 |
|
12 |
demo.launch()
|
13 |
-
|
14 |
"""
|
15 |
def greet(name1, name2):
|
16 |
# Storing each input in a variable, you can process or save them as you like
|
@@ -18,7 +17,8 @@ def greet(name1, name2):
|
|
18 |
str2 = "213e22ba-4c3b-402b-bd36-6e9d4e86b1b5" #bioportal
|
19 |
str3 = "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" # huggingface
|
20 |
str4 = name2
|
21 |
-
|
|
|
22 |
with open('abstractsave.txt', 'w') as f:
|
23 |
f.write(name4)
|
24 |
|
@@ -36,7 +36,7 @@ def greet(name1, name2):
|
|
36 |
run_command(f"poetry run runoak set-apikey -e bioportal {str2}")
|
37 |
run_command(f"poetry run runoak set-apikey -e hfhub-key {str3}")
|
38 |
# output = run_command(f"ontogpt extract -t gocam.GoCamAnnotations -i ./abstract.txt")
|
39 |
-
output = run_command(f"cancerontogpt extract -t cancer -i ./abstractsave.txt")
|
40 |
|
41 |
# output_string1, error_string1=run_command("poetry")# ontogpt")
|
42 |
|
@@ -46,7 +46,7 @@ def greet(name1, name2):
|
|
46 |
# return f"Inputs received: {str1} \n, {str2}, {str3}, {str4}, '--------------', '--------------', {output_string1},{error_string1},{output_string2},{error_string2},{output}"
|
47 |
# # return location
|
48 |
# For the purpose of this example, I'm just returning the values concatenated
|
49 |
-
return f"{
|
50 |
|
51 |
# Define 5 text input boxes with labels
|
52 |
input_boxes = [
|
@@ -56,4 +56,4 @@ input_boxes = [
|
|
56 |
|
57 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
58 |
iface.launch()
|
59 |
-
|
|
|
1 |
import gradio as gr
|
2 |
import subprocess
|
3 |
|
4 |
+
"""
|
5 |
import gradio as gr
|
6 |
|
7 |
def greet(name):
|
|
|
10 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
11 |
|
12 |
demo.launch()
|
|
|
13 |
"""
|
14 |
def greet(name1, name2):
|
15 |
# Storing each input in a variable, you can process or save them as you like
|
|
|
17 |
str2 = "213e22ba-4c3b-402b-bd36-6e9d4e86b1b5" #bioportal
|
18 |
str3 = "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" # huggingface
|
19 |
str4 = name2
|
20 |
+
|
21 |
+
"""
|
22 |
with open('abstractsave.txt', 'w') as f:
|
23 |
f.write(name4)
|
24 |
|
|
|
36 |
run_command(f"poetry run runoak set-apikey -e bioportal {str2}")
|
37 |
run_command(f"poetry run runoak set-apikey -e hfhub-key {str3}")
|
38 |
# output = run_command(f"ontogpt extract -t gocam.GoCamAnnotations -i ./abstract.txt")
|
39 |
+
output = run_command(f"cancerontogpt extract -t cancer.CancerAnnotations -i ./abstractsave.txt")"""
|
40 |
|
41 |
# output_string1, error_string1=run_command("poetry")# ontogpt")
|
42 |
|
|
|
46 |
# return f"Inputs received: {str1} \n, {str2}, {str3}, {str4}, '--------------', '--------------', {output_string1},{error_string1},{output_string2},{error_string2},{output}"
|
47 |
# # return location
|
48 |
# For the purpose of this example, I'm just returning the values concatenated
|
49 |
+
return f"{name2}"
|
50 |
|
51 |
# Define 5 text input boxes with labels
|
52 |
input_boxes = [
|
|
|
56 |
|
57 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
58 |
iface.launch()
|
59 |
+
|