aksell commited on
Commit
61d307b
1 Parent(s): 9938060

Restore old README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -6
README.md CHANGED
@@ -1,12 +1,26 @@
1
  ---
2
- title: Test Space
3
- emoji: 🏢
4
- colorFrom: pink
5
- colorTo: red
6
  sdk: streamlit
7
  sdk_version: 1.17.0
8
- app_file: app.py
9
  pinned: false
10
  ---
 
 
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```