You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 414B

3 years ago
12345678910111213141516171819202122232425262728
  1. # Enhanced U-Net: A Feature Enhancement Network for Polyp Segmentation
  2. ## Requirements
  3. * torch
  4. * torchvision
  5. * scipy
  6. * PIL
  7. * numpy
  8. * tqdm
  9. ### Data
  10. ### 1. Training
  11. ```bash
  12. python train.py --mode train --train_data_dir /path-to-train_data --valid_data_dir /path-to-valid_data
  13. ```
  14. #### 2. Testing
  15. ```bash
  16. python test.py --mode test --load_ckpt checkpoint --test_data_dir /path-to-test_data```
  17. ```