Update app.py
Browse files
app.py
CHANGED
@@ -80,13 +80,34 @@ def update_neurons(activation, seed):
|
|
80 |
|
81 |
# Gradio Interface
|
82 |
with gr.Blocks() as demo:
|
83 |
-
gr.Markdown("# ANN
|
|
|
84 |
gr.Markdown("Dynamically select models and predict cholesterol concentration.")
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
with gr.Row():
|
87 |
-
r = gr.Number(label="R (0 -255)")
|
88 |
-
g = gr.Number(label="G (0 -255)")
|
89 |
-
b = gr.Number(label="B (0 -255)")
|
90 |
|
91 |
with gr.Row():
|
92 |
activation = gr.Dropdown(choices=activations, label="Activation Function", interactive=True)
|
|
|
80 |
|
81 |
# Gradio Interface
|
82 |
with gr.Blocks() as demo:
|
83 |
+
gr.Markdown("# Cholestrol Concentration Prediction - ANN and Linear Model")
|
84 |
+
gr.Markdown("# **Cholestrol Concentration Prediction - ANN and Linear Model**")
|
85 |
gr.Markdown("Dynamically select models and predict cholesterol concentration.")
|
86 |
|
87 |
+
gr.Markdown("### **Authors:**")
|
88 |
+
gr.Markdown("""
|
89 |
+
**Poornima G**
|
90 |
+
Research Scholar, Centre for Nanoscience and Technology, Pondicherry University, Puducherry-605 014
|
91 |
+
[Google Scholar](https://scholar.google.com/citations?user=N2uAkJEAAAAJ&hl=en) | [ORCiD](https://orcid.org/0000-0002-7398-5651)
|
92 |
+
|
93 |
+
**Nihad Alungal**
|
94 |
+
Research Scholar, Centre for Nanoscience and Technology, Pondicherry University, Puducherry-605 014
|
95 |
+
[Google Scholar](https://scholar.google.com/citations?hl=en&user=Qi-xkEYAAAAJ) | [ORCiD](https://orcid.org/0009-0000-4561-1874)
|
96 |
+
|
97 |
+
**Caxton Emerald S**
|
98 |
+
Research Scholar, Department of Computer Science, School of Engineering and Technology, Pondicherry University, Puducherry - 605 014
|
99 |
+
[Google Scholar](https://scholar.google.com/citations?user=OgCHQv4AAAAJ&hl=en) | [ORCiD](https://orcid.org/0000-0002-7763-3987)
|
100 |
+
|
101 |
+
**Dr. S. Kannan**
|
102 |
+
Professor, Centre for Nanoscience and Technology, Pondicherry University, Puducherry-605 014
|
103 |
+
[Web Page](http://www.pondiuni.edu.in/profile/dr-s-kannan)
|
104 |
+
""")
|
105 |
+
# gr.Markdown("Dynamically select models and predict cholesterol concentration.")
|
106 |
+
|
107 |
with gr.Row():
|
108 |
+
r = gr.Number(label="Mean R (0 -255)")
|
109 |
+
g = gr.Number(label="Mean G (0 -255)")
|
110 |
+
b = gr.Number(label="Mean B (0 -255)")
|
111 |
|
112 |
with gr.Row():
|
113 |
activation = gr.Dropdown(choices=activations, label="Activation Function", interactive=True)
|