Directory Structure
├── cfg.py
├── checkpoints
│ └── cfg
│ └── checkpoint.pth.tar
├── data
│ ├── TestData
│ │ ├── image
│ │ └── txt
│ └── TrainingData
│ ├── image
│ └── txt
├── dataset
│ ├── builder.py
│ ├── __init__.py
│ ├── pan_pp_test.py
│ └── pan_pp_train.py
├── models
│ ├── backbone
│ │ ├── builder.py
│ │ ├── __init__.py
│ │ └── resnet.py
│ ├── builder.py
│ ├── head
│ │ ├── builder.py
│ │ ├── __init__.py
│ │ └── pan_pp_det_head.py
│ ├── __init__.py
│ ├── loss
│ │ ├── acc.py
│ │ ├── builder.py
│ │ ├── dice_loss.py
│ │ ├── emb_loss_v1.py
│ │ ├── emb_loss_v2.py
│ │ ├── __init__.py
│ │ ├── iou.py
│ │ └── ohem.py
│ ├── neck
│ │ ├── builder.py
│ │ ├── fpem_v2.py
│ │ └── __init__.py
│ ├── pan_pp.py
│ └── utils
│ ├── conv_bn_relu.py
│ ├── coordconv.py
│ ├── fuse_conv_bn.py
│ └── __init__.py
├── README.md
├── requirement.txt
├── main.ipynb
├── test.py
├── test.sh
├── train.py
├── train.sh
└── utils
├── average_meter.py
├── corrector.py
├── __init__.py
├── logger.py
├── result_format.py
└── visualizer.py
~/Google Drive/내 드라이브$ git clone https://github.com/Team-BoonMoSa/PANPP
~/Google Drive/내 드라이브/PANPP/data
에 FlickrLogos-v2
업로드
sh makeGT.sh
!sh train.sh
tt_root_dir = './data/TrainingData/'
tt_train_data_dir = tt_root_dir + 'image/'
tt_train_gt_dir = tt_root_dir + 'txt/'
train_cfg = dict(
...
# pretrain='',
)
!sh test.sh
data = dict(
...
test=dict(
...
data='data/TestData/image/'
)
)
test_cfg = dict(
...
pretrain='./checkpoints/cfg/checkpoint.pth.tar', # tmp
)
Reference