- Topic: Human Segmentation using U-Net model with Kaggle image datasets
- Model: U-Net: Convolutional Networks for Biomedical Image Segmentation paper
pip install -r requirements.txt
- Sketch Dataset
- EDA
- Images: Extracted from video frames
- Number: 2615
- Shape: (3, 960, 540)
- Masks: Segmented images of dancing people
- Number: 2615
- Shape: (1, 960, 540)
- Features:
- No annotation file. Only masked image files.
- Not split into train, validation, and test datasets.
- Images: Extracted from video frames
python train.py --batch_size 8 --epoch 35
python infer.py
unet_tiktok
│
├── assets
├── date # Download dataset
│ ├── images
│ └── masks
├── networks
| └── model.py
├── new_results # Resize Predicted masks
├── results # Predicted masks
├── saves
| └── 0000
| └──...
├── app.py # Demo with Gradio
├── utills
├── infer.py
├── show.py
├── test_img.png
└── train.py




