Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
52 |
|
53 |
with gr.Tab("Source"):
|
54 |
|
55 |
-
gr.Markdown("##
|
56 |
gr.Markdown("Instances of data sources e.g., Jira Cloud endpoint, Trello endpoint, Github endpoint")
|
57 |
|
58 |
textbox_a = gr.Textbox(label='Command')
|
@@ -64,7 +64,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
64 |
gr.Markdown("<br>data_source my-ds-name1 my-ds-desc1 my-jira-endpoint1 my-jira-creds1")
|
65 |
|
66 |
with gr.Tab("Set"):
|
67 |
-
gr.Markdown("## Data
|
68 |
gr.Markdown("A data set from a data source.")
|
69 |
textbox_b = gr.Textbox(label='Command')
|
70 |
output_b = gr.Textbox(label='Output')
|
@@ -72,7 +72,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
72 |
button_b.click(process_command, inputs=[textbox_b], outputs=output_b)
|
73 |
|
74 |
with gr.Tab("Transform"):
|
75 |
-
gr.Markdown("## Data
|
76 |
gr.Markdown("A transformation of a data set into a new data set.")
|
77 |
textbox_c = gr.Textbox(label='Command')
|
78 |
output_c = gr.Textbox(label='Output')
|
@@ -80,7 +80,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
80 |
button_c.click(process_command, inputs=[textbox_c], outputs=output_c)
|
81 |
|
82 |
with gr.Tab("Analysis"):
|
83 |
-
gr.Markdown("## Data
|
84 |
gr.Markdown("Statistical analysis of a data set e.g., slope calculation on feature")
|
85 |
textbox_d = gr.Textbox(label='Command')
|
86 |
output_d = gr.Textbox(label='Output')
|
@@ -88,7 +88,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
88 |
button_d.click(process_command, inputs=[textbox_d], outputs=output_d)
|
89 |
|
90 |
with gr.Tab("Visualization"):
|
91 |
-
gr.Markdown("## Data
|
92 |
gr.Markdown("A visual insight from a data set or data analysis results e.g., matplotlib, sns, plotly")
|
93 |
textbox_e = gr.Textbox(label='Command')
|
94 |
output_e = gr.Textbox(label='Output')
|
|
|
52 |
|
53 |
with gr.Tab("Source"):
|
54 |
|
55 |
+
gr.Markdown("## Data Sources")
|
56 |
gr.Markdown("Instances of data sources e.g., Jira Cloud endpoint, Trello endpoint, Github endpoint")
|
57 |
|
58 |
textbox_a = gr.Textbox(label='Command')
|
|
|
64 |
gr.Markdown("<br>data_source my-ds-name1 my-ds-desc1 my-jira-endpoint1 my-jira-creds1")
|
65 |
|
66 |
with gr.Tab("Set"):
|
67 |
+
gr.Markdown("## Data Sets")
|
68 |
gr.Markdown("A data set from a data source.")
|
69 |
textbox_b = gr.Textbox(label='Command')
|
70 |
output_b = gr.Textbox(label='Output')
|
|
|
72 |
button_b.click(process_command, inputs=[textbox_b], outputs=output_b)
|
73 |
|
74 |
with gr.Tab("Transform"):
|
75 |
+
gr.Markdown("## Data Transforms")
|
76 |
gr.Markdown("A transformation of a data set into a new data set.")
|
77 |
textbox_c = gr.Textbox(label='Command')
|
78 |
output_c = gr.Textbox(label='Output')
|
|
|
80 |
button_c.click(process_command, inputs=[textbox_c], outputs=output_c)
|
81 |
|
82 |
with gr.Tab("Analysis"):
|
83 |
+
gr.Markdown("## Data Analyses")
|
84 |
gr.Markdown("Statistical analysis of a data set e.g., slope calculation on feature")
|
85 |
textbox_d = gr.Textbox(label='Command')
|
86 |
output_d = gr.Textbox(label='Output')
|
|
|
88 |
button_d.click(process_command, inputs=[textbox_d], outputs=output_d)
|
89 |
|
90 |
with gr.Tab("Visualization"):
|
91 |
+
gr.Markdown("## Data Visualizations")
|
92 |
gr.Markdown("A visual insight from a data set or data analysis results e.g., matplotlib, sns, plotly")
|
93 |
textbox_e = gr.Textbox(label='Command')
|
94 |
output_e = gr.Textbox(label='Output')
|