├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── bert ├── bert.yaml ├── bert_classifier.py ├── readme.md ├── run_classifier_multi_gpu.sh └── run_classifier_single_gpu.sh ├── bert_leveldb ├── bert.yaml ├── bert_classifier.py ├── readme.md ├── run_classifier_multi_gpu.sh └── run_classifier_single_gpu.sh ├── bmn ├── BMN.png ├── README.md ├── bmn.yaml ├── bmn_metric.py ├── bmn_utils.py ├── config_utils.py ├── eval.py ├── eval_anet_prop.py ├── infer.list ├── modeling.py ├── predict.py ├── reader.py ├── run.sh └── train.py ├── cyclegan ├── README.md ├── __init__.py ├── check.py ├── cyclegan.py ├── data.py ├── image │ ├── A2B.png │ ├── B2A.png │ ├── net.png │ ├── testA │ │ └── 123_A.jpg │ └── testB │ │ └── 78_B.jpg ├── infer.py ├── layers.py ├── test.py └── train.py ├── handwritten_number_recognition ├── README.md └── mnist.py ├── image ├── hapi_gif.gif ├── hapi_transform.png ├── new_hapi.png └── paddlevision.png ├── image_classification ├── README.MD ├── imagenet_dataset.py ├── main.py └── scripts │ ├── mobilenet_v1_x1.0.sh │ ├── mobilenet_v2_x1.0.sh │ ├── resnet101.sh │ ├── resnet152.sh │ ├── resnet18.sh │ ├── resnet34.sh │ ├── resnet50.sh │ └── vgg16.sh ├── ocr ├── README.md ├── data.py ├── eval.py ├── images │ ├── 112_chubbiness_13557.jpg │ ├── 177_Interfiled_40185.jpg │ ├── 325_dame_19109.jpg │ └── 368_fixtures_29232.jpg ├── predict.py ├── seq2seq_attn.py ├── train.py └── utility.py ├── sentiment_classification ├── README.md ├── models.py ├── senta.yaml └── sentiment_classifier.py ├── seq2seq ├── README.md ├── args.py ├── download.py ├── predict.py ├── reader.py ├── seq2seq_attn.py ├── seq2seq_base.py ├── train.py └── utility.py ├── sequence_tagging ├── README.md ├── conf │ ├── q2b.dic │ ├── tag.dic │ └── word.dic ├── downloads.py ├── downloads.sh ├── eval.py ├── images │ └── gru-crf-model.png ├── predict.py ├── reader.py ├── sequence_tagging.py ├── sequence_tagging.yaml ├── train.py └── utils │ ├── __init__.py │ ├── check.py │ ├── configure.py │ └── metrics.py ├── style-transfer ├── README.md ├── images │ ├── Starry-Night-by-Vincent-Van-Gogh-painting.jpg │ ├── chicago_cropped.jpg │ ├── janelle.png │ └── markdown │ │ ├── img1.png │ │ ├── img2.png │ │ ├── output_10_1.png │ │ ├── output_20_1.png │ │ ├── output_20_11.png │ │ ├── output_20_13.png │ │ ├── output_20_15.png │ │ ├── output_20_17.png │ │ ├── output_20_19.png │ │ ├── output_20_3.png │ │ ├── output_20_5.png │ │ ├── output_20_7.png │ │ ├── output_20_9.png │ │ └── output_21_1.png ├── style-transfer.ipynb └── style_transfer.py ├── transformer ├── README.md ├── gen_data.sh ├── images │ ├── multi_head_attention.png │ └── transformer_network.png ├── predict.py ├── reader.py ├── train.py ├── transformer.py ├── transformer.yaml └── utils │ ├── __init__.py │ ├── check.py │ └── configure.py ├── tsm ├── README.md ├── check.py ├── dataset │ ├── README.md │ └── kinetics │ │ ├── generate_label.py │ │ └── video2pkl.py ├── images │ └── temporal_shift.png ├── infer.py ├── kinetics_dataset.py ├── main.py ├── modeling.py ├── transforms.py └── utils.py └── yolov3 ├── .gitignore ├── README.md ├── coco.py ├── coco_metric.py ├── darknet.py ├── dataset └── download_voc.py ├── image ├── YOLOv3.jpg ├── YOLOv3_structure.jpg └── dog.jpg ├── infer.py ├── main.py ├── modeling.py ├── transforms.py ├── utils.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/README.md -------------------------------------------------------------------------------- /bert/bert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert/bert.yaml -------------------------------------------------------------------------------- /bert/bert_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert/bert_classifier.py -------------------------------------------------------------------------------- /bert/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert/readme.md -------------------------------------------------------------------------------- /bert/run_classifier_multi_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert/run_classifier_multi_gpu.sh -------------------------------------------------------------------------------- /bert/run_classifier_single_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert/run_classifier_single_gpu.sh -------------------------------------------------------------------------------- /bert_leveldb/bert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert_leveldb/bert.yaml -------------------------------------------------------------------------------- /bert_leveldb/bert_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert_leveldb/bert_classifier.py -------------------------------------------------------------------------------- /bert_leveldb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert_leveldb/readme.md -------------------------------------------------------------------------------- /bert_leveldb/run_classifier_multi_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert_leveldb/run_classifier_multi_gpu.sh -------------------------------------------------------------------------------- /bert_leveldb/run_classifier_single_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bert_leveldb/run_classifier_single_gpu.sh -------------------------------------------------------------------------------- /bmn/BMN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/BMN.png -------------------------------------------------------------------------------- /bmn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/README.md -------------------------------------------------------------------------------- /bmn/bmn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/bmn.yaml -------------------------------------------------------------------------------- /bmn/bmn_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/bmn_metric.py -------------------------------------------------------------------------------- /bmn/bmn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/bmn_utils.py -------------------------------------------------------------------------------- /bmn/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/config_utils.py -------------------------------------------------------------------------------- /bmn/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/eval.py -------------------------------------------------------------------------------- /bmn/eval_anet_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/eval_anet_prop.py -------------------------------------------------------------------------------- /bmn/infer.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/infer.list -------------------------------------------------------------------------------- /bmn/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/modeling.py -------------------------------------------------------------------------------- /bmn/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/predict.py -------------------------------------------------------------------------------- /bmn/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/reader.py -------------------------------------------------------------------------------- /bmn/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/run.sh -------------------------------------------------------------------------------- /bmn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/bmn/train.py -------------------------------------------------------------------------------- /cyclegan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/README.md -------------------------------------------------------------------------------- /cyclegan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclegan/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/check.py -------------------------------------------------------------------------------- /cyclegan/cyclegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/cyclegan.py -------------------------------------------------------------------------------- /cyclegan/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/data.py -------------------------------------------------------------------------------- /cyclegan/image/A2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/image/A2B.png -------------------------------------------------------------------------------- /cyclegan/image/B2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/image/B2A.png -------------------------------------------------------------------------------- /cyclegan/image/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/image/net.png -------------------------------------------------------------------------------- /cyclegan/image/testA/123_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/image/testA/123_A.jpg -------------------------------------------------------------------------------- /cyclegan/image/testB/78_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/image/testB/78_B.jpg -------------------------------------------------------------------------------- /cyclegan/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/infer.py -------------------------------------------------------------------------------- /cyclegan/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/layers.py -------------------------------------------------------------------------------- /cyclegan/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/test.py -------------------------------------------------------------------------------- /cyclegan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/cyclegan/train.py -------------------------------------------------------------------------------- /handwritten_number_recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/handwritten_number_recognition/README.md -------------------------------------------------------------------------------- /handwritten_number_recognition/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/handwritten_number_recognition/mnist.py -------------------------------------------------------------------------------- /image/hapi_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image/hapi_gif.gif -------------------------------------------------------------------------------- /image/hapi_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image/hapi_transform.png -------------------------------------------------------------------------------- /image/new_hapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image/new_hapi.png -------------------------------------------------------------------------------- /image/paddlevision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image/paddlevision.png -------------------------------------------------------------------------------- /image_classification/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/README.MD -------------------------------------------------------------------------------- /image_classification/imagenet_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/imagenet_dataset.py -------------------------------------------------------------------------------- /image_classification/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/main.py -------------------------------------------------------------------------------- /image_classification/scripts/mobilenet_v1_x1.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/mobilenet_v1_x1.0.sh -------------------------------------------------------------------------------- /image_classification/scripts/mobilenet_v2_x1.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/mobilenet_v2_x1.0.sh -------------------------------------------------------------------------------- /image_classification/scripts/resnet101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/resnet101.sh -------------------------------------------------------------------------------- /image_classification/scripts/resnet152.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/resnet152.sh -------------------------------------------------------------------------------- /image_classification/scripts/resnet18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/resnet18.sh -------------------------------------------------------------------------------- /image_classification/scripts/resnet34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/resnet34.sh -------------------------------------------------------------------------------- /image_classification/scripts/resnet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/resnet50.sh -------------------------------------------------------------------------------- /image_classification/scripts/vgg16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/image_classification/scripts/vgg16.sh -------------------------------------------------------------------------------- /ocr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/README.md -------------------------------------------------------------------------------- /ocr/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/data.py -------------------------------------------------------------------------------- /ocr/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/eval.py -------------------------------------------------------------------------------- /ocr/images/112_chubbiness_13557.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/images/112_chubbiness_13557.jpg -------------------------------------------------------------------------------- /ocr/images/177_Interfiled_40185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/images/177_Interfiled_40185.jpg -------------------------------------------------------------------------------- /ocr/images/325_dame_19109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/images/325_dame_19109.jpg -------------------------------------------------------------------------------- /ocr/images/368_fixtures_29232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/images/368_fixtures_29232.jpg -------------------------------------------------------------------------------- /ocr/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/predict.py -------------------------------------------------------------------------------- /ocr/seq2seq_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/seq2seq_attn.py -------------------------------------------------------------------------------- /ocr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/train.py -------------------------------------------------------------------------------- /ocr/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/ocr/utility.py -------------------------------------------------------------------------------- /sentiment_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sentiment_classification/README.md -------------------------------------------------------------------------------- /sentiment_classification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sentiment_classification/models.py -------------------------------------------------------------------------------- /sentiment_classification/senta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sentiment_classification/senta.yaml -------------------------------------------------------------------------------- /sentiment_classification/sentiment_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sentiment_classification/sentiment_classifier.py -------------------------------------------------------------------------------- /seq2seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/README.md -------------------------------------------------------------------------------- /seq2seq/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/args.py -------------------------------------------------------------------------------- /seq2seq/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/download.py -------------------------------------------------------------------------------- /seq2seq/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/predict.py -------------------------------------------------------------------------------- /seq2seq/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/reader.py -------------------------------------------------------------------------------- /seq2seq/seq2seq_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/seq2seq_attn.py -------------------------------------------------------------------------------- /seq2seq/seq2seq_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/seq2seq_base.py -------------------------------------------------------------------------------- /seq2seq/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/train.py -------------------------------------------------------------------------------- /seq2seq/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/seq2seq/utility.py -------------------------------------------------------------------------------- /sequence_tagging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/README.md -------------------------------------------------------------------------------- /sequence_tagging/conf/q2b.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/conf/q2b.dic -------------------------------------------------------------------------------- /sequence_tagging/conf/tag.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/conf/tag.dic -------------------------------------------------------------------------------- /sequence_tagging/conf/word.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/conf/word.dic -------------------------------------------------------------------------------- /sequence_tagging/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/downloads.py -------------------------------------------------------------------------------- /sequence_tagging/downloads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/downloads.sh -------------------------------------------------------------------------------- /sequence_tagging/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/eval.py -------------------------------------------------------------------------------- /sequence_tagging/images/gru-crf-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/images/gru-crf-model.png -------------------------------------------------------------------------------- /sequence_tagging/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/predict.py -------------------------------------------------------------------------------- /sequence_tagging/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/reader.py -------------------------------------------------------------------------------- /sequence_tagging/sequence_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/sequence_tagging.py -------------------------------------------------------------------------------- /sequence_tagging/sequence_tagging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/sequence_tagging.yaml -------------------------------------------------------------------------------- /sequence_tagging/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/train.py -------------------------------------------------------------------------------- /sequence_tagging/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sequence_tagging/utils/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/utils/check.py -------------------------------------------------------------------------------- /sequence_tagging/utils/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/utils/configure.py -------------------------------------------------------------------------------- /sequence_tagging/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/sequence_tagging/utils/metrics.py -------------------------------------------------------------------------------- /style-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/README.md -------------------------------------------------------------------------------- /style-transfer/images/Starry-Night-by-Vincent-Van-Gogh-painting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/Starry-Night-by-Vincent-Van-Gogh-painting.jpg -------------------------------------------------------------------------------- /style-transfer/images/chicago_cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/chicago_cropped.jpg -------------------------------------------------------------------------------- /style-transfer/images/janelle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/janelle.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/img1.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/img2.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_10_1.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_1.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_11.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_13.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_15.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_17.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_19.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_3.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_5.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_7.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_20_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_20_9.png -------------------------------------------------------------------------------- /style-transfer/images/markdown/output_21_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/images/markdown/output_21_1.png -------------------------------------------------------------------------------- /style-transfer/style-transfer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/style-transfer.ipynb -------------------------------------------------------------------------------- /style-transfer/style_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/style-transfer/style_transfer.py -------------------------------------------------------------------------------- /transformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/README.md -------------------------------------------------------------------------------- /transformer/gen_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/gen_data.sh -------------------------------------------------------------------------------- /transformer/images/multi_head_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/images/multi_head_attention.png -------------------------------------------------------------------------------- /transformer/images/transformer_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/images/transformer_network.png -------------------------------------------------------------------------------- /transformer/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/predict.py -------------------------------------------------------------------------------- /transformer/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/reader.py -------------------------------------------------------------------------------- /transformer/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/train.py -------------------------------------------------------------------------------- /transformer/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/transformer.py -------------------------------------------------------------------------------- /transformer/transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/transformer.yaml -------------------------------------------------------------------------------- /transformer/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformer/utils/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/utils/check.py -------------------------------------------------------------------------------- /transformer/utils/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/transformer/utils/configure.py -------------------------------------------------------------------------------- /tsm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/README.md -------------------------------------------------------------------------------- /tsm/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/check.py -------------------------------------------------------------------------------- /tsm/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/dataset/README.md -------------------------------------------------------------------------------- /tsm/dataset/kinetics/generate_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/dataset/kinetics/generate_label.py -------------------------------------------------------------------------------- /tsm/dataset/kinetics/video2pkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/dataset/kinetics/video2pkl.py -------------------------------------------------------------------------------- /tsm/images/temporal_shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/images/temporal_shift.png -------------------------------------------------------------------------------- /tsm/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/infer.py -------------------------------------------------------------------------------- /tsm/kinetics_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/kinetics_dataset.py -------------------------------------------------------------------------------- /tsm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/main.py -------------------------------------------------------------------------------- /tsm/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/modeling.py -------------------------------------------------------------------------------- /tsm/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/transforms.py -------------------------------------------------------------------------------- /tsm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/tsm/utils.py -------------------------------------------------------------------------------- /yolov3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/.gitignore -------------------------------------------------------------------------------- /yolov3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/README.md -------------------------------------------------------------------------------- /yolov3/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/coco.py -------------------------------------------------------------------------------- /yolov3/coco_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/coco_metric.py -------------------------------------------------------------------------------- /yolov3/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/darknet.py -------------------------------------------------------------------------------- /yolov3/dataset/download_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/dataset/download_voc.py -------------------------------------------------------------------------------- /yolov3/image/YOLOv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/image/YOLOv3.jpg -------------------------------------------------------------------------------- /yolov3/image/YOLOv3_structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/image/YOLOv3_structure.jpg -------------------------------------------------------------------------------- /yolov3/image/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/image/dog.jpg -------------------------------------------------------------------------------- /yolov3/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/infer.py -------------------------------------------------------------------------------- /yolov3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/main.py -------------------------------------------------------------------------------- /yolov3/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/modeling.py -------------------------------------------------------------------------------- /yolov3/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/transforms.py -------------------------------------------------------------------------------- /yolov3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/utils.py -------------------------------------------------------------------------------- /yolov3/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/hapi/HEAD/yolov3/visualizer.py --------------------------------------------------------------------------------