Skip to content

Commit f922955

Browse files
committed
Added Body to Dashboard
1 parent ba78f74 commit f922955

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

main.py

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,33 @@
7373
]
7474

7575

76+
MARKDOWN_TEXT = """
77+
78+
Don't know How to Write Complex Python Programs? Feeling Too Lazy to code a complete Deep Learning Training Pipeline Again? Need to Quickly Prototype a Image Classification Model?
79+
80+
Okay, Let's get to the main part. This is a **Containerized Deep Learning-based Image Classifier Training Tool** that allows anybody with some basic understanding of Hyperparameter Tuning to start training a Image Classification Model.
81+
82+
For the Developer/Contributor: The code is easy to maintain and work with. No Added Complexity. Anyone can download and build a Docker Image to get it up and running with the build script.
83+
84+
### **Features**
85+
86+
- **Zero Coding Required** - I have said this enough, I will repeat one last time: No need to touch any programming language, just a few clicks and start training!
87+
- **Easy to use UI Interface** - Built with Streamlit, it is a very user friendly, straight forward UI that anybody can use with ease. Just a few selects and a few sliders, and start training. Simple!
88+
- **Live and Interactive Plots** - Want to know how your training is progressing? Easy! Visualize and compare the results live, on your dashboard and watch the exponentially decaying loss curve build up from scratch!
89+
90+
**Source Code & Documentation:** https://github.com/animikhaich/Zero-Code-TF-Classifier
91+
92+
### **Author Details**
93+
#### Animikh Aich
94+
95+
- Website: [Animikh Aich - Website](http://www.animikh.me/)
96+
- LinkedIn: [animikh-aich](https://www.linkedin.com/in/animikh-aich/)
97+
98+
- Twitter: [@AichAnimikh](https://twitter.com/AichAnimikh)
99+
100+
"""
101+
102+
76103
st.title("Zero Code Tensorflow Classifier Trainer")
77104

78105

@@ -234,11 +261,9 @@ def on_epoch_end(self, epoch, logs=None):
234261
# Enter Path for Train and Val Dataset
235262
train_data_dir = st.text_input(
236263
"Train Data Directory (Absolute Path)",
237-
"/home/ani/Documents/pycodes/Dataset/gender/Training/",
238264
)
239265
val_data_dir = st.text_input(
240266
"Validation Data Directory (Absolute Path)",
241-
"/home/ani/Documents/pycodes/Dataset/gender/Validation/",
242267
)
243268

244269
# Select Backbone
@@ -323,3 +348,5 @@ def on_epoch_end(self, epoch, logs=None):
323348
epochs=selected_epochs,
324349
print_summary=False,
325350
)
351+
else:
352+
st.markdown(MARKDOWN_TEXT)

0 commit comments

Comments
 (0)