Karlsen commited on
Commit
6f01629
1 Parent(s): b708b7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -34,16 +34,16 @@ def display_image(image_path, caption):
34
  except Exception as e:
35
  st.error(f"An error occurred while loading {image_path}: {e}")
36
 
37
- # List of image files with their captions and correct file extensions
38
  image_files = [
39
  ("head10.JPG", "Head 10"),
40
- ("accuracy.JPG", "Accuracy"),
 
 
 
41
  ("heirarchy_cluster.JPG", "Hierarchy Cluster"),
42
  ("sentiment.JPG", "Sentiment"),
43
- ("similarity_matrix.JPG", "Similarity Matrix"),
44
- ("topic_groups.JPG", "Topic Groups"),
45
- ("idm_overlap.jpg", "IDM Overlap"),
46
- ("idm.JPG", "IDM")
47
  ]
48
 
49
  # Display images
 
34
  except Exception as e:
35
  st.error(f"An error occurred while loading {image_path}: {e}")
36
 
37
+ # List of image files with their captions and correct file extensions in the specified order
38
  image_files = [
39
  ("head10.JPG", "Head 10"),
40
+ ("idm_overlap.jpg", "IDM Overlap"),
41
+ ("idm.JPG", "IDM"),
42
+ ("topic_groups.JPG", "Topic Groups"),
43
+ ("similarity_matrix.JPG", "Similarity Matrix"),
44
  ("heirarchy_cluster.JPG", "Hierarchy Cluster"),
45
  ("sentiment.JPG", "Sentiment"),
46
+ ("accuracy.JPG", "Accuracy")
 
 
 
47
  ]
48
 
49
  # Display images