Created by: heavengate
- change
fluid.io.DataLoader/Dataset/BatchSampler
topaddle.io.DataLoader/Dataset/BatchSampler
- add
MNIST
Flowers
tovision/datasets
- move
models
tohapi/vision/models
- move
COCODataset
tovision/datasets
- move
yolov3/transforms
tovision/transforms
- move
yolov3
tsm
bmn
image_classification
toexamples
- add doc for
darknet
YOLOv3
TSM
directory structure
hapi/hapi
.
├── callbacks.py
├── configure.py
├── datasets
│ ├── coco.py
│ ├── flowers.py
│ ├── folder.py
│ ├── __init__.py
│ ├── mnist.py
│ ├── utils.py
├── distributed.py
├── download.py
├── __init__.py
├── metrics.py
├── model.py
├── progressbar.py
├── text
│ ├── bert
│ │ ├── batching.py
│ │ ├── bert.py
│ │ ├── dataloader.py
│ │ ├── data_processor.py
│ │ ├── __init__.py
│ │ ├── optimization.py
│ │ ├── static_optimization.py
│ │ └── utils
│ │ ├── args.py
│ │ ├── cards.py
│ │ ├── convert_static_to_dygraph.py
│ │ ├── fp16.py
│ │ ├── __init__.py
│ │ └── init.py
│ ├── __init__.py
│ ├── text.py
│ └── tokenizer
│ ├── __init__.py
│ └── tokenization.py
└── vision
├── __init__.py
├── models
│ ├── bmn.py
│ ├── darknet.py
│ ├── __init__.py
│ ├── mobilenetv1.py
│ ├── mobilenetv2.py
│ ├── resnet.py
│ ├── tsm.py
│ ├── vgg.py
│ ├── yolov3.py
└── transforms
├── detection_transforms.py
├── functional.py
├── __init__.py
├── transforms.py
hapi/examples
.
├── bert
│ ├── bert_classifier.py
│ ├── bert.yaml
│ ├── cls.py
│ └── run_classifier_single_gpu.sh
├── bert_leveldb
│ ├── bert_classifier.py
│ ├── bert.yaml
│ ├── cls.py
│ ├── nohup.out
│ └── run_classifier_single_gpu.sh
├── bmn
│ ├── bmn_metric.py
│ ├── BMN.png
│ ├── bmn_utils.py
│ ├── bmn.yaml
│ ├── config_utils.py
│ ├── eval_anet_prop.py
│ ├── eval.py
│ ├── infer.list
│ ├── output
│ │ └── INFER
│ │ └── BMN_results
│ ├── predict.py
│ ├── predict_results
│ ├── reader.py
│ ├── README.md
│ ├── run.sh
│ └── train.py
├── image_classification
│ ├── imagenet_dataset.py
│ ├── main.py
│ └── README.MD
├── tmp.txt
├── tsm
│ ├── check.py
│ ├── dataset
│ │ ├── kinetics
│ │ │ ├── generate_label.py
│ │ │ └── video2pkl.py
│ │ └── README.md
│ ├── images
│ │ └── temporal_shift.png
│ ├── infer.py
│ ├── kinetics_dataset.py
│ ├── main.py
│ ├── README.md
│ ├── transforms.py
└── yolov3
├── coco_metric.py
├── dataset
│ └── download_voc.py
├── image
│ ├── dog.jpg
│ ├── YOLOv3.jpg
│ └── YOLOv3_structure.jpg
├── infer.py
├── main.py
├── README.md
└── visualizer.py