miracle01 commited on
Commit
3bd8299
·
verified ·
1 Parent(s): 5afe1da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -39,15 +39,15 @@ def predict(model, labels, img):
39
  return flower, closeness
40
 
41
  def main():
42
- st.title('Oxford 102 Flower Classification Demo')
43
  st.markdown('### NAME:')
44
- st.write('Oxford 102 Flower Classification')
45
  st.markdown('### CLASS:')
46
- st.write('Deep Learning')
47
  st.markdown('### LEVEL:')
48
- st.write('Beginner')
49
  st.markdown('---')
50
- st.write("This is a demo of an image classification model trained on the Oxford 102 Flower Dataset. It can identify 102 different types of flowers. 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()
 
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()