gabboud commited on
Commit
4315fdb
·
1 Parent(s): 0ed4819

organize intro text and pic in row

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +9 -6
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  title: RFdiffusion3
3
- emoji: 👩‍🔬
4
  colorFrom: yellow
5
  colorTo: blue
6
  sdk: gradio
 
1
  ---
2
  title: RFdiffusion3
3
+ emoji: 💪
4
  colorFrom: yellow
5
  colorTo: blue
6
  sdk: gradio
app.py CHANGED
@@ -18,13 +18,16 @@ download_weights()
18
 
19
  # Gradio UI
20
  with gr.Blocks(title="RFD3 Test") as demo:
 
21
  gr.Markdown("# RFdiffusion3 for Backbone generation 🧬 ")
22
- gr.Markdown("When the Baker lab released the first version of [RFdiffusion](https://www.nature.com/articles/s41586-023-06415-8), they opened up new avenues for protein design." \
23
- "The model was based on the previous structure prediction architectures, yet employing the diffusion framework typical of image generation models. " \
24
- "It showed impressive results in generating protein backbones for motif scaffolding and binder design.")
25
- gr.Markdown("Now in its third version, [RFD3](https://pubmed.ncbi.nlm.nih.gov/41000976/) can create binders for an extended set of targets, from DNA/RNA to small molecules, and allows advanced conditiong."
26
- "This space allows you to run backbone generation jobs using Hugging Face's hardware and download the results!")
27
- gr.Image("assets/overview_rfd3_baker.png", width=600)
 
 
28
 
29
 
30
  test_btn = gr.Button("Run RFD3 Test")
 
18
 
19
  # Gradio UI
20
  with gr.Blocks(title="RFD3 Test") as demo:
21
+
22
  gr.Markdown("# RFdiffusion3 for Backbone generation 🧬 ")
23
+
24
+ with gr.Row():
25
+ gr.Markdown("When the Baker lab released the first version of [RFdiffusion](https://www.nature.com/articles/s41586-023-06415-8), they opened up new avenues for protein design." \
26
+ "The model was based on the previous structure prediction architectures, yet employing the diffusion framework typical of image generation models. " \
27
+ "It showed impressive results in generating protein backbones for motif scaffolding and binder design." \
28
+ "Now in its third version, [RFD3](https://pubmed.ncbi.nlm.nih.gov/41000976/) can create binders for an extended set of targets, from DNA/RNA to small molecules, and allows advanced conditiong." \
29
+ "This space allows you to run backbone generation jobs using Hugging Face's hardware and download the results!")
30
+ gr.Image("assets/overview_rfd3_baker.png", width=600)
31
 
32
 
33
  test_btn = gr.Button("Run RFD3 Test")