Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,15 +39,15 @@ def predict(model, labels, img):
|
|
39 |
return flower, closeness
|
40 |
|
41 |
def main():
|
42 |
-
st.title('
|
43 |
st.markdown('### NAME:')
|
44 |
-
st.write('
|
45 |
st.markdown('### CLASS:')
|
46 |
-
st.write('
|
47 |
st.markdown('### LEVEL:')
|
48 |
-
st.write('
|
49 |
st.markdown('---')
|
50 |
-
st.write("This is a demo of an image classification model trained on the Oxford
|
51 |
st.markdown('---')
|
52 |
model = load_model()
|
53 |
labels = load_labels()
|
|
|
39 |
return flower, closeness
|
40 |
|
41 |
def main():
|
42 |
+
st.title('Flower Classification Using Deep Learning ')
|
43 |
st.markdown('### NAME:')
|
44 |
+
st.write('TOLULOPE')
|
45 |
st.markdown('### CLASS:')
|
46 |
+
st.write('HND2')
|
47 |
st.markdown('### LEVEL:')
|
48 |
+
st.write('400L')
|
49 |
st.markdown('---')
|
50 |
+
st.write("This is a demo of an image classification model trained on the Oxford Flower Dataset. The Oxford Flower Dataset, consisting of 102 flower categories. The images have large scale, pose and light variations. In addition, there are categories that have large variations within the category and several very similar categories. The dataset is visualized using isomap with shape and colour features. Link to the dataset is available @ https://www.kaggle.com/datasets/yousefmohamed20/oxford-102-flower-dataset.. . To test the model, upload an image of a flower and click the 'Run on image' button.")
|
51 |
st.markdown('---')
|
52 |
model = load_model()
|
53 |
labels = load_labels()
|