Spaces:
Running
Running
Add basic Gradio files
Browse files- app.py +7 -0
- packages.txt +1 -0
- requirements.txt +20 -0
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
packages.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
python=3.8.5
|
requirements.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pandas
|
2 |
+
numpy
|
3 |
+
lmdb
|
4 |
+
git+https://github.com/microsoft/protein-sequence-models.git
|
5 |
+
mlflow
|
6 |
+
scikit-learn
|
7 |
+
seaborn
|
8 |
+
blosum
|
9 |
+
matplotlib
|
10 |
+
fair-esm
|
11 |
+
biotite
|
12 |
+
torch
|
13 |
+
torchvision
|
14 |
+
torch_geometric
|
15 |
+
torch_scatter
|
16 |
+
tqdm
|
17 |
+
git+https://github.com/HeliXonProtein/OmegaFold.git
|
18 |
+
mdanalysis
|
19 |
+
pdb-tools
|
20 |
+
evodiff
|