cgeorgiaw HF Staff commited on
Commit
6591f63
·
1 Parent(s): 96095b3

removing some vis

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -62,6 +62,8 @@ def gradio_interface() -> gr.Blocks:
62
  # Welcome to the ConStellaration Boundary Explorer!
63
 
64
  ### Here, you can visualize submissions to the ConStellaration Leaderboard, generate and visualize new random boundaries, or upload and visualize your own!
 
 
65
  """)
66
 
67
  ds = load_dataset(results_repo, split='train')
@@ -89,9 +91,10 @@ def gradio_interface() -> gr.Blocks:
89
  rotational_transform = gr.Number(label="Rotational Transform", value=0.4)
90
  n_field_periods = gr.Number(label="Number of Period Fields", value=3)
91
  generate_btn = gr.Button(value="Generate")
 
92
 
93
  # with gr.Column(visible=True):
94
- boundary_plot = gr.Plot()
95
  interactive_plot = gr.Plot()
96
  # boozer_plot = gr.Plot()
97
  # flux_surface_plot = gr.Plot()
 
62
  # Welcome to the ConStellaration Boundary Explorer!
63
 
64
  ### Here, you can visualize submissions to the ConStellaration Leaderboard, generate and visualize new random boundaries, or upload and visualize your own!
65
+
66
+ If you want to explore additional visualizations, like Boozer plots and flux surface plots, check out the `constellaration` library's [visualization tools](https://github.com/proximafusion/constellaration/blob/main/notebooks/boundary_explorer.ipynb).
67
  """)
68
 
69
  ds = load_dataset(results_repo, split='train')
 
91
  rotational_transform = gr.Number(label="Rotational Transform", value=0.4)
92
  n_field_periods = gr.Number(label="Number of Period Fields", value=3)
93
  generate_btn = gr.Button(value="Generate")
94
+ boundary_plot = gr.Plot()
95
 
96
  # with gr.Column(visible=True):
97
+
98
  interactive_plot = gr.Plot()
99
  # boozer_plot = gr.Plot()
100
  # flux_surface_plot = gr.Plot()