BhumikaMak commited on
Commit
b5252ed
·
verified ·
1 Parent(s): 7df80ac

update: yolov8 desc

Browse files
Files changed (1) hide show
  1. app.py +15 -14
app.py CHANGED
@@ -30,24 +30,25 @@ description_yolov5 = """
30
  """
31
 
32
  description_yolov8 = """
 
33
 
34
- **Feature Focus for Dogs:**
35
- - **Facial Features:** Strong emphasis on **eyes, nose, and mouth**, aiding in species identification.
36
- - **Ears and Fur Texture:** Highlights distinctive **fluffy or smooth fur patterns** and **ear shapes** (pointed or floppy).
37
- - **Body and Legs:** Focus on the **overall contour, legs, and tails**, distinguishing body structures of breeds like poodles and corgis.
 
 
38
 
39
- **Feature Focus for Cats:**
40
- - **Face and Eyes:** Sharp focus on **eyes and whiskers**, key characteristics of feline features.
41
- - **Body Shape and Tail:** Emphasizes the **compact size and tail curvature**.
42
- - **Paws and Posture:** Captures sitting postures and detailed paw structures.
43
 
44
- **Incorrect Focus:**
45
- - **Background Highlights:** Some heatmaps show attention to **background regions**, leading to irrelevant feature extraction.
46
- - **Shared Features:** Overlapping fur patterns and body structures between dogs and cats occasionally result in misclassification risks.
47
- - **Edge and Border Effects:** Emphasis on **image boundaries** could reflect dataset biases during training.
 
48
 
49
- **Insights:**
50
- - Refinements, such as **attention-based mechanisms**, can improve focus on discriminative features and reduce errors.
51
  """
52
 
53
 
 
30
  """
31
 
32
  description_yolov8 = """
33
+ ### Feature Focus Comparison
34
 
35
+ | Feature | **Dogs** | **Cats** |
36
+ |---------------------|---------------------------------------|-----------------------------------|
37
+ | **Facial Features** | Eyes, nose, mouth for species ID | Sharp focus on eyes and whiskers |
38
+ | **Ears & Fur Texture**| Fluffy/smooth fur, pointed/floppy ears | N/A |
39
+ | **Body & Legs** | Focus on contour, legs, and tails | Emphasizes compact size and tail |
40
+ | **Paws & Posture** | N/A | Sitting posture, paw structures |
41
 
42
+ ### Common Errors
 
 
 
43
 
44
+ | Issue | Description |
45
+ |---------------------|---------------------------------------|
46
+ | **Background Focus**| Attention to irrelevant background regions |
47
+ | **Shared Features** | Overlapping features between dogs and cats |
48
+ | **Edge Effects** | Bias from emphasis on image borders during training |
49
 
50
+ ### Insights:
51
+ - Attention-based mechanisms can improve focus on key features and reduce misclassification.
52
  """
53
 
54