https://github.com/swhl/pytorch-unet
https://github.com/swhl/pytorch-unet
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/swhl/pytorch-unet
- Owner: SWHL
- Created: 2022-05-03T08:01:47.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-05T13:04:11.000Z (about 4 years ago)
- Last Synced: 2025-01-25T05:41:26.782Z (over 1 year ago)
- Language: Python
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## pytorch-unet
- 来源于[usuyama/pytorch-unet](https://github.com/usuyama/pytorch-unet)
- 训练字幕图像的背景擦除模型
#### 目录结构
```text
.
├── convert.py
├── datasets
│ └── gen_datasets
│ ├── train
│ │ ├── images
│ │ └── masks
│ └── val
│ ├── images
| └── masks
├── eval_onnxruntime.py
├── loss.py
├── pytorch_unet.py
├── requirements.txt
└── train_self.py
```