Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Dataset
Dataset link : https://www.kaggle.com/datasets/quadeer15sh/amur-tiger-reidentification?select=Amur+Tigers

### Description
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.

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".
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Model Architectures
The following deep learning architectures were implemented and evaluated for the tiger Re-ID task:

1) DenseNet: Known for its dense connections between layers, which enhance feature propagation and reduce vanishing gradients.
2) VGG16: A deep convolutional neural network with 16 layers, known for its simplicity and effectiveness in image classification tasks.
3) ResNet50: A 50-layer deep network utilizing residual connections to facilitate training of deeper networks by addressing the vanishing gradient problem.
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.

### Prerequisites
- Python 3.7+
- TensorFlow 2.x
- Keras
- NumPy
- OpenCV
- Matplotlib
Loading