Skip to content

Commit b89f7f9

Browse files
authored
Add files via upload
1 parent cb48f4c commit b89f7f9

File tree

10 files changed

+8235
-0
lines changed

10 files changed

+8235
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Dataset
2+
Dataset link : https://www.kaggle.com/datasets/quadeer15sh/amur-tiger-reidentification?select=Amur+Tigers
3+
4+
### Description
5+
The Amur tiger population is concentrated in the Far East, particularly the Russian Far East and Northeast China. The remaining wild population is estimated to be 600 individuals, so conservation is of crucial importance. Re-identification of a species plays an important role in the conservation of wild life. With the help of WWF, a third-party company (MakerCollider) collected more than 8,000 Amur tiger video clips of 92 individuals from ~10 zoos in China. We organize efforts to make bounding-box, keypoint-based pose, and identity annotations for sampled video frames and formuate the ATRW (Amur Tiger Re-identification in the Wild) dataset. Figure 1 illustrates some example bounding box and pose keypoint annotations in our ATRW dataset. Our dataset is the largest wildlife re-ID dataset to date, Table 1 lists a comparison of current wildlife re-ID datasets. The dataset will be divided into training, validation, and testing subsets. The training/validation subsets along with annotations will be released to public, with the annotations for the test subset withheld by the organizers. The dataset paper is released on Arxiv: 1906.05586.
6+
7+
Dataset contains cropped images with manual annotaetd ID and keypoints. Similar to most existing Re-ID tasks, the plain Re-ID task requires to build models on training-set, and evaluating on the test-set. During testing, each image will be taken as query image, while all the remained images in the test-set as "gallery" or "database", the query results should be rank-list of images in "gallery".
141 KB
Loading
137 KB
Loading
100 KB
Loading
136 KB
Loading

Algorithms and Deep Learning Models/Tiger Identification Project/Model/Tiger_re-indentification_VGG16.ipynb

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

Algorithms and Deep Learning Models/Tiger Identification Project/Model/Tiger_re_indentification_DenseNet.ipynb

Lines changed: 3047 additions & 0 deletions
Large diffs are not rendered by default.

Algorithms and Deep Learning Models/Tiger Identification Project/Model/Tiger_re_indentification_EfficientNetB3.ipynb

Lines changed: 2868 additions & 0 deletions
Large diffs are not rendered by default.

Algorithms and Deep Learning Models/Tiger Identification Project/Model/Tiger_re_indentification_Resnet50.ipynb

Lines changed: 2297 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Model Architectures
2+
The following deep learning architectures were implemented and evaluated for the tiger Re-ID task:
3+
4+
1) DenseNet: Known for its dense connections between layers, which enhance feature propagation and reduce vanishing gradients.
5+
2) VGG16: A deep convolutional neural network with 16 layers, known for its simplicity and effectiveness in image classification tasks.
6+
3) ResNet50: A 50-layer deep network utilizing residual connections to facilitate training of deeper networks by addressing the vanishing gradient problem.
7+
4) EfficientNet: A family of models that scale up both the depth and width of networks while balancing the input resolution, providing state-of-the-art performance with fewer parameters.
8+
9+
### Prerequisites
10+
- Python 3.7+
11+
- TensorFlow 2.x
12+
- Keras
13+
- NumPy
14+
- OpenCV
15+
- Matplotlib

0 commit comments

Comments
 (0)