Spaces:
Sleeping
Sleeping
Restore old README.md
Browse files
README.md
CHANGED
@@ -1,12 +1,26 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.17.0
|
8 |
-
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
|
|
|
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Hexviz
|
3 |
+
emoji: 👁️🧬
|
4 |
+
colorFrom: green
|
5 |
+
colorTo: purple
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.17.0
|
8 |
+
app_file: ./hexviz/app.py
|
9 |
pinned: false
|
10 |
---
|
11 |
+
# hexviz
|
12 |
+
Visualize attention pattern on 3D protein structures
|
13 |
|
14 |
+
## Install and run
|
15 |
+
|
16 |
+
```shell
|
17 |
+
poetry install
|
18 |
+
|
19 |
+
poetry run streamlit run hexviz/streamlit/Attention_On_Structure.py
|
20 |
+
```
|
21 |
+
|
22 |
+
## Export dependcies from poetry
|
23 |
+
Spaces [require](https://huggingface.co/docs/hub/spaces-dependencies#adding-your-own-dependencies) dependencies in a `requirements.txt` file. Export depencies from poetry's `pyproject.toml` file with:
|
24 |
+
```shell
|
25 |
+
poetry export -f requirements.txt --output requirements.txt --without-hashes
|
26 |
+
```
|