gitextract_qo9m5qrb/ ├── .gitignore ├── LICENSE ├── README.md ├── note1/ │ ├── README.md │ └── test_paddle.py ├── note10/ │ ├── README.md │ ├── mobilenet_v2.py │ ├── test_visualdl.py │ └── train.py ├── note11/ │ ├── README.md │ ├── create_data_list.py │ ├── download_image.py │ ├── infer.py │ ├── mobilenet_v1.py │ ├── reader.py │ └── train.py ├── note12/ │ ├── README.md │ ├── bilstm_net.py │ ├── create_data.py │ ├── download_text_data.py │ ├── infer.py │ ├── text_reader.py │ └── train.py ├── note13/ │ ├── README.md │ ├── image_reader.py │ ├── infer.py │ └── train.py ├── note14/ │ ├── README.md │ ├── index.html │ └── paddle_server.py ├── note15/ │ ├── .gitignore │ ├── README.md │ ├── app/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── assets/ │ │ │ └── infer_model/ │ │ │ ├── __model__ │ │ │ ├── batch_norm_0.b_0 │ │ │ ├── batch_norm_0.w_0 │ │ │ ├── batch_norm_0.w_1 │ │ │ ├── batch_norm_0.w_2 │ │ │ ├── batch_norm_1.b_0 │ │ │ ├── batch_norm_1.w_0 │ │ │ ├── batch_norm_1.w_1 │ │ │ ├── batch_norm_1.w_2 │ │ │ ├── batch_norm_10.b_0 │ │ │ ├── batch_norm_10.w_0 │ │ │ ├── batch_norm_10.w_1 │ │ │ ├── batch_norm_10.w_2 │ │ │ ├── batch_norm_11.b_0 │ │ │ ├── batch_norm_11.w_0 │ │ │ ├── batch_norm_11.w_1 │ │ │ ├── batch_norm_11.w_2 │ │ │ ├── batch_norm_12.b_0 │ │ │ ├── batch_norm_12.w_0 │ │ │ ├── batch_norm_12.w_1 │ │ │ ├── batch_norm_12.w_2 │ │ │ ├── batch_norm_13.b_0 │ │ │ ├── batch_norm_13.w_0 │ │ │ ├── batch_norm_13.w_1 │ │ │ ├── batch_norm_13.w_2 │ │ │ ├── batch_norm_14.b_0 │ │ │ ├── batch_norm_14.w_0 │ │ │ ├── batch_norm_14.w_1 │ │ │ ├── batch_norm_14.w_2 │ │ │ ├── batch_norm_15.b_0 │ │ │ ├── batch_norm_15.w_0 │ │ │ ├── batch_norm_15.w_1 │ │ │ ├── batch_norm_15.w_2 │ │ │ ├── batch_norm_16.b_0 │ │ │ ├── batch_norm_16.w_0 │ │ │ ├── batch_norm_16.w_1 │ │ │ ├── batch_norm_16.w_2 │ │ │ ├── batch_norm_17.b_0 │ │ │ ├── batch_norm_17.w_0 │ │ │ ├── batch_norm_17.w_1 │ │ │ ├── batch_norm_17.w_2 │ │ │ ├── batch_norm_18.b_0 │ │ │ ├── batch_norm_18.w_0 │ │ │ ├── batch_norm_18.w_1 │ │ │ ├── batch_norm_18.w_2 │ │ │ ├── batch_norm_19.b_0 │ │ │ ├── batch_norm_19.w_0 │ │ │ ├── batch_norm_19.w_1 │ │ │ ├── batch_norm_19.w_2 │ │ │ ├── batch_norm_2.b_0 │ │ │ ├── batch_norm_2.w_0 │ │ │ ├── batch_norm_2.w_1 │ │ │ ├── batch_norm_2.w_2 │ │ │ ├── batch_norm_20.b_0 │ │ │ ├── batch_norm_20.w_0 │ │ │ ├── batch_norm_20.w_1 │ │ │ ├── batch_norm_20.w_2 │ │ │ ├── batch_norm_21.b_0 │ │ │ ├── batch_norm_21.w_0 │ │ │ ├── batch_norm_21.w_1 │ │ │ ├── batch_norm_21.w_2 │ │ │ ├── batch_norm_22.b_0 │ │ │ ├── batch_norm_22.w_0 │ │ │ ├── batch_norm_22.w_1 │ │ │ ├── batch_norm_22.w_2 │ │ │ ├── batch_norm_23.b_0 │ │ │ ├── batch_norm_23.w_0 │ │ │ ├── batch_norm_23.w_1 │ │ │ ├── batch_norm_23.w_2 │ │ │ ├── batch_norm_24.b_0 │ │ │ ├── batch_norm_24.w_0 │ │ │ ├── batch_norm_24.w_1 │ │ │ ├── batch_norm_24.w_2 │ │ │ ├── batch_norm_25.b_0 │ │ │ ├── batch_norm_25.w_0 │ │ │ ├── batch_norm_25.w_1 │ │ │ ├── batch_norm_25.w_2 │ │ │ ├── batch_norm_26.b_0 │ │ │ ├── batch_norm_26.w_0 │ │ │ ├── batch_norm_26.w_1 │ │ │ ├── batch_norm_26.w_2 │ │ │ ├── batch_norm_3.b_0 │ │ │ ├── batch_norm_3.w_0 │ │ │ ├── batch_norm_3.w_1 │ │ │ ├── batch_norm_3.w_2 │ │ │ ├── batch_norm_4.b_0 │ │ │ ├── batch_norm_4.w_0 │ │ │ ├── batch_norm_4.w_1 │ │ │ ├── batch_norm_4.w_2 │ │ │ ├── batch_norm_5.b_0 │ │ │ ├── batch_norm_5.w_0 │ │ │ ├── batch_norm_5.w_1 │ │ │ ├── batch_norm_5.w_2 │ │ │ ├── batch_norm_6.b_0 │ │ │ ├── batch_norm_6.w_0 │ │ │ ├── batch_norm_6.w_1 │ │ │ ├── batch_norm_6.w_2 │ │ │ ├── batch_norm_7.b_0 │ │ │ ├── batch_norm_7.w_0 │ │ │ ├── batch_norm_7.w_1 │ │ │ ├── batch_norm_7.w_2 │ │ │ ├── batch_norm_8.b_0 │ │ │ ├── batch_norm_8.w_0 │ │ │ ├── batch_norm_8.w_1 │ │ │ ├── batch_norm_8.w_2 │ │ │ ├── batch_norm_9.b_0 │ │ │ ├── batch_norm_9.w_0 │ │ │ ├── batch_norm_9.w_1 │ │ │ ├── batch_norm_9.w_2 │ │ │ ├── conv2d_0.w_0 │ │ │ ├── conv2d_1.w_0 │ │ │ ├── conv2d_10.w_0 │ │ │ ├── conv2d_11.w_0 │ │ │ ├── conv2d_12.w_0 │ │ │ ├── conv2d_13.w_0 │ │ │ ├── conv2d_2.w_0 │ │ │ ├── conv2d_3.w_0 │ │ │ ├── conv2d_4.w_0 │ │ │ ├── conv2d_5.w_0 │ │ │ ├── conv2d_6.w_0 │ │ │ ├── conv2d_7.w_0 │ │ │ ├── conv2d_8.w_0 │ │ │ ├── conv2d_9.w_0 │ │ │ ├── depthwise_conv2d_0.w_0 │ │ │ ├── depthwise_conv2d_1.w_0 │ │ │ ├── depthwise_conv2d_10.w_0 │ │ │ ├── depthwise_conv2d_11.w_0 │ │ │ ├── depthwise_conv2d_12.w_0 │ │ │ ├── depthwise_conv2d_2.w_0 │ │ │ ├── depthwise_conv2d_3.w_0 │ │ │ ├── depthwise_conv2d_4.w_0 │ │ │ ├── depthwise_conv2d_5.w_0 │ │ │ ├── depthwise_conv2d_6.w_0 │ │ │ ├── depthwise_conv2d_7.w_0 │ │ │ ├── depthwise_conv2d_8.w_0 │ │ │ ├── depthwise_conv2d_9.w_0 │ │ │ ├── fc_0.b_0 │ │ │ └── fc_0.w_0 │ │ ├── java/ │ │ │ └── com/ │ │ │ ├── baidu/ │ │ │ │ └── paddle/ │ │ │ │ └── PML.java │ │ │ └── yeyupiaoling/ │ │ │ └── note15/ │ │ │ ├── MainActivity.java │ │ │ └── Utils.java │ │ └── res/ │ │ ├── drawable/ │ │ │ └── ic_launcher_background.xml │ │ ├── drawable-v24/ │ │ │ └── ic_launcher_foreground.xml │ │ ├── layout/ │ │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26/ │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ └── values/ │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── note2/ │ ├── README.md │ ├── constant_sum.py │ └── variable_sum.py ├── note3/ │ ├── README.md │ ├── linear_regression.py │ └── uci_housing_linear.py ├── note4/ │ ├── README.md │ └── mnist_classification.py ├── note5/ │ ├── README.md │ └── text_classification.py ├── note6/ │ ├── GAN.py │ └── README.md ├── note7/ │ ├── DQN.py │ └── README.md ├── note8/ │ ├── README.md │ ├── save_infer_model.py │ ├── save_use_params_model.py │ ├── save_use_persistables_model.py │ └── use_infer_model.py ├── note9/ │ ├── README.md │ ├── pretrain_model.py │ └── train.py └── requirements.txt