stockeh commited on
Commit
8a847dd
1 Parent(s): f09cd0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md CHANGED
@@ -1,3 +1,52 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - image-classification
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 10K<n<100K
9
+ pretty_name: DogPoseCV
10
  ---
11
+ # Dataset Card for DogPoseCV
12
+
13
+ This dataset contains 20,578 images of dogs in various poses, labeled as `standing`, `sitting`, `lying down`, or `undefined`. It is intended for computer vision tasks to identify a dog's behavior from images.
14
+
15
+ ## Dataset Details
16
+
17
+ - **Curated by:** Jason Stock and Tom Cavey, Computer Science, Colorado State University
18
+ - **Paper:** [arxiv.org/abs/2101.02380](https://arxiv.org/abs/2101.02380) ([BibTeX](#citation))
19
+ - **Repository:** [github.com/stockeh/canine-embedded-ml](https://github.com/stockeh/canine-embedded-ml)
20
+
21
+ The dataset is intended to be used to train computer vision models to identify a dog's pose/behavior (standing, sitting, lying down) from images. This can enable applications to automatically detect and respond to a dog's actions. The variety of dog breeds enables robust generalization for real-time inference of dog actions.
22
+
23
+ ### Dataset Structure
24
+
25
+ The dataset contains 20,578 RGB images of 120 dog breeds. Images are labeled as one of four classes:
26
+ - standing (4143 images)
27
+ - sitting (3038 images)
28
+ - lying down (7090 images)
29
+ - undefined (6307 images)
30
+ -
31
+ Images have varying resolutions, with 50% between 361x333 and 500x453 pixels.
32
+
33
+ #### Data Collection and Processing
34
+
35
+ This dataset is an adaption of from the [Stanford Dog Dataset](http://vision.stanford.edu/aditya86/ImageNetDogs/), relabeling dog breeds to their associated position. We manually labeled each image as `standing`, `sitting`, `lying down`, or `undefined` if the pose was indistinguishable, e.g., between two positions.
36
+
37
+ ## Bias, Risks, and Limitations
38
+
39
+ The dataset has a class imbalance, with nearly 2x as many "lying down" images compared to "sitting". Indistinguishable poses were labeled as "undefined", with most being close-up portraits. This may limit the ability to handle such images.
40
+
41
+ **Recommendations**: When using this dataset, be aware of the class imbalance and consider oversampling or augmentation techniques if needed.
42
+
43
+ ## Citation
44
+
45
+ ```
46
+ @article{stock2021s,
47
+ title={Who's a Good Boy? Reinforcing Canine Behavior in Real-Time using Machine Learning},
48
+ author={Stock, Jason and Cavey, Tom},
49
+ journal={arXiv preprint arXiv:2101.02380},
50
+ year={2021}
51
+ }
52
+ ```