├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README_CN.md ├── applications ├── README.md ├── README_CN.md ├── credit_risk_analysis │ ├── config.toml │ ├── credit_risk.py │ ├── introduction_cn.ipynb │ └── introduction_en.ipynb ├── deuteron_binding_energy │ ├── config.toml │ ├── deuteron_binding_energy.py │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ └── utils.py ├── handwritten_digits_classification │ ├── data_0.png │ ├── example.toml │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── mnist_example.png │ ├── test.toml │ ├── train.toml │ ├── vsql.pdparams │ ├── vsql_classification.py │ ├── vsql_model.png │ ├── vsql_pipeline_cn.png │ └── vsql_pipeline_en.png ├── handwritten_digits_generation │ ├── gen_pics │ │ └── qcaan_generated_vs_original_20230313.png │ ├── inference.toml │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── params │ │ ├── params_G_epoch20.pdparams │ │ └── params_qnn_epoch20.pdparams │ ├── qcaan_generation.py │ ├── qcaan_model.png │ └── train.toml ├── intent_classification │ ├── bert_qtc_arch.png │ ├── decoder.pdparams │ ├── example.toml │ ├── intent_classification.py │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── smp_data │ │ ├── class.txt │ │ ├── dev.txt │ │ ├── test.txt │ │ └── train.txt │ ├── test.toml │ └── train.toml ├── linear_solver │ ├── A.npy │ ├── answer.npy │ ├── b.npy │ ├── config.toml │ ├── example.toml │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── vqls.png │ └── vqls.py ├── lithium_ion_battery │ ├── config.toml │ ├── energy_material.py │ ├── example.toml │ ├── introduction_cn.ipynb │ └── introduction_en.ipynb ├── medical_image_classification │ ├── example.toml │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── med_image_example.png │ ├── medical_image │ │ ├── breastmnist.npz │ │ ├── get_test_image.ipynb │ │ ├── image_label_0.png │ │ ├── image_label_1.png │ │ ├── pneumoniamnist.npz │ │ └── test_image_1_0.npz │ ├── qnn_medical_image.py │ ├── qnnmic.pdparams │ ├── qnnmic_model_cn.png │ ├── qnnmic_model_en.png │ ├── test.toml │ └── train.toml ├── option_pricing │ ├── config.toml │ ├── euro_pricing.py │ ├── introduction_cn.ipynb │ └── introduction_en.ipynb ├── portfolio_optimization │ ├── config.toml │ ├── demo_stock.csv │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ └── qpo.py ├── power_flow │ ├── config.toml │ ├── example.toml │ ├── ieee5cdf.txt │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ └── power_flow.py ├── protein_folding │ ├── APRLRFY_3d_structure.jpg │ ├── config.toml │ ├── folding_protein.py │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── lattice_model_demo.jpg │ └── lattice_model_en.jpg ├── quality_detection │ ├── SurfaceCrack │ │ ├── test_data │ │ │ ├── Negative │ │ │ │ ├── 00401.jpg │ │ │ │ ├── 00402.jpg │ │ │ │ ├── 00403.jpg │ │ │ │ ├── 00404.jpg │ │ │ │ ├── 00405.jpg │ │ │ │ ├── 00406.jpg │ │ │ │ ├── 00407.jpg │ │ │ │ ├── 00408.jpg │ │ │ │ ├── 00409.jpg │ │ │ │ ├── 00410.jpg │ │ │ │ ├── 00411.jpg │ │ │ │ ├── 00412.jpg │ │ │ │ ├── 00413.jpg │ │ │ │ ├── 00414.jpg │ │ │ │ ├── 00415.jpg │ │ │ │ ├── 00416.jpg │ │ │ │ ├── 00417.jpg │ │ │ │ ├── 00418.jpg │ │ │ │ ├── 00419.jpg │ │ │ │ ├── 00420.jpg │ │ │ │ ├── 00421.jpg │ │ │ │ ├── 00422.jpg │ │ │ │ ├── 00423.jpg │ │ │ │ ├── 00424.jpg │ │ │ │ ├── 00425.jpg │ │ │ │ ├── 00426.jpg │ │ │ │ ├── 00427.jpg │ │ │ │ ├── 00428.jpg │ │ │ │ ├── 00429.jpg │ │ │ │ ├── 00430.jpg │ │ │ │ ├── 00431.jpg │ │ │ │ ├── 00432.jpg │ │ │ │ ├── 00433.jpg │ │ │ │ ├── 00434.jpg │ │ │ │ ├── 00435.jpg │ │ │ │ ├── 00436.jpg │ │ │ │ ├── 00437.jpg │ │ │ │ ├── 00438.jpg │ │ │ │ ├── 00439.jpg │ │ │ │ ├── 00440.jpg │ │ │ │ ├── 00441.jpg │ │ │ │ ├── 00442.jpg │ │ │ │ ├── 00443.jpg │ │ │ │ ├── 00444.jpg │ │ │ │ ├── 00445.jpg │ │ │ │ ├── 00446.jpg │ │ │ │ ├── 00447.jpg │ │ │ │ ├── 00448.jpg │ │ │ │ ├── 00449.jpg │ │ │ │ ├── 00450.jpg │ │ │ │ ├── 00451.jpg │ │ │ │ ├── 00452.jpg │ │ │ │ ├── 00453.jpg │ │ │ │ ├── 00454.jpg │ │ │ │ ├── 00455.jpg │ │ │ │ ├── 00456.jpg │ │ │ │ ├── 00457.jpg │ │ │ │ ├── 00458.jpg │ │ │ │ ├── 00459.jpg │ │ │ │ ├── 00460.jpg │ │ │ │ ├── 00461.jpg │ │ │ │ ├── 00462.jpg │ │ │ │ ├── 00463.jpg │ │ │ │ ├── 00464.jpg │ │ │ │ ├── 00465.jpg │ │ │ │ ├── 00466.jpg │ │ │ │ ├── 00467.jpg │ │ │ │ ├── 00468.jpg │ │ │ │ ├── 00469.jpg │ │ │ │ ├── 00470.jpg │ │ │ │ ├── 00471.jpg │ │ │ │ ├── 00472.jpg │ │ │ │ ├── 00473.jpg │ │ │ │ ├── 00474.jpg │ │ │ │ ├── 00475.jpg │ │ │ │ ├── 00476.jpg │ │ │ │ ├── 00477.jpg │ │ │ │ ├── 00478.jpg │ │ │ │ ├── 00479.jpg │ │ │ │ ├── 00480.jpg │ │ │ │ ├── 00481.jpg │ │ │ │ ├── 00482.jpg │ │ │ │ ├── 00483.jpg │ │ │ │ ├── 00484.jpg │ │ │ │ ├── 00485.jpg │ │ │ │ ├── 00486.jpg │ │ │ │ ├── 00487.jpg │ │ │ │ ├── 00488.jpg │ │ │ │ ├── 00489.jpg │ │ │ │ ├── 00490.jpg │ │ │ │ ├── 00491.jpg │ │ │ │ ├── 00492.jpg │ │ │ │ ├── 00493.jpg │ │ │ │ ├── 00494.jpg │ │ │ │ ├── 00495.jpg │ │ │ │ ├── 00496.jpg │ │ │ │ ├── 00497.jpg │ │ │ │ ├── 00498.jpg │ │ │ │ ├── 00499.jpg │ │ │ │ └── 00500.jpg │ │ │ └── Positive │ │ │ │ ├── 00401.jpg │ │ │ │ ├── 00402.jpg │ │ │ │ ├── 00403.jpg │ │ │ │ ├── 00404.jpg │ │ │ │ ├── 00405.jpg │ │ │ │ ├── 00406.jpg │ │ │ │ ├── 00407.jpg │ │ │ │ ├── 00408.jpg │ │ │ │ ├── 00409.jpg │ │ │ │ ├── 00410.jpg │ │ │ │ ├── 00411.jpg │ │ │ │ ├── 00412.jpg │ │ │ │ ├── 00413.jpg │ │ │ │ ├── 00414.jpg │ │ │ │ ├── 00415.jpg │ │ │ │ ├── 00416.jpg │ │ │ │ ├── 00417.jpg │ │ │ │ ├── 00418.jpg │ │ │ │ ├── 00419.jpg │ │ │ │ ├── 00420.jpg │ │ │ │ ├── 00421.jpg │ │ │ │ ├── 00422.jpg │ │ │ │ ├── 00423.jpg │ │ │ │ ├── 00424.jpg │ │ │ │ ├── 00425.jpg │ │ │ │ ├── 00426.jpg │ │ │ │ ├── 00427.jpg │ │ │ │ ├── 00428.jpg │ │ │ │ ├── 00429.jpg │ │ │ │ ├── 00430.jpg │ │ │ │ ├── 00431.jpg │ │ │ │ ├── 00432.jpg │ │ │ │ ├── 00433.jpg │ │ │ │ ├── 00434.jpg │ │ │ │ ├── 00435.jpg │ │ │ │ ├── 00436.jpg │ │ │ │ ├── 00437.jpg │ │ │ │ ├── 00438.jpg │ │ │ │ ├── 00439.jpg │ │ │ │ ├── 00440.jpg │ │ │ │ ├── 00441.jpg │ │ │ │ ├── 00442.jpg │ │ │ │ ├── 00443.jpg │ │ │ │ ├── 00444.jpg │ │ │ │ ├── 00445.jpg │ │ │ │ ├── 00446.jpg │ │ │ │ ├── 00447.jpg │ │ │ │ ├── 00448.jpg │ │ │ │ ├── 00449.jpg │ │ │ │ ├── 00450.jpg │ │ │ │ ├── 00451.jpg │ │ │ │ ├── 00452.jpg │ │ │ │ ├── 00453.jpg │ │ │ │ ├── 00454.jpg │ │ │ │ ├── 00455.jpg │ │ │ │ ├── 00456.jpg │ │ │ │ ├── 00457.jpg │ │ │ │ ├── 00458.jpg │ │ │ │ ├── 00459.jpg │ │ │ │ ├── 00460.jpg │ │ │ │ ├── 00461.jpg │ │ │ │ ├── 00462.jpg │ │ │ │ ├── 00463.jpg │ │ │ │ ├── 00464.jpg │ │ │ │ ├── 00465.jpg │ │ │ │ ├── 00466.jpg │ │ │ │ ├── 00467.jpg │ │ │ │ ├── 00468.jpg │ │ │ │ ├── 00469.jpg │ │ │ │ ├── 00470.jpg │ │ │ │ ├── 00471.jpg │ │ │ │ ├── 00472.jpg │ │ │ │ ├── 00473.jpg │ │ │ │ ├── 00474.jpg │ │ │ │ ├── 00475.jpg │ │ │ │ ├── 00476.jpg │ │ │ │ ├── 00477.jpg │ │ │ │ ├── 00478.jpg │ │ │ │ ├── 00479.jpg │ │ │ │ ├── 00480.jpg │ │ │ │ ├── 00481.jpg │ │ │ │ ├── 00482.jpg │ │ │ │ ├── 00483.jpg │ │ │ │ ├── 00484.jpg │ │ │ │ ├── 00485.jpg │ │ │ │ ├── 00486.jpg │ │ │ │ ├── 00487.jpg │ │ │ │ ├── 00488.jpg │ │ │ │ ├── 00489.jpg │ │ │ │ ├── 00490.jpg │ │ │ │ ├── 00491.jpg │ │ │ │ ├── 00492.jpg │ │ │ │ ├── 00493.jpg │ │ │ │ ├── 00494.jpg │ │ │ │ ├── 00495.jpg │ │ │ │ ├── 00496.jpg │ │ │ │ ├── 00497.jpg │ │ │ │ ├── 00498.jpg │ │ │ │ ├── 00499.jpg │ │ │ │ └── 00500.jpg │ │ ├── training_data │ │ │ ├── Negative │ │ │ │ ├── 00001.jpg │ │ │ │ ├── 00002.jpg │ │ │ │ ├── 00003.jpg │ │ │ │ ├── 00004.jpg │ │ │ │ ├── 00005.jpg │ │ │ │ ├── 00006.jpg │ │ │ │ ├── 00007.jpg │ │ │ │ ├── 00008.jpg │ │ │ │ ├── 00009.jpg │ │ │ │ ├── 00010.jpg │ │ │ │ ├── 00011.jpg │ │ │ │ ├── 00012.jpg │ │ │ │ ├── 00013.jpg │ │ │ │ ├── 00014.jpg │ │ │ │ ├── 00015.jpg │ │ │ │ ├── 00016.jpg │ │ │ │ ├── 00017.jpg │ │ │ │ ├── 00018.jpg │ │ │ │ ├── 00019.jpg │ │ │ │ ├── 00020.jpg │ │ │ │ ├── 00021.jpg │ │ │ │ ├── 00022.jpg │ │ │ │ ├── 00023.jpg │ │ │ │ ├── 00024.jpg │ │ │ │ ├── 00025.jpg │ │ │ │ ├── 00026.jpg │ │ │ │ ├── 00027.jpg │ │ │ │ ├── 00028.jpg │ │ │ │ ├── 00029.jpg │ │ │ │ ├── 00030.jpg │ │ │ │ ├── 00031.jpg │ │ │ │ ├── 00032.jpg │ │ │ │ ├── 00033.jpg │ │ │ │ ├── 00034.jpg │ │ │ │ ├── 00035.jpg │ │ │ │ ├── 00036.jpg │ │ │ │ ├── 00037.jpg │ │ │ │ ├── 00038.jpg │ │ │ │ ├── 00039.jpg │ │ │ │ ├── 00040.jpg │ │ │ │ ├── 00041.jpg │ │ │ │ ├── 00042.jpg │ │ │ │ ├── 00043.jpg │ │ │ │ ├── 00044.jpg │ │ │ │ ├── 00045.jpg │ │ │ │ ├── 00046.jpg │ │ │ │ ├── 00047.jpg │ │ │ │ ├── 00048.jpg │ │ │ │ ├── 00049.jpg │ │ │ │ ├── 00050.jpg │ │ │ │ ├── 00051.jpg │ │ │ │ ├── 00052.jpg │ │ │ │ ├── 00053.jpg │ │ │ │ ├── 00054.jpg │ │ │ │ ├── 00055.jpg │ │ │ │ ├── 00056.jpg │ │ │ │ ├── 00057.jpg │ │ │ │ ├── 00058.jpg │ │ │ │ ├── 00059.jpg │ │ │ │ ├── 00060.jpg │ │ │ │ ├── 00061.jpg │ │ │ │ ├── 00062.jpg │ │ │ │ ├── 00063.jpg │ │ │ │ ├── 00064.jpg │ │ │ │ ├── 00065.jpg │ │ │ │ ├── 00066.jpg │ │ │ │ ├── 00067.jpg │ │ │ │ ├── 00068.jpg │ │ │ │ ├── 00069.jpg │ │ │ │ ├── 00070.jpg │ │ │ │ ├── 00071.jpg │ │ │ │ ├── 00072.jpg │ │ │ │ ├── 00073.jpg │ │ │ │ ├── 00074.jpg │ │ │ │ ├── 00075.jpg │ │ │ │ ├── 00076.jpg │ │ │ │ ├── 00077.jpg │ │ │ │ ├── 00078.jpg │ │ │ │ ├── 00079.jpg │ │ │ │ ├── 00080.jpg │ │ │ │ ├── 00081.jpg │ │ │ │ ├── 00082.jpg │ │ │ │ ├── 00083.jpg │ │ │ │ ├── 00084.jpg │ │ │ │ ├── 00085.jpg │ │ │ │ ├── 00086.jpg │ │ │ │ ├── 00087.jpg │ │ │ │ ├── 00088.jpg │ │ │ │ ├── 00089.jpg │ │ │ │ ├── 00090.jpg │ │ │ │ ├── 00091.jpg │ │ │ │ ├── 00092.jpg │ │ │ │ ├── 00093.jpg │ │ │ │ ├── 00094.jpg │ │ │ │ ├── 00095.jpg │ │ │ │ ├── 00096.jpg │ │ │ │ ├── 00097.jpg │ │ │ │ ├── 00098.jpg │ │ │ │ ├── 00099.jpg │ │ │ │ ├── 00100.jpg │ │ │ │ ├── 00101.jpg │ │ │ │ ├── 00102.jpg │ │ │ │ ├── 00103.jpg │ │ │ │ ├── 00104.jpg │ │ │ │ ├── 00105.jpg │ │ │ │ ├── 00106.jpg │ │ │ │ ├── 00107.jpg │ │ │ │ ├── 00108.jpg │ │ │ │ ├── 00109.jpg │ │ │ │ ├── 00110.jpg │ │ │ │ ├── 00111.jpg │ │ │ │ ├── 00112.jpg │ │ │ │ ├── 00113.jpg │ │ │ │ ├── 00114.jpg │ │ │ │ ├── 00115.jpg │ │ │ │ ├── 00116.jpg │ │ │ │ ├── 00117.jpg │ │ │ │ ├── 00118.jpg │ │ │ │ ├── 00119.jpg │ │ │ │ ├── 00120.jpg │ │ │ │ ├── 00121.jpg │ │ │ │ ├── 00122.jpg │ │ │ │ ├── 00123.jpg │ │ │ │ ├── 00124.jpg │ │ │ │ ├── 00125.jpg │ │ │ │ ├── 00126.jpg │ │ │ │ ├── 00127.jpg │ │ │ │ ├── 00128.jpg │ │ │ │ ├── 00129.jpg │ │ │ │ ├── 00130.jpg │ │ │ │ ├── 00131.jpg │ │ │ │ ├── 00132.jpg │ │ │ │ ├── 00133.jpg │ │ │ │ ├── 00134.jpg │ │ │ │ ├── 00135.jpg │ │ │ │ ├── 00136.jpg │ │ │ │ ├── 00137.jpg │ │ │ │ ├── 00138.jpg │ │ │ │ ├── 00139.jpg │ │ │ │ ├── 00140.jpg │ │ │ │ ├── 00141.jpg │ │ │ │ ├── 00142.jpg │ │ │ │ ├── 00143.jpg │ │ │ │ ├── 00144.jpg │ │ │ │ ├── 00145.jpg │ │ │ │ ├── 00146.jpg │ │ │ │ ├── 00147.jpg │ │ │ │ ├── 00148.jpg │ │ │ │ ├── 00149.jpg │ │ │ │ ├── 00150.jpg │ │ │ │ ├── 00151.jpg │ │ │ │ ├── 00152.jpg │ │ │ │ ├── 00153.jpg │ │ │ │ ├── 00154.jpg │ │ │ │ ├── 00155.jpg │ │ │ │ ├── 00156.jpg │ │ │ │ ├── 00157.jpg │ │ │ │ ├── 00158.jpg │ │ │ │ ├── 00159.jpg │ │ │ │ ├── 00160.jpg │ │ │ │ ├── 00161.jpg │ │ │ │ ├── 00162.jpg │ │ │ │ ├── 00163.jpg │ │ │ │ ├── 00164.jpg │ │ │ │ ├── 00165.jpg │ │ │ │ ├── 00166.jpg │ │ │ │ ├── 00167.jpg │ │ │ │ ├── 00168.jpg │ │ │ │ ├── 00169.jpg │ │ │ │ ├── 00170.jpg │ │ │ │ ├── 00171.jpg │ │ │ │ ├── 00172.jpg │ │ │ │ ├── 00173.jpg │ │ │ │ ├── 00174.jpg │ │ │ │ ├── 00175.jpg │ │ │ │ ├── 00176.jpg │ │ │ │ ├── 00177.jpg │ │ │ │ ├── 00178.jpg │ │ │ │ ├── 00179.jpg │ │ │ │ ├── 00180.jpg │ │ │ │ ├── 00181.jpg │ │ │ │ ├── 00182.jpg │ │ │ │ ├── 00183.jpg │ │ │ │ ├── 00184.jpg │ │ │ │ ├── 00185.jpg │ │ │ │ ├── 00186.jpg │ │ │ │ ├── 00187.jpg │ │ │ │ ├── 00188.jpg │ │ │ │ ├── 00189.jpg │ │ │ │ ├── 00190.jpg │ │ │ │ ├── 00191.jpg │ │ │ │ ├── 00192.jpg │ │ │ │ ├── 00193.jpg │ │ │ │ ├── 00194.jpg │ │ │ │ ├── 00195.jpg │ │ │ │ ├── 00196.jpg │ │ │ │ ├── 00197.jpg │ │ │ │ ├── 00198.jpg │ │ │ │ ├── 00199.jpg │ │ │ │ ├── 00200.jpg │ │ │ │ ├── 00201.jpg │ │ │ │ ├── 00202.jpg │ │ │ │ ├── 00203.jpg │ │ │ │ ├── 00204.jpg │ │ │ │ ├── 00205.jpg │ │ │ │ ├── 00206.jpg │ │ │ │ ├── 00207.jpg │ │ │ │ ├── 00208.jpg │ │ │ │ ├── 00209.jpg │ │ │ │ ├── 00210.jpg │ │ │ │ ├── 00211.jpg │ │ │ │ ├── 00212.jpg │ │ │ │ ├── 00213.jpg │ │ │ │ ├── 00214.jpg │ │ │ │ ├── 00215.jpg │ │ │ │ ├── 00216.jpg │ │ │ │ ├── 00217.jpg │ │ │ │ ├── 00218.jpg │ │ │ │ ├── 00219.jpg │ │ │ │ ├── 00220.jpg │ │ │ │ ├── 00221.jpg │ │ │ │ ├── 00222.jpg │ │ │ │ ├── 00223.jpg │ │ │ │ ├── 00224.jpg │ │ │ │ ├── 00225.jpg │ │ │ │ ├── 00226.jpg │ │ │ │ ├── 00227.jpg │ │ │ │ ├── 00228.jpg │ │ │ │ ├── 00229.jpg │ │ │ │ ├── 00230.jpg │ │ │ │ ├── 00231.jpg │ │ │ │ ├── 00232.jpg │ │ │ │ ├── 00233.jpg │ │ │ │ ├── 00234.jpg │ │ │ │ ├── 00235.jpg │ │ │ │ ├── 00236.jpg │ │ │ │ ├── 00237.jpg │ │ │ │ ├── 00238.jpg │ │ │ │ ├── 00239.jpg │ │ │ │ ├── 00240.jpg │ │ │ │ ├── 00241.jpg │ │ │ │ ├── 00242.jpg │ │ │ │ ├── 00243.jpg │ │ │ │ ├── 00244.jpg │ │ │ │ ├── 00245.jpg │ │ │ │ ├── 00246.jpg │ │ │ │ ├── 00247.jpg │ │ │ │ ├── 00248.jpg │ │ │ │ ├── 00249.jpg │ │ │ │ ├── 00250.jpg │ │ │ │ ├── 00251.jpg │ │ │ │ ├── 00252.jpg │ │ │ │ ├── 00253.jpg │ │ │ │ ├── 00254.jpg │ │ │ │ ├── 00255.jpg │ │ │ │ ├── 00256.jpg │ │ │ │ ├── 00257.jpg │ │ │ │ ├── 00258.jpg │ │ │ │ ├── 00259.jpg │ │ │ │ ├── 00260.jpg │ │ │ │ ├── 00261.jpg │ │ │ │ ├── 00262.jpg │ │ │ │ ├── 00263.jpg │ │ │ │ ├── 00264.jpg │ │ │ │ ├── 00265.jpg │ │ │ │ ├── 00266.jpg │ │ │ │ ├── 00267.jpg │ │ │ │ ├── 00268.jpg │ │ │ │ ├── 00269.jpg │ │ │ │ ├── 00270.jpg │ │ │ │ ├── 00271.jpg │ │ │ │ ├── 00272.jpg │ │ │ │ ├── 00273.jpg │ │ │ │ ├── 00274.jpg │ │ │ │ ├── 00275.jpg │ │ │ │ ├── 00276.jpg │ │ │ │ ├── 00277.jpg │ │ │ │ ├── 00278.jpg │ │ │ │ ├── 00279.jpg │ │ │ │ ├── 00280.jpg │ │ │ │ ├── 00281.jpg │ │ │ │ ├── 00282.jpg │ │ │ │ ├── 00283.jpg │ │ │ │ ├── 00284.jpg │ │ │ │ ├── 00285.jpg │ │ │ │ ├── 00286.jpg │ │ │ │ ├── 00287.jpg │ │ │ │ ├── 00288.jpg │ │ │ │ ├── 00289.jpg │ │ │ │ ├── 00290.jpg │ │ │ │ ├── 00291.jpg │ │ │ │ ├── 00292.jpg │ │ │ │ ├── 00293.jpg │ │ │ │ ├── 00294.jpg │ │ │ │ ├── 00295.jpg │ │ │ │ ├── 00296.jpg │ │ │ │ ├── 00297.jpg │ │ │ │ ├── 00298.jpg │ │ │ │ ├── 00299.jpg │ │ │ │ ├── 00300.jpg │ │ │ │ ├── 00301.jpg │ │ │ │ ├── 00302.jpg │ │ │ │ ├── 00303.jpg │ │ │ │ ├── 00304.jpg │ │ │ │ ├── 00305.jpg │ │ │ │ ├── 00306.jpg │ │ │ │ ├── 00307.jpg │ │ │ │ ├── 00308.jpg │ │ │ │ ├── 00309.jpg │ │ │ │ ├── 00310.jpg │ │ │ │ ├── 00311.jpg │ │ │ │ ├── 00312.jpg │ │ │ │ ├── 00313.jpg │ │ │ │ ├── 00314.jpg │ │ │ │ ├── 00315.jpg │ │ │ │ ├── 00316.jpg │ │ │ │ ├── 00317.jpg │ │ │ │ ├── 00318.jpg │ │ │ │ ├── 00319.jpg │ │ │ │ ├── 00320.jpg │ │ │ │ ├── 00321.jpg │ │ │ │ ├── 00322.jpg │ │ │ │ ├── 00323.jpg │ │ │ │ ├── 00324.jpg │ │ │ │ ├── 00325.jpg │ │ │ │ ├── 00326.jpg │ │ │ │ ├── 00327.jpg │ │ │ │ ├── 00328.jpg │ │ │ │ ├── 00329.jpg │ │ │ │ ├── 00330.jpg │ │ │ │ ├── 00331.jpg │ │ │ │ ├── 00332.jpg │ │ │ │ ├── 00333.jpg │ │ │ │ ├── 00334.jpg │ │ │ │ ├── 00335.jpg │ │ │ │ ├── 00336.jpg │ │ │ │ ├── 00337.jpg │ │ │ │ ├── 00338.jpg │ │ │ │ ├── 00339.jpg │ │ │ │ ├── 00340.jpg │ │ │ │ ├── 00341.jpg │ │ │ │ ├── 00342.jpg │ │ │ │ ├── 00343.jpg │ │ │ │ ├── 00344.jpg │ │ │ │ ├── 00345.jpg │ │ │ │ ├── 00346.jpg │ │ │ │ ├── 00347.jpg │ │ │ │ ├── 00348.jpg │ │ │ │ ├── 00349.jpg │ │ │ │ ├── 00350.jpg │ │ │ │ ├── 00351.jpg │ │ │ │ ├── 00352.jpg │ │ │ │ ├── 00353.jpg │ │ │ │ ├── 00354.jpg │ │ │ │ ├── 00355.jpg │ │ │ │ ├── 00356.jpg │ │ │ │ ├── 00357.jpg │ │ │ │ ├── 00358.jpg │ │ │ │ ├── 00359.jpg │ │ │ │ ├── 00360.jpg │ │ │ │ ├── 00361.jpg │ │ │ │ ├── 00362.jpg │ │ │ │ ├── 00363.jpg │ │ │ │ ├── 00364.jpg │ │ │ │ ├── 00365.jpg │ │ │ │ ├── 00366.jpg │ │ │ │ ├── 00367.jpg │ │ │ │ ├── 00368.jpg │ │ │ │ ├── 00369.jpg │ │ │ │ ├── 00370.jpg │ │ │ │ ├── 00371.jpg │ │ │ │ ├── 00372.jpg │ │ │ │ ├── 00373.jpg │ │ │ │ ├── 00374.jpg │ │ │ │ ├── 00375.jpg │ │ │ │ ├── 00376.jpg │ │ │ │ ├── 00377.jpg │ │ │ │ ├── 00378.jpg │ │ │ │ ├── 00379.jpg │ │ │ │ ├── 00380.jpg │ │ │ │ ├── 00381.jpg │ │ │ │ ├── 00382.jpg │ │ │ │ ├── 00383.jpg │ │ │ │ ├── 00384.jpg │ │ │ │ ├── 00385.jpg │ │ │ │ ├── 00386.jpg │ │ │ │ ├── 00387.jpg │ │ │ │ ├── 00388.jpg │ │ │ │ ├── 00389.jpg │ │ │ │ ├── 00390.jpg │ │ │ │ ├── 00391.jpg │ │ │ │ ├── 00392.jpg │ │ │ │ ├── 00393.jpg │ │ │ │ ├── 00394.jpg │ │ │ │ ├── 00395.jpg │ │ │ │ ├── 00396.jpg │ │ │ │ ├── 00397.jpg │ │ │ │ ├── 00398.jpg │ │ │ │ ├── 00399.jpg │ │ │ │ └── 00400.jpg │ │ │ └── Positive │ │ │ │ ├── 00001.jpg │ │ │ │ ├── 00002.jpg │ │ │ │ ├── 00003.jpg │ │ │ │ ├── 00004.jpg │ │ │ │ ├── 00005.jpg │ │ │ │ ├── 00006.jpg │ │ │ │ ├── 00007.jpg │ │ │ │ ├── 00008.jpg │ │ │ │ ├── 00009.jpg │ │ │ │ ├── 00010.jpg │ │ │ │ ├── 00011.jpg │ │ │ │ ├── 00012.jpg │ │ │ │ ├── 00013.jpg │ │ │ │ ├── 00014.jpg │ │ │ │ ├── 00015.jpg │ │ │ │ ├── 00016.jpg │ │ │ │ ├── 00017.jpg │ │ │ │ ├── 00018.jpg │ │ │ │ ├── 00019.jpg │ │ │ │ ├── 00020.jpg │ │ │ │ ├── 00021.jpg │ │ │ │ ├── 00022.jpg │ │ │ │ ├── 00023.jpg │ │ │ │ ├── 00024.jpg │ │ │ │ ├── 00025.jpg │ │ │ │ ├── 00026.jpg │ │ │ │ ├── 00027.jpg │ │ │ │ ├── 00028.jpg │ │ │ │ ├── 00029.jpg │ │ │ │ ├── 00030.jpg │ │ │ │ ├── 00031.jpg │ │ │ │ ├── 00032.jpg │ │ │ │ ├── 00033.jpg │ │ │ │ ├── 00034.jpg │ │ │ │ ├── 00035.jpg │ │ │ │ ├── 00036.jpg │ │ │ │ ├── 00037.jpg │ │ │ │ ├── 00038.jpg │ │ │ │ ├── 00039.jpg │ │ │ │ ├── 00040.jpg │ │ │ │ ├── 00041.jpg │ │ │ │ ├── 00042.jpg │ │ │ │ ├── 00043.jpg │ │ │ │ ├── 00044.jpg │ │ │ │ ├── 00045.jpg │ │ │ │ ├── 00046.jpg │ │ │ │ ├── 00047.jpg │ │ │ │ ├── 00048.jpg │ │ │ │ ├── 00049.jpg │ │ │ │ ├── 00050.jpg │ │ │ │ ├── 00051.jpg │ │ │ │ ├── 00052.jpg │ │ │ │ ├── 00053.jpg │ │ │ │ ├── 00054.jpg │ │ │ │ ├── 00055.jpg │ │ │ │ ├── 00056.jpg │ │ │ │ ├── 00057.jpg │ │ │ │ ├── 00058.jpg │ │ │ │ ├── 00059.jpg │ │ │ │ ├── 00060.jpg │ │ │ │ ├── 00061.jpg │ │ │ │ ├── 00062.jpg │ │ │ │ ├── 00063.jpg │ │ │ │ ├── 00064.jpg │ │ │ │ ├── 00065.jpg │ │ │ │ ├── 00066.jpg │ │ │ │ ├── 00067.jpg │ │ │ │ ├── 00068.jpg │ │ │ │ ├── 00069.jpg │ │ │ │ ├── 00070.jpg │ │ │ │ ├── 00071.jpg │ │ │ │ ├── 00072.jpg │ │ │ │ ├── 00073.jpg │ │ │ │ ├── 00074.jpg │ │ │ │ ├── 00075.jpg │ │ │ │ ├── 00076.jpg │ │ │ │ ├── 00077.jpg │ │ │ │ ├── 00078.jpg │ │ │ │ ├── 00079.jpg │ │ │ │ ├── 00080.jpg │ │ │ │ ├── 00081.jpg │ │ │ │ ├── 00082.jpg │ │ │ │ ├── 00083.jpg │ │ │ │ ├── 00084.jpg │ │ │ │ ├── 00085.jpg │ │ │ │ ├── 00086.jpg │ │ │ │ ├── 00087.jpg │ │ │ │ ├── 00088.jpg │ │ │ │ ├── 00089.jpg │ │ │ │ ├── 00090.jpg │ │ │ │ ├── 00091.jpg │ │ │ │ ├── 00092.jpg │ │ │ │ ├── 00093.jpg │ │ │ │ ├── 00094.jpg │ │ │ │ ├── 00095.jpg │ │ │ │ ├── 00096.jpg │ │ │ │ ├── 00097.jpg │ │ │ │ ├── 00098.jpg │ │ │ │ ├── 00099.jpg │ │ │ │ ├── 00100.jpg │ │ │ │ ├── 00101.jpg │ │ │ │ ├── 00102.jpg │ │ │ │ ├── 00103.jpg │ │ │ │ ├── 00104.jpg │ │ │ │ ├── 00105.jpg │ │ │ │ ├── 00106.jpg │ │ │ │ ├── 00107.jpg │ │ │ │ ├── 00108.jpg │ │ │ │ ├── 00109.jpg │ │ │ │ ├── 00110.jpg │ │ │ │ ├── 00111.jpg │ │ │ │ ├── 00112.jpg │ │ │ │ ├── 00113.jpg │ │ │ │ ├── 00114.jpg │ │ │ │ ├── 00115.jpg │ │ │ │ ├── 00116.jpg │ │ │ │ ├── 00117.jpg │ │ │ │ ├── 00118.jpg │ │ │ │ ├── 00119.jpg │ │ │ │ ├── 00120.jpg │ │ │ │ ├── 00121.jpg │ │ │ │ ├── 00122.jpg │ │ │ │ ├── 00123.jpg │ │ │ │ ├── 00124.jpg │ │ │ │ ├── 00125.jpg │ │ │ │ ├── 00126.jpg │ │ │ │ ├── 00127.jpg │ │ │ │ ├── 00128.jpg │ │ │ │ ├── 00129.jpg │ │ │ │ ├── 00130.jpg │ │ │ │ ├── 00131.jpg │ │ │ │ ├── 00132.jpg │ │ │ │ ├── 00133.jpg │ │ │ │ ├── 00134.jpg │ │ │ │ ├── 00135.jpg │ │ │ │ ├── 00136.jpg │ │ │ │ ├── 00137.jpg │ │ │ │ ├── 00138.jpg │ │ │ │ ├── 00139.jpg │ │ │ │ ├── 00140.jpg │ │ │ │ ├── 00141.jpg │ │ │ │ ├── 00142.jpg │ │ │ │ ├── 00143.jpg │ │ │ │ ├── 00144.jpg │ │ │ │ ├── 00145.jpg │ │ │ │ ├── 00146.jpg │ │ │ │ ├── 00147.jpg │ │ │ │ ├── 00148.jpg │ │ │ │ ├── 00149.jpg │ │ │ │ ├── 00150.jpg │ │ │ │ ├── 00151.jpg │ │ │ │ ├── 00152.jpg │ │ │ │ ├── 00153.jpg │ │ │ │ ├── 00154.jpg │ │ │ │ ├── 00155.jpg │ │ │ │ ├── 00156.jpg │ │ │ │ ├── 00157.jpg │ │ │ │ ├── 00158.jpg │ │ │ │ ├── 00159.jpg │ │ │ │ ├── 00160.jpg │ │ │ │ ├── 00161.jpg │ │ │ │ ├── 00162.jpg │ │ │ │ ├── 00163.jpg │ │ │ │ ├── 00164.jpg │ │ │ │ ├── 00165.jpg │ │ │ │ ├── 00166.jpg │ │ │ │ ├── 00167.jpg │ │ │ │ ├── 00168.jpg │ │ │ │ ├── 00169.jpg │ │ │ │ ├── 00170.jpg │ │ │ │ ├── 00171.jpg │ │ │ │ ├── 00172.jpg │ │ │ │ ├── 00173.jpg │ │ │ │ ├── 00174.jpg │ │ │ │ ├── 00175.jpg │ │ │ │ ├── 00176.jpg │ │ │ │ ├── 00177.jpg │ │ │ │ ├── 00178.jpg │ │ │ │ ├── 00179.jpg │ │ │ │ ├── 00180.jpg │ │ │ │ ├── 00181.jpg │ │ │ │ ├── 00182.jpg │ │ │ │ ├── 00183.jpg │ │ │ │ ├── 00184.jpg │ │ │ │ ├── 00185.jpg │ │ │ │ ├── 00186.jpg │ │ │ │ ├── 00187.jpg │ │ │ │ ├── 00188.jpg │ │ │ │ ├── 00189.jpg │ │ │ │ ├── 00190.jpg │ │ │ │ ├── 00191.jpg │ │ │ │ ├── 00192.jpg │ │ │ │ ├── 00193.jpg │ │ │ │ ├── 00194.jpg │ │ │ │ ├── 00195.jpg │ │ │ │ ├── 00196.jpg │ │ │ │ ├── 00197.jpg │ │ │ │ ├── 00198.jpg │ │ │ │ ├── 00199.jpg │ │ │ │ ├── 00200.jpg │ │ │ │ ├── 00201.jpg │ │ │ │ ├── 00202.jpg │ │ │ │ ├── 00203.jpg │ │ │ │ ├── 00204.jpg │ │ │ │ ├── 00205.jpg │ │ │ │ ├── 00206.jpg │ │ │ │ ├── 00207.jpg │ │ │ │ ├── 00208.jpg │ │ │ │ ├── 00209.jpg │ │ │ │ ├── 00210.jpg │ │ │ │ ├── 00211.jpg │ │ │ │ ├── 00212.jpg │ │ │ │ ├── 00213.jpg │ │ │ │ ├── 00214.jpg │ │ │ │ ├── 00215.jpg │ │ │ │ ├── 00216.jpg │ │ │ │ ├── 00217.jpg │ │ │ │ ├── 00218.jpg │ │ │ │ ├── 00219.jpg │ │ │ │ ├── 00220.jpg │ │ │ │ ├── 00221.jpg │ │ │ │ ├── 00222.jpg │ │ │ │ ├── 00223.jpg │ │ │ │ ├── 00224.jpg │ │ │ │ ├── 00225.jpg │ │ │ │ ├── 00226.jpg │ │ │ │ ├── 00227.jpg │ │ │ │ ├── 00228.jpg │ │ │ │ ├── 00229.jpg │ │ │ │ ├── 00230.jpg │ │ │ │ ├── 00231.jpg │ │ │ │ ├── 00232.jpg │ │ │ │ ├── 00233.jpg │ │ │ │ ├── 00234.jpg │ │ │ │ ├── 00235.jpg │ │ │ │ ├── 00236.jpg │ │ │ │ ├── 00237.jpg │ │ │ │ ├── 00238.jpg │ │ │ │ ├── 00239.jpg │ │ │ │ ├── 00240.jpg │ │ │ │ ├── 00241.jpg │ │ │ │ ├── 00242.jpg │ │ │ │ ├── 00243.jpg │ │ │ │ ├── 00244.jpg │ │ │ │ ├── 00245.jpg │ │ │ │ ├── 00246.jpg │ │ │ │ ├── 00247.jpg │ │ │ │ ├── 00248.jpg │ │ │ │ ├── 00249.jpg │ │ │ │ ├── 00250.jpg │ │ │ │ ├── 00251.jpg │ │ │ │ ├── 00252.jpg │ │ │ │ ├── 00253.jpg │ │ │ │ ├── 00254.jpg │ │ │ │ ├── 00255.jpg │ │ │ │ ├── 00256.jpg │ │ │ │ ├── 00257.jpg │ │ │ │ ├── 00258.jpg │ │ │ │ ├── 00259.jpg │ │ │ │ ├── 00260.jpg │ │ │ │ ├── 00261.jpg │ │ │ │ ├── 00262.jpg │ │ │ │ ├── 00263.jpg │ │ │ │ ├── 00264.jpg │ │ │ │ ├── 00265.jpg │ │ │ │ ├── 00266.jpg │ │ │ │ ├── 00267.jpg │ │ │ │ ├── 00268.jpg │ │ │ │ ├── 00269.jpg │ │ │ │ ├── 00270.jpg │ │ │ │ ├── 00271.jpg │ │ │ │ ├── 00272.jpg │ │ │ │ ├── 00273.jpg │ │ │ │ ├── 00274.jpg │ │ │ │ ├── 00275.jpg │ │ │ │ ├── 00276.jpg │ │ │ │ ├── 00277.jpg │ │ │ │ ├── 00278.jpg │ │ │ │ ├── 00279.jpg │ │ │ │ ├── 00280.jpg │ │ │ │ ├── 00281.jpg │ │ │ │ ├── 00282.jpg │ │ │ │ ├── 00283.jpg │ │ │ │ ├── 00284.jpg │ │ │ │ ├── 00285.jpg │ │ │ │ ├── 00286.jpg │ │ │ │ ├── 00287.jpg │ │ │ │ ├── 00288.jpg │ │ │ │ ├── 00289.jpg │ │ │ │ ├── 00290.jpg │ │ │ │ ├── 00291.jpg │ │ │ │ ├── 00292.jpg │ │ │ │ ├── 00293.jpg │ │ │ │ ├── 00294.jpg │ │ │ │ ├── 00295.jpg │ │ │ │ ├── 00296.jpg │ │ │ │ ├── 00297.jpg │ │ │ │ ├── 00298.jpg │ │ │ │ ├── 00299.jpg │ │ │ │ ├── 00300.jpg │ │ │ │ ├── 00301.jpg │ │ │ │ ├── 00302.jpg │ │ │ │ ├── 00303.jpg │ │ │ │ ├── 00304.jpg │ │ │ │ ├── 00305.jpg │ │ │ │ ├── 00306.jpg │ │ │ │ ├── 00307.jpg │ │ │ │ ├── 00308.jpg │ │ │ │ ├── 00309.jpg │ │ │ │ ├── 00310.jpg │ │ │ │ ├── 00311.jpg │ │ │ │ ├── 00312.jpg │ │ │ │ ├── 00313.jpg │ │ │ │ ├── 00314.jpg │ │ │ │ ├── 00315.jpg │ │ │ │ ├── 00316.jpg │ │ │ │ ├── 00317.jpg │ │ │ │ ├── 00318.jpg │ │ │ │ ├── 00319.jpg │ │ │ │ ├── 00320.jpg │ │ │ │ ├── 00321.jpg │ │ │ │ ├── 00322.jpg │ │ │ │ ├── 00323.jpg │ │ │ │ ├── 00324.jpg │ │ │ │ ├── 00325.jpg │ │ │ │ ├── 00326.jpg │ │ │ │ ├── 00327.jpg │ │ │ │ ├── 00328.jpg │ │ │ │ ├── 00329.jpg │ │ │ │ ├── 00330.jpg │ │ │ │ ├── 00331.jpg │ │ │ │ ├── 00332.jpg │ │ │ │ ├── 00333.jpg │ │ │ │ ├── 00334.jpg │ │ │ │ ├── 00335.jpg │ │ │ │ ├── 00336.jpg │ │ │ │ ├── 00337.jpg │ │ │ │ ├── 00338.jpg │ │ │ │ ├── 00339.jpg │ │ │ │ ├── 00340.jpg │ │ │ │ ├── 00341.jpg │ │ │ │ ├── 00342.jpg │ │ │ │ ├── 00343.jpg │ │ │ │ ├── 00344.jpg │ │ │ │ ├── 00345.jpg │ │ │ │ ├── 00346.jpg │ │ │ │ ├── 00347.jpg │ │ │ │ ├── 00348.jpg │ │ │ │ ├── 00349.jpg │ │ │ │ ├── 00350.jpg │ │ │ │ ├── 00351.jpg │ │ │ │ ├── 00352.jpg │ │ │ │ ├── 00353.jpg │ │ │ │ ├── 00354.jpg │ │ │ │ ├── 00355.jpg │ │ │ │ ├── 00356.jpg │ │ │ │ ├── 00357.jpg │ │ │ │ ├── 00358.jpg │ │ │ │ ├── 00359.jpg │ │ │ │ ├── 00360.jpg │ │ │ │ ├── 00361.jpg │ │ │ │ ├── 00362.jpg │ │ │ │ ├── 00363.jpg │ │ │ │ ├── 00364.jpg │ │ │ │ ├── 00365.jpg │ │ │ │ ├── 00366.jpg │ │ │ │ ├── 00367.jpg │ │ │ │ ├── 00368.jpg │ │ │ │ ├── 00369.jpg │ │ │ │ ├── 00370.jpg │ │ │ │ ├── 00371.jpg │ │ │ │ ├── 00372.jpg │ │ │ │ ├── 00373.jpg │ │ │ │ ├── 00374.jpg │ │ │ │ ├── 00375.jpg │ │ │ │ ├── 00376.jpg │ │ │ │ ├── 00377.jpg │ │ │ │ ├── 00378.jpg │ │ │ │ ├── 00379.jpg │ │ │ │ ├── 00380.jpg │ │ │ │ ├── 00381.jpg │ │ │ │ ├── 00382.jpg │ │ │ │ ├── 00383.jpg │ │ │ │ ├── 00384.jpg │ │ │ │ ├── 00385.jpg │ │ │ │ ├── 00386.jpg │ │ │ │ ├── 00387.jpg │ │ │ │ ├── 00388.jpg │ │ │ │ ├── 00389.jpg │ │ │ │ ├── 00390.jpg │ │ │ │ ├── 00391.jpg │ │ │ │ ├── 00392.jpg │ │ │ │ ├── 00393.jpg │ │ │ │ ├── 00394.jpg │ │ │ │ ├── 00395.jpg │ │ │ │ ├── 00396.jpg │ │ │ │ ├── 00397.jpg │ │ │ │ ├── 00398.jpg │ │ │ │ ├── 00399.jpg │ │ │ │ └── 00400.jpg │ │ └── validation_data │ │ │ ├── Negative │ │ │ ├── 00501.jpg │ │ │ ├── 00502.jpg │ │ │ ├── 00503.jpg │ │ │ ├── 00504.jpg │ │ │ ├── 00505.jpg │ │ │ ├── 00506.jpg │ │ │ ├── 00507.jpg │ │ │ ├── 00508.jpg │ │ │ ├── 00509.jpg │ │ │ ├── 00510.jpg │ │ │ ├── 00511.jpg │ │ │ ├── 00512.jpg │ │ │ ├── 00513.jpg │ │ │ ├── 00514.jpg │ │ │ ├── 00515.jpg │ │ │ ├── 00516.jpg │ │ │ ├── 00517.jpg │ │ │ ├── 00518.jpg │ │ │ ├── 00519.jpg │ │ │ ├── 00520.jpg │ │ │ ├── 00521.jpg │ │ │ ├── 00522.jpg │ │ │ ├── 00523.jpg │ │ │ ├── 00524.jpg │ │ │ ├── 00525.jpg │ │ │ ├── 00526.jpg │ │ │ ├── 00527.jpg │ │ │ ├── 00528.jpg │ │ │ ├── 00529.jpg │ │ │ ├── 00530.jpg │ │ │ ├── 00531.jpg │ │ │ ├── 00532.jpg │ │ │ ├── 00533.jpg │ │ │ ├── 00534.jpg │ │ │ ├── 00535.jpg │ │ │ ├── 00536.jpg │ │ │ ├── 00537.jpg │ │ │ ├── 00538.jpg │ │ │ ├── 00539.jpg │ │ │ ├── 00540.jpg │ │ │ ├── 00541.jpg │ │ │ ├── 00542.jpg │ │ │ ├── 00543.jpg │ │ │ ├── 00544.jpg │ │ │ ├── 00545.jpg │ │ │ ├── 00546.jpg │ │ │ ├── 00547.jpg │ │ │ ├── 00548.jpg │ │ │ ├── 00549.jpg │ │ │ ├── 00550.jpg │ │ │ ├── 00551.jpg │ │ │ ├── 00552.jpg │ │ │ ├── 00553.jpg │ │ │ ├── 00554.jpg │ │ │ ├── 00555.jpg │ │ │ ├── 00556.jpg │ │ │ ├── 00557.jpg │ │ │ ├── 00558.jpg │ │ │ ├── 00559.jpg │ │ │ ├── 00560.jpg │ │ │ ├── 00561.jpg │ │ │ ├── 00562.jpg │ │ │ ├── 00563.jpg │ │ │ ├── 00564.jpg │ │ │ ├── 00565.jpg │ │ │ ├── 00566.jpg │ │ │ ├── 00567.jpg │ │ │ ├── 00568.jpg │ │ │ ├── 00569.jpg │ │ │ ├── 00570.jpg │ │ │ ├── 00571.jpg │ │ │ ├── 00572.jpg │ │ │ ├── 00573.jpg │ │ │ ├── 00574.jpg │ │ │ ├── 00575.jpg │ │ │ ├── 00576.jpg │ │ │ ├── 00577.jpg │ │ │ ├── 00578.jpg │ │ │ ├── 00579.jpg │ │ │ ├── 00580.jpg │ │ │ ├── 00581.jpg │ │ │ ├── 00582.jpg │ │ │ ├── 00583.jpg │ │ │ ├── 00584.jpg │ │ │ ├── 00585.jpg │ │ │ ├── 00586.jpg │ │ │ ├── 00587.jpg │ │ │ ├── 00588.jpg │ │ │ ├── 00589.jpg │ │ │ ├── 00590.jpg │ │ │ ├── 00591.jpg │ │ │ ├── 00592.jpg │ │ │ ├── 00593.jpg │ │ │ ├── 00594.jpg │ │ │ ├── 00595.jpg │ │ │ ├── 00596.jpg │ │ │ ├── 00597.jpg │ │ │ ├── 00598.jpg │ │ │ ├── 00599.jpg │ │ │ └── 00600.jpg │ │ │ └── Positive │ │ │ ├── 00501.jpg │ │ │ ├── 00502.jpg │ │ │ ├── 00503.jpg │ │ │ ├── 00504.jpg │ │ │ ├── 00505.jpg │ │ │ ├── 00506.jpg │ │ │ ├── 00507.jpg │ │ │ ├── 00508.jpg │ │ │ ├── 00509.jpg │ │ │ ├── 00510.jpg │ │ │ ├── 00511.jpg │ │ │ ├── 00512.jpg │ │ │ ├── 00513.jpg │ │ │ ├── 00514.jpg │ │ │ ├── 00515.jpg │ │ │ ├── 00516.jpg │ │ │ ├── 00517.jpg │ │ │ ├── 00518.jpg │ │ │ ├── 00519.jpg │ │ │ ├── 00520.jpg │ │ │ ├── 00521.jpg │ │ │ ├── 00522.jpg │ │ │ ├── 00523.jpg │ │ │ ├── 00524.jpg │ │ │ ├── 00525.jpg │ │ │ ├── 00526.jpg │ │ │ ├── 00527.jpg │ │ │ ├── 00528.jpg │ │ │ ├── 00529.jpg │ │ │ ├── 00530.jpg │ │ │ ├── 00531.jpg │ │ │ ├── 00532.jpg │ │ │ ├── 00533.jpg │ │ │ ├── 00534.jpg │ │ │ ├── 00535.jpg │ │ │ ├── 00536.jpg │ │ │ ├── 00537.jpg │ │ │ ├── 00538.jpg │ │ │ ├── 00539.jpg │ │ │ ├── 00540.jpg │ │ │ ├── 00541.jpg │ │ │ ├── 00542.jpg │ │ │ ├── 00543.jpg │ │ │ ├── 00544.jpg │ │ │ ├── 00545.jpg │ │ │ ├── 00546.jpg │ │ │ ├── 00547.jpg │ │ │ ├── 00548.jpg │ │ │ ├── 00549.jpg │ │ │ ├── 00550.jpg │ │ │ ├── 00551.jpg │ │ │ ├── 00552.jpg │ │ │ ├── 00553.jpg │ │ │ ├── 00554.jpg │ │ │ ├── 00555.jpg │ │ │ ├── 00556.jpg │ │ │ ├── 00557.jpg │ │ │ ├── 00558.jpg │ │ │ ├── 00559.jpg │ │ │ ├── 00560.jpg │ │ │ ├── 00561.jpg │ │ │ ├── 00562.jpg │ │ │ ├── 00563.jpg │ │ │ ├── 00564.jpg │ │ │ ├── 00565.jpg │ │ │ ├── 00566.jpg │ │ │ ├── 00567.jpg │ │ │ ├── 00568.jpg │ │ │ ├── 00569.jpg │ │ │ ├── 00570.jpg │ │ │ ├── 00571.jpg │ │ │ ├── 00572.jpg │ │ │ ├── 00573.jpg │ │ │ ├── 00574.jpg │ │ │ ├── 00575.jpg │ │ │ ├── 00576.jpg │ │ │ ├── 00577.jpg │ │ │ ├── 00578.jpg │ │ │ ├── 00579.jpg │ │ │ ├── 00580.jpg │ │ │ ├── 00581.jpg │ │ │ ├── 00582.jpg │ │ │ ├── 00583.jpg │ │ │ ├── 00584.jpg │ │ │ ├── 00585.jpg │ │ │ ├── 00586.jpg │ │ │ ├── 00587.jpg │ │ │ ├── 00588.jpg │ │ │ ├── 00589.jpg │ │ │ ├── 00590.jpg │ │ │ ├── 00591.jpg │ │ │ ├── 00592.jpg │ │ │ ├── 00593.jpg │ │ │ ├── 00594.jpg │ │ │ ├── 00595.jpg │ │ │ ├── 00596.jpg │ │ │ ├── 00597.jpg │ │ │ ├── 00598.jpg │ │ │ ├── 00599.jpg │ │ │ └── 00600.jpg │ ├── example.toml │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── negative_non_crack.jpg │ ├── positive_crack.jpg │ ├── qnn_quality_detection.py │ ├── qnnqd.pdparams │ ├── qnnqd_model_cn.png │ ├── qnnqd_model_en.png │ ├── surface_crack_example.png │ ├── test.toml │ └── train.toml ├── random_number │ ├── config.toml │ ├── extractor_cn.png │ ├── extractor_en.png │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── randnum.py │ ├── randnum_cn.png │ └── randnum_en.png ├── regression │ ├── datasets │ │ └── Fish.csv │ ├── fig │ │ ├── Evaluation_Index.png │ │ ├── Linear_Regression.png │ │ ├── Poly_Regression.png │ │ ├── flowchart_CN.png │ │ └── flowchart_EN.png │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── linear.toml │ ├── poly.toml │ └── vqr_analysis.py └── text_classification │ ├── example.toml │ ├── headlines500 │ ├── test.txt │ ├── train.txt │ └── vocab.txt │ ├── introduction_cn.ipynb │ ├── introduction_en.ipynb │ ├── qsann.pdparams │ ├── qsann_classification.py │ ├── test.toml │ └── train.toml ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── .gitkeep │ ├── conf.py │ ├── index.rst │ ├── introduction.rst │ ├── locale │ └── en │ │ └── LC_MESSAGES │ │ ├── index.po │ │ ├── introduction.po │ │ ├── modules.po │ │ ├── paddle_quantum.ansatz.circuit.po │ │ ├── paddle_quantum.ansatz.container.po │ │ ├── paddle_quantum.ansatz.po │ │ ├── paddle_quantum.ansatz.vans.po │ │ ├── paddle_quantum.backend.density_matrix.po │ │ ├── paddle_quantum.backend.po │ │ ├── paddle_quantum.backend.quleaf.po │ │ ├── paddle_quantum.backend.state_vector.po │ │ ├── paddle_quantum.backend.unitary_matrix.po │ │ ├── paddle_quantum.base.po │ │ ├── paddle_quantum.channel.base.po │ │ ├── paddle_quantum.channel.common.po │ │ ├── paddle_quantum.channel.custom.po │ │ ├── paddle_quantum.channel.functional.common.po │ │ ├── paddle_quantum.channel.functional.po │ │ ├── paddle_quantum.channel.po │ │ ├── paddle_quantum.dataset.po │ │ ├── paddle_quantum.finance.po │ │ ├── paddle_quantum.fisher.po │ │ ├── paddle_quantum.gate.base.po │ │ ├── paddle_quantum.gate.clifford.po │ │ ├── paddle_quantum.gate.custom.po │ │ ├── paddle_quantum.gate.encoding.po │ │ ├── paddle_quantum.gate.functional.base.po │ │ ├── paddle_quantum.gate.functional.multi_qubit_gate.po │ │ ├── paddle_quantum.gate.functional.po │ │ ├── paddle_quantum.gate.functional.single_qubit_gate.po │ │ ├── paddle_quantum.gate.layer.po │ │ ├── paddle_quantum.gate.multi_qubit_gate.po │ │ ├── paddle_quantum.gate.po │ │ ├── paddle_quantum.gate.single_qubit_gate.po │ │ ├── paddle_quantum.gradtool.po │ │ ├── paddle_quantum.hamiltonian.po │ │ ├── paddle_quantum.linalg.po │ │ ├── paddle_quantum.locc.locc_ansatz.po │ │ ├── paddle_quantum.locc.locc_net.po │ │ ├── paddle_quantum.locc.locc_party.po │ │ ├── paddle_quantum.locc.locc_state.po │ │ ├── paddle_quantum.locc.po │ │ ├── paddle_quantum.loss.distance.po │ │ ├── paddle_quantum.loss.measure.po │ │ ├── paddle_quantum.loss.po │ │ ├── paddle_quantum.mbqc.mcalculus.MCalculus.po │ │ ├── paddle_quantum.mbqc.mcalculus.po │ │ ├── paddle_quantum.mbqc.po │ │ ├── paddle_quantum.mbqc.qobject.Circuit.po │ │ ├── paddle_quantum.mbqc.qobject.Pattern.po │ │ ├── paddle_quantum.mbqc.qobject.State.po │ │ ├── paddle_quantum.mbqc.qobject.po │ │ ├── paddle_quantum.mbqc.simulator.MBQC.po │ │ ├── paddle_quantum.mbqc.simulator.po │ │ ├── paddle_quantum.mbqc.transpiler.po │ │ ├── paddle_quantum.mbqc.utils.po │ │ ├── paddle_quantum.operator.operator.po │ │ ├── paddle_quantum.operator.po │ │ ├── paddle_quantum.qchem.complex_utils.po │ │ ├── paddle_quantum.qchem.density_matrix.po │ │ ├── paddle_quantum.qchem.hardware_efficient.po │ │ ├── paddle_quantum.qchem.loss.po │ │ ├── paddle_quantum.qchem.po │ │ ├── paddle_quantum.qchem.qchem.po │ │ ├── paddle_quantum.qchem.slater_determinant.po │ │ ├── paddle_quantum.qchem.uccsd.po │ │ ├── paddle_quantum.qinfo.po │ │ ├── paddle_quantum.shadow.po │ │ ├── paddle_quantum.state.common.po │ │ ├── paddle_quantum.state.po │ │ ├── paddle_quantum.state.state.po │ │ ├── paddle_quantum.trotter.po │ │ ├── paddle_quantum.utils.SpinOps.po │ │ ├── paddle_quantum.visual.po │ │ └── tutorial.po │ ├── modules.rst │ ├── paddle_quantum.ansatz.circuit.rst │ ├── paddle_quantum.ansatz.container.rst │ ├── paddle_quantum.ansatz.layer.rst │ ├── paddle_quantum.ansatz.rst │ ├── paddle_quantum.ansatz.vans.rst │ ├── paddle_quantum.backend.quleaf.rst │ ├── paddle_quantum.base.rst │ ├── paddle_quantum.biocomputing.algorithm.rst │ ├── paddle_quantum.biocomputing.data_loader.rst │ ├── paddle_quantum.biocomputing.operators.rst │ ├── paddle_quantum.biocomputing.protein.rst │ ├── paddle_quantum.biocomputing.rst │ ├── paddle_quantum.biocomputing.visualize.rst │ ├── paddle_quantum.channel.base.rst │ ├── paddle_quantum.channel.common.rst │ ├── paddle_quantum.channel.custom.rst │ ├── paddle_quantum.channel.representation.rst │ ├── paddle_quantum.channel.rst │ ├── paddle_quantum.data_analysis.power_flow.rst │ ├── paddle_quantum.data_analysis.rand_num.rst │ ├── paddle_quantum.data_analysis.rst │ ├── paddle_quantum.data_analysis.vqls.rst │ ├── paddle_quantum.data_analysis.vqr.rst │ ├── paddle_quantum.dataset.rst │ ├── paddle_quantum.finance.finance.rst │ ├── paddle_quantum.finance.pricing.rst │ ├── paddle_quantum.finance.qpo.rst │ ├── paddle_quantum.finance.rst │ ├── paddle_quantum.fisher.rst │ ├── paddle_quantum.gate.base.rst │ ├── paddle_quantum.gate.clifford.rst │ ├── paddle_quantum.gate.custom.rst │ ├── paddle_quantum.gate.encoding.rst │ ├── paddle_quantum.gate.matrix.rst │ ├── paddle_quantum.gate.multi_qubit_gate.rst │ ├── paddle_quantum.gate.rst │ ├── paddle_quantum.gate.single_qubit_gate.rst │ ├── paddle_quantum.gradtool.rst │ ├── paddle_quantum.hamiltonian.rst │ ├── paddle_quantum.linalg.rst │ ├── paddle_quantum.locc.locc_ansatz.rst │ ├── paddle_quantum.locc.locc_net.rst │ ├── paddle_quantum.locc.locc_party.rst │ ├── paddle_quantum.locc.locc_state.rst │ ├── paddle_quantum.locc.rst │ ├── paddle_quantum.loss.distance.rst │ ├── paddle_quantum.loss.measure.rst │ ├── paddle_quantum.loss.rst │ ├── paddle_quantum.mbqc.mcalculus.rst │ ├── paddle_quantum.mbqc.qobject.rst │ ├── paddle_quantum.mbqc.rst │ ├── paddle_quantum.mbqc.simulator.rst │ ├── paddle_quantum.mbqc.transpiler.rst │ ├── paddle_quantum.mbqc.utils.rst │ ├── paddle_quantum.model.rst │ ├── paddle_quantum.operator.operator.rst │ ├── paddle_quantum.operator.rst │ ├── paddle_quantum.qchem.algorithm.rst │ ├── paddle_quantum.qchem.ansatz.rst │ ├── paddle_quantum.qchem.drivers.rst │ ├── paddle_quantum.qchem.fermionic_state.rst │ ├── paddle_quantum.qchem.molecule.rst │ ├── paddle_quantum.qchem.properties.rst │ ├── paddle_quantum.qchem.rst │ ├── paddle_quantum.qchem.utils.rst │ ├── paddle_quantum.qinfo.rst │ ├── paddle_quantum.qml.bert_qtc.rst │ ├── paddle_quantum.qml.qcaan.rst │ ├── paddle_quantum.qml.qnnmic.rst │ ├── paddle_quantum.qml.qnnqd.rst │ ├── paddle_quantum.qml.qsann.rst │ ├── paddle_quantum.qml.rst │ ├── paddle_quantum.qml.vsql.rst │ ├── paddle_quantum.qpp.angles.rst │ ├── paddle_quantum.qpp.laurent.rst │ ├── paddle_quantum.qpp.rst │ ├── paddle_quantum.qpp.utils.rst │ ├── paddle_quantum.qsvt.qsp.rst │ ├── paddle_quantum.qsvt.qsp_utils.rst │ ├── paddle_quantum.qsvt.qsvt.rst │ ├── paddle_quantum.qsvt.rst │ ├── paddle_quantum.shadow.rst │ ├── paddle_quantum.state.common.rst │ ├── paddle_quantum.state.rst │ ├── paddle_quantum.state.state.rst │ ├── paddle_quantum.trotter.rst │ ├── paddle_quantum.visual.rst │ └── tutorial.rst ├── docs_zh_CN ├── Makefile ├── make.bat └── source │ ├── _static │ └── .gitkeep │ ├── conf.py │ ├── index.rst │ ├── introduction.rst │ ├── modules.rst │ ├── paddle_quantum.ansatz.circuit.rst │ ├── paddle_quantum.ansatz.container.rst │ ├── paddle_quantum.ansatz.layer.rst │ ├── paddle_quantum.ansatz.rst │ ├── paddle_quantum.ansatz.vans.rst │ ├── paddle_quantum.backend.quleaf.rst │ ├── paddle_quantum.base.rst │ ├── paddle_quantum.biocomputing.algorithm.rst │ ├── paddle_quantum.biocomputing.data_loader.rst │ ├── paddle_quantum.biocomputing.operators.rst │ ├── paddle_quantum.biocomputing.protein.rst │ ├── paddle_quantum.biocomputing.rst │ ├── paddle_quantum.biocomputing.visualize.rst │ ├── paddle_quantum.channel.base.rst │ ├── paddle_quantum.channel.common.rst │ ├── paddle_quantum.channel.custom.rst │ ├── paddle_quantum.channel.representation.rst │ ├── paddle_quantum.channel.rst │ ├── paddle_quantum.data_analysis.power_flow.rst │ ├── paddle_quantum.data_analysis.rand_num.rst │ ├── paddle_quantum.data_analysis.rst │ ├── paddle_quantum.data_analysis.vqls.rst │ ├── paddle_quantum.data_analysis.vqr.rst │ ├── paddle_quantum.dataset.rst │ ├── paddle_quantum.finance.finance.rst │ ├── paddle_quantum.finance.pricing.rst │ ├── paddle_quantum.finance.qpo.rst │ ├── paddle_quantum.finance.rst │ ├── paddle_quantum.fisher.rst │ ├── paddle_quantum.gate.base.rst │ ├── paddle_quantum.gate.clifford.rst │ ├── paddle_quantum.gate.custom.rst │ ├── paddle_quantum.gate.encoding.rst │ ├── paddle_quantum.gate.matrix.rst │ ├── paddle_quantum.gate.multi_qubit_gate.rst │ ├── paddle_quantum.gate.rst │ ├── paddle_quantum.gate.single_qubit_gate.rst │ ├── paddle_quantum.gradtool.rst │ ├── paddle_quantum.hamiltonian.rst │ ├── paddle_quantum.linalg.rst │ ├── paddle_quantum.locc.locc_ansatz.rst │ ├── paddle_quantum.locc.locc_net.rst │ ├── paddle_quantum.locc.locc_party.rst │ ├── paddle_quantum.locc.locc_state.rst │ ├── paddle_quantum.locc.rst │ ├── paddle_quantum.loss.distance.rst │ ├── paddle_quantum.loss.measure.rst │ ├── paddle_quantum.loss.rst │ ├── paddle_quantum.mbqc.mcalculus.rst │ ├── paddle_quantum.mbqc.qobject.rst │ ├── paddle_quantum.mbqc.rst │ ├── paddle_quantum.mbqc.simulator.rst │ ├── paddle_quantum.mbqc.transpiler.rst │ ├── paddle_quantum.mbqc.utils.rst │ ├── paddle_quantum.model.rst │ ├── paddle_quantum.operator.operator.rst │ ├── paddle_quantum.operator.rst │ ├── paddle_quantum.qchem.algorithm.rst │ ├── paddle_quantum.qchem.ansatz.rst │ ├── paddle_quantum.qchem.drivers.rst │ ├── paddle_quantum.qchem.fermionic_state.rst │ ├── paddle_quantum.qchem.molecule.rst │ ├── paddle_quantum.qchem.properties.rst │ ├── paddle_quantum.qchem.rst │ ├── paddle_quantum.qchem.utils.rst │ ├── paddle_quantum.qinfo.rst │ ├── paddle_quantum.qml.bert_qtc.rst │ ├── paddle_quantum.qml.qcaan.rst │ ├── paddle_quantum.qml.qnnmic.rst │ ├── paddle_quantum.qml.qnnqd.rst │ ├── paddle_quantum.qml.qsann.rst │ ├── paddle_quantum.qml.rst │ ├── paddle_quantum.qml.vsql.rst │ ├── paddle_quantum.qpp.angles.rst │ ├── paddle_quantum.qpp.laurent.rst │ ├── paddle_quantum.qpp.rst │ ├── paddle_quantum.qpp.utils.rst │ ├── paddle_quantum.qsvt.qsp.rst │ ├── paddle_quantum.qsvt.qsp_utils.rst │ ├── paddle_quantum.qsvt.qsvt.rst │ ├── paddle_quantum.qsvt.rst │ ├── paddle_quantum.shadow.rst │ ├── paddle_quantum.state.common.rst │ ├── paddle_quantum.state.rst │ ├── paddle_quantum.state.state.rst │ ├── paddle_quantum.trotter.rst │ ├── paddle_quantum.visual.rst │ └── tutorial.rst ├── introduction ├── PaddleQuantum_Ansatz_CN.ipynb ├── PaddleQuantum_Ansatz_EN.ipynb ├── PaddleQuantum_Custom_CN.ipynb ├── PaddleQuantum_Custom_EN.ipynb ├── PaddleQuantum_GPU_CN.ipynb ├── PaddleQuantum_GPU_EN.ipynb ├── PaddleQuantum_Hamiltonian_CN.ipynb ├── PaddleQuantum_Hamiltonian_EN.ipynb ├── PaddleQuantum_Linalg_and_Qinfo_CN.ipynb ├── PaddleQuantum_Linalg_and_Qinfo_EN.ipynb ├── PaddleQuantum_Qchem_Tutorial_CN.ipynb ├── PaddleQuantum_Qchem_Tutorial_EN.ipynb ├── PaddleQuantum_QuLeaf_CN.ipynb ├── PaddleQuantum_QuLeaf_EN.ipynb ├── PaddleQuantum_State_CN.ipynb ├── PaddleQuantum_State_EN.ipynb ├── PaddleQuantum_Training_CN.ipynb ├── PaddleQuantum_Training_EN.ipynb ├── PaddleQuantum_Tutorial_CN.ipynb ├── PaddleQuantum_Tutorial_EN.ipynb └── figures │ ├── gpu-fig-circuit.jpg │ ├── intro-fig-ansatz1.png │ ├── intro-fig-bell2.png │ ├── intro-fig-bloch.png │ ├── intro-fig-cadd.png │ ├── intro-fig-classical_nn-cn.png │ ├── intro-fig-classical_nn.png │ ├── intro-fig-complex_entangled_layer2-cn.png │ ├── intro-fig-complex_entangled_layer2.png │ ├── intro-fig-conda.png │ ├── intro-fig-gate1.png │ ├── intro-fig-gate2.png │ ├── intro-fig-gates.png │ ├── intro-fig-hadamard.png │ ├── intro-fig-output_57_0.png │ ├── intro-fig-output_58_0.png │ ├── intro-fig-output_59_0.png │ ├── intro-fig-output_70_0.png │ ├── intro-fig-rotation_in_bloch.gif │ ├── intro-fig-ssvqeAnsatz.png │ ├── intro-fig-state_in_bloch.gif │ ├── intro-fig-tsp_and_classifier.png │ ├── intro-fig-vqa_qnn.png │ ├── intro-fig-vqeAnsatz.png │ └── intro-fig-vqsdAnsatz.png ├── paddle_quantum ├── GIBBS │ ├── HGenerator.py │ ├── Paddle_GIBBS.py │ └── example │ │ └── main.py ├── QAOA │ ├── example │ │ └── main.py │ ├── maxcut.py │ └── tsp.py ├── SSVQE │ ├── HGenerator.py │ ├── Paddle_SSVQE.py │ └── example │ │ └── main.py ├── VQE │ ├── Paddle_VQE.py │ ├── benchmark.py │ ├── chemistrygen.py │ ├── chemistrysub.py │ ├── example │ │ ├── h2.xyz │ │ └── main.py │ └── h2.xyz ├── VQSD │ ├── HGenerator.py │ ├── Paddle_VQSD.py │ └── example │ │ └── main.py ├── __init__.py ├── ansatz │ ├── __init__.py │ ├── circuit.py │ ├── container.py │ ├── layer.py │ └── vans.py ├── backend │ ├── __init__.py │ ├── density_matrix.py │ ├── quleaf.py │ ├── state_vector.py │ └── unitary_matrix.py ├── base.py ├── biocomputing │ ├── __init__.py │ ├── algorithm.py │ ├── data_loader.py │ ├── mj_matrix.txt │ ├── operators.py │ ├── protein.py │ └── visualize.py ├── channel │ ├── __init__.py │ ├── base.py │ ├── common.py │ ├── custom.py │ ├── functional │ │ ├── __init__.py │ │ └── common.py │ └── representation.py ├── data_analysis │ ├── power_flow.py │ ├── rand_num.py │ ├── vqls.py │ └── vqr.py ├── dataset.py ├── finance │ ├── __init__.py │ ├── finance.py │ ├── pricing.py │ └── qpo.py ├── fisher.py ├── gate │ ├── __init__.py │ ├── base.py │ ├── clifford.py │ ├── custom.py │ ├── encoding.py │ ├── functional │ │ ├── __init__.py │ │ ├── base.py │ │ └── visual.py │ ├── matrix.py │ ├── multi_qubit_gate.py │ └── single_qubit_gate.py ├── gradtool.py ├── hamiltonian.py ├── intrinsic.py ├── linalg.py ├── locc │ ├── __init__.py │ ├── locc_ansatz.py │ ├── locc_net.py │ ├── locc_party.py │ └── locc_state.py ├── loss │ ├── __init__.py │ ├── distance.py │ └── measure.py ├── mbqc │ ├── GRCS │ │ ├── example │ │ │ ├── main.py │ │ │ ├── record_time.txt │ │ │ └── rectangular │ │ │ │ └── depth10 │ │ │ │ ├── inst_5x5_10_0.txt │ │ │ │ ├── inst_5x5_10_1.txt │ │ │ │ ├── inst_5x5_10_2.txt │ │ │ │ ├── inst_5x5_10_3.txt │ │ │ │ ├── inst_5x5_10_4.txt │ │ │ │ ├── inst_5x5_10_5.txt │ │ │ │ ├── inst_5x5_10_6.txt │ │ │ │ ├── inst_5x5_10_7.txt │ │ │ │ ├── inst_5x5_10_8.txt │ │ │ │ ├── inst_5x5_10_9.txt │ │ │ │ ├── inst_5x6_10_0.txt │ │ │ │ ├── inst_5x6_10_1.txt │ │ │ │ ├── inst_5x6_10_2.txt │ │ │ │ ├── inst_5x6_10_3.txt │ │ │ │ ├── inst_5x6_10_4.txt │ │ │ │ ├── inst_5x6_10_5.txt │ │ │ │ ├── inst_5x6_10_6.txt │ │ │ │ ├── inst_5x6_10_7.txt │ │ │ │ ├── inst_5x6_10_8.txt │ │ │ │ ├── inst_5x6_10_9.txt │ │ │ │ ├── inst_6x6_10_0.txt │ │ │ │ ├── inst_6x6_10_1.txt │ │ │ │ ├── inst_6x6_10_2.txt │ │ │ │ ├── inst_6x6_10_3.txt │ │ │ │ ├── inst_6x6_10_4.txt │ │ │ │ ├── inst_6x6_10_5.txt │ │ │ │ ├── inst_6x6_10_6.txt │ │ │ │ ├── inst_6x6_10_7.txt │ │ │ │ ├── inst_6x6_10_8.txt │ │ │ │ ├── inst_6x6_10_9.txt │ │ │ │ ├── inst_6x7_10_0.txt │ │ │ │ ├── inst_6x7_10_1.txt │ │ │ │ ├── inst_6x7_10_2.txt │ │ │ │ ├── inst_6x7_10_3.txt │ │ │ │ ├── inst_6x7_10_4.txt │ │ │ │ ├── inst_6x7_10_5.txt │ │ │ │ ├── inst_6x7_10_6.txt │ │ │ │ ├── inst_6x7_10_7.txt │ │ │ │ ├── inst_6x7_10_8.txt │ │ │ │ ├── inst_6x7_10_9.txt │ │ │ │ ├── inst_7x7_10_0.txt │ │ │ │ ├── inst_7x7_10_1.txt │ │ │ │ ├── inst_7x7_10_2.txt │ │ │ │ ├── inst_7x7_10_3.txt │ │ │ │ ├── inst_7x7_10_4.txt │ │ │ │ ├── inst_7x7_10_5.txt │ │ │ │ ├── inst_7x7_10_6.txt │ │ │ │ ├── inst_7x7_10_7.txt │ │ │ │ ├── inst_7x7_10_8.txt │ │ │ │ └── inst_7x7_10_9.txt │ │ └── supremacy.py │ ├── QAOA │ │ ├── example │ │ │ ├── maxcut_main.py │ │ │ └── pubo_main.py │ │ ├── maxcut.py │ │ ├── pubo.py │ │ └── qaoa.py │ ├── QKernel │ │ ├── example │ │ │ ├── main.py │ │ │ └── record_time.txt │ │ └── qkernel.py │ ├── VQSVD │ │ ├── example │ │ │ ├── main.py │ │ │ └── record_time.txt │ │ └── vqsvd.py │ ├── __init__.py │ ├── gates │ │ ├── mcalculus_tests │ │ │ ├── cnot_test.py │ │ │ ├── random_test.py │ │ │ └── single_qubit_unitary_test.py │ │ └── simulator_tests │ │ │ ├── cnot_test.py │ │ │ └── single_qubit_unitary_test.py │ ├── mcalculus.py │ ├── qobject.py │ ├── simulator.py │ ├── transpiler.py │ └── utils.py ├── model.py ├── operator │ ├── __init__.py │ └── operator.py ├── qchem │ ├── __init__.py │ ├── algorithm.py │ ├── ansatz.py │ ├── drivers.py │ ├── fermionic_state.py │ ├── molecule.py │ ├── properties.py │ └── utils.py ├── qinfo.py ├── qml │ ├── __init__.py │ ├── bert_qtc.py │ ├── qcaan.py │ ├── qnnmic.py │ ├── qnnqd.py │ ├── qsann.py │ └── vsql.py ├── qpp │ ├── __init__.py │ ├── angles.py │ ├── laurent.py │ └── utils.py ├── qsvt │ ├── __init__.py │ ├── qsp.py │ ├── qsp_utils.py │ └── qsvt.py ├── shadow.py ├── state │ ├── __init__.py │ ├── common.py │ └── state.py ├── trotter.py └── visual.py ├── requirements.txt ├── setup.py ├── tools └── copyright.hook └── tutorials ├── combinatorial_optimization ├── ArbitrageOpportunityOptimation_CN.ipynb ├── ArbitrageOpportunityOptimation_EN.ipynb ├── DC-QAOA_CN.ipynb ├── DC-QAOA_EN.ipynb ├── MAXCUT_CN.ipynb ├── MAXCUT_EN.ipynb ├── PortfolioDiversification_CN.ipynb ├── PortfolioDiversification_EN.ipynb ├── PortfolioOptimization_CN.ipynb ├── PortfolioOptimization_EN.ipynb ├── QAOA_CN.ipynb ├── QAOA_EN.ipynb ├── TSP_CN.ipynb ├── TSP_EN.ipynb ├── figures │ ├── dcqaoa-fig-applicability_example.png │ ├── maxcut-fig-cir_ubud.png │ ├── maxcut-fig-cir_ud.png │ ├── maxcut-fig-cut_graph.png │ ├── maxcut-fig-gen_graph.png │ ├── maxcut-fig-maxcut_cut.png │ ├── maxcut-fig-maxcut_g.png │ ├── maxcut-fig-measure.png │ └── tsp-fig-circuit.png └── realStockData_12.csv ├── locc ├── EntanglementDistillation_BBPSSW_CN.ipynb ├── EntanglementDistillation_BBPSSW_EN.ipynb ├── EntanglementDistillation_DEJMPS_CN.ipynb ├── EntanglementDistillation_DEJMPS_EN.ipynb ├── EntanglementDistillation_LOCCNET_CN.ipynb ├── EntanglementDistillation_LOCCNET_EN.ipynb ├── LOCCNET_Tutorial_CN.ipynb ├── LOCCNET_Tutorial_EN.ipynb ├── QuantumTeleportation_CN.ipynb ├── QuantumTeleportation_EN.ipynb ├── StateDiscrimination_CN.ipynb ├── StateDiscrimination_EN.ipynb ├── figures │ ├── LOCC-fig-BBPSSW.png │ ├── LOCC-fig-controltree.png │ ├── LOCC-fig-cooptree.png │ ├── discrimination-fig-circuit.png │ ├── distillation-fig-BBPSSW.png │ ├── distillation-fig-DEJMPS.jpg │ ├── distillation-fig-LOCCNet4.png │ ├── statetransformation-fig.png │ ├── teleportation-fig-LOCCNet.png │ └── teleportation-fig-circuit.jpg └── parameters │ └── QT_LOCCNet ├── machine_learning ├── DataEncoding_CN.ipynb ├── DataEncoding_EN.ipynb ├── EncodingAnalysis_CN.ipynb ├── EncodingAnalysis_EN.ipynb ├── QApproximating_CN.ipynb ├── QApproximating_EN.ipynb ├── QAutoencoder_CN.ipynb ├── QAutoencoder_EN.ipynb ├── QClassifier_CN.ipynb ├── QClassifier_EN.ipynb ├── QGAN_CN.ipynb ├── QGAN_EN.ipynb ├── QKernel_CN.ipynb ├── QKernel_EN.ipynb ├── VQAE_CN.ipynb ├── VQAE_EN.ipynb ├── VQSVD_CN.ipynb ├── VQSVD_EN.ipynb ├── VSQL_CN.ipynb ├── VSQL_EN.ipynb └── figures │ ├── EncodingAnalysis-fig-illustration.png │ ├── EncodingAnalysis-fig-ry_circuit.png │ ├── EncodingAnalysis-fig-u3_circuit.png │ ├── MNIST_32.png │ ├── QA-fig-encoder_pipeline-cn.png │ ├── QA-fig-encoder_pipeline.png │ ├── QGAN-fig-discriminator.png │ ├── QGAN-fig-generator.png │ ├── QGAN-fig-loss.gif │ ├── QGAN-fig-output_16_1.png │ ├── QGAN-fig-target_state.png │ ├── Qkernel-fig-QKE.png │ ├── Qkernel-fig-featuremap.png │ ├── Qkernel-fig-illustrationCN.png │ ├── Qkernel-fig-illustrationEN.png │ ├── VQAE-fig-comparison.png │ ├── VQAE-fig-mlae.png │ ├── VQAE-fig-pesudo.png │ ├── VQAE-fig-qpe.png │ ├── qclassifier-fig-circuit.png │ ├── qclassifier-fig-data-cn.png │ ├── qclassifier-fig-data.png │ ├── qclassifier-fig-decisionboundary.png │ ├── qclassifier-fig-pipeline-cn.png │ ├── qclassifier-fig-pipeline.png │ ├── qclassifier-fig-test.png │ ├── qclassifier-fig-training.png │ ├── vsql-fig-2-local.png │ ├── vsql-fig-pipeline-cn.png │ ├── vsql-fig-pipeline.png │ ├── vsql-fig-qubit0-cn.png │ ├── vsql-fig-qubit0.png │ ├── vsql-fig-qubit1-cn.png │ ├── vsql-fig-qubit1.png │ ├── vsql-fig-qubit2-cn.png │ └── vsql-fig-qubit2.png ├── mbqc ├── Introduction_CN.md ├── Introduction_EN.md ├── MBQC_CN.ipynb ├── MBQC_EN.ipynb ├── PUBO_CN.ipynb ├── PUBO_EN.ipynb ├── Pattern_CN.ipynb ├── Pattern_EN.ipynb ├── QAOA_CN.ipynb ├── QAOA_EN.ipynb └── figures │ ├── mbqc-fig-GRCS_plot.jpg │ ├── mbqc-fig-cnot_pattern.jpg │ ├── mbqc-fig-general_pattern.jpg │ ├── mbqc-fig-graph_states.jpg │ ├── mbqc-fig-pat-cir-intro.png │ ├── mbqc-fig-pat_std.jpg │ ├── mbqc-fig-qaoa_graph_1.jpg │ ├── mbqc-fig-qaoa_graph_p.jpg │ ├── mbqc-fig-single_qubit_pattern_CN.jpg │ ├── mbqc-fig-single_qubit_pattern_EN.jpg │ └── mbqc-fig-wild_pat.jpg ├── qnn_research ├── BarrenPlateaus_CN.ipynb ├── BarrenPlateaus_EN.ipynb ├── Expressibility_CN.ipynb ├── Expressibility_EN.ipynb ├── Fisher_CN.ipynb ├── Fisher_EN.ipynb ├── Noise_CN.ipynb ├── Noise_EN.ipynb ├── VAns_CN.ipynb ├── VAns_EN.ipynb ├── VQCC_CN.ipynb ├── VQCC_EN.ipynb └── figures │ ├── BP-fig-2qubit_landscape.png │ ├── BP-fig-Barren_circuit.png │ ├── BP-fig-barren-cn.png │ ├── BP-fig-barren.png │ ├── BP-fig-landscape2.png │ ├── BP-fig-output_11_2.png │ ├── BP-fig-output_8_0.png │ ├── BP-fig-qubit_landscape.png │ ├── BP-fig-qubit_landscape_compare.png │ ├── FIM-fig-Sphere-metric.png │ ├── expressibility-fig-bloch_y.gif │ ├── expressibility-fig-bloch_yz.gif │ ├── expressibility-fig-bloch_yzy.gif │ ├── vans-fig-blocks.png │ ├── vans-fig-rules.png │ └── vqcc-fig-circuit.png └── quantum_simulation ├── BuildingMolecule_CN.ipynb ├── BuildingMolecule_EN.ipynb ├── ClassicalShadow_Application_CN.ipynb ├── ClassicalShadow_Application_EN.ipynb ├── ClassicalShadow_Intro_CN.ipynb ├── ClassicalShadow_Intro_EN.ipynb ├── DistributedVQE_CN.ipynb ├── DistributedVQE_EN.ipynb ├── GibbsState_CN.ipynb ├── GibbsState_EN.ipynb ├── HamiltonianSimulation_CN.ipynb ├── HamiltonianSimulation_EN.ipynb ├── LiH_VQE_parameters.pdtensor ├── LiH_hamiltonian.txt ├── QDRIFT_CN.ipynb ├── QDRIFT_EN.ipynb ├── QPP_CN.ipynb ├── QPP_EN.ipynb ├── QSP_and_QSVT_CN.ipynb ├── QSP_and_QSVT_EN.ipynb ├── SSVQE_CN.ipynb ├── SSVQE_EN.ipynb ├── SimulateHeisenberg_CN.ipynb ├── SimulateHeisenberg_EN.ipynb ├── VQE_CN.ipynb ├── VQE_EN.ipynb ├── VQSD_CN.ipynb ├── VQSD_EN.ipynb ├── VariationalQM_CN.ipynb ├── VariationalQM_EN.ipynb ├── figures ├── QM-fig-RI.png ├── QM-fig-V_RI3.png ├── QPP-fig-circuit.png ├── QPP-fig-state.png ├── QSVT-fig-U_Phi.png ├── QSVT-fig-block-decoding.png ├── buildingmolecule-fig-h2o.png ├── trotter_suzuki_circuit.png └── vqe-fig-distance.png ├── h2.xyz ├── h2o.xyz └── hf.xyz /applications/handwritten_digits_classification/data_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_classification/data_0.png -------------------------------------------------------------------------------- /applications/handwritten_digits_classification/example.toml: -------------------------------------------------------------------------------- 1 | 2 | task = 'test' 3 | image_path = 'data_0.png' 4 | is_dir = false 5 | model_path = 'vsql.pdparams' 6 | num_qubits = 10 7 | num_shadow = 2 8 | depth = 1 9 | classes = [0, 1] 10 | -------------------------------------------------------------------------------- /applications/handwritten_digits_classification/mnist_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_classification/mnist_example.png -------------------------------------------------------------------------------- /applications/handwritten_digits_classification/vsql.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_classification/vsql.pdparams -------------------------------------------------------------------------------- /applications/handwritten_digits_classification/vsql_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_classification/vsql_model.png -------------------------------------------------------------------------------- /applications/handwritten_digits_classification/vsql_pipeline_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_classification/vsql_pipeline_cn.png -------------------------------------------------------------------------------- /applications/handwritten_digits_classification/vsql_pipeline_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_classification/vsql_pipeline_en.png -------------------------------------------------------------------------------- /applications/handwritten_digits_generation/params/params_G_epoch20.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_generation/params/params_G_epoch20.pdparams -------------------------------------------------------------------------------- /applications/handwritten_digits_generation/params/params_qnn_epoch20.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_generation/params/params_qnn_epoch20.pdparams -------------------------------------------------------------------------------- /applications/handwritten_digits_generation/qcaan_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/handwritten_digits_generation/qcaan_model.png -------------------------------------------------------------------------------- /applications/intent_classification/bert_qtc_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/intent_classification/bert_qtc_arch.png -------------------------------------------------------------------------------- /applications/intent_classification/decoder.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/intent_classification/decoder.pdparams -------------------------------------------------------------------------------- /applications/intent_classification/smp_data/class.txt: -------------------------------------------------------------------------------- 1 | chat 2 | cookbook 3 | video 4 | epg 5 | -------------------------------------------------------------------------------- /applications/linear_solver/A.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/linear_solver/A.npy -------------------------------------------------------------------------------- /applications/linear_solver/answer.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/linear_solver/answer.npy -------------------------------------------------------------------------------- /applications/linear_solver/b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/linear_solver/b.npy -------------------------------------------------------------------------------- /applications/linear_solver/example.toml: -------------------------------------------------------------------------------- 1 | A_dir = './A.npy' 2 | b_dir = './b.npy' 3 | depth = 4 4 | iterations = 100 5 | LR = 0.1 6 | gamma = 0 -------------------------------------------------------------------------------- /applications/linear_solver/vqls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/linear_solver/vqls.png -------------------------------------------------------------------------------- /applications/medical_image_classification/med_image_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/med_image_example.png -------------------------------------------------------------------------------- /applications/medical_image_classification/medical_image/breastmnist.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/medical_image/breastmnist.npz -------------------------------------------------------------------------------- /applications/medical_image_classification/medical_image/image_label_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/medical_image/image_label_0.png -------------------------------------------------------------------------------- /applications/medical_image_classification/medical_image/image_label_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/medical_image/image_label_1.png -------------------------------------------------------------------------------- /applications/medical_image_classification/medical_image/pneumoniamnist.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/medical_image/pneumoniamnist.npz -------------------------------------------------------------------------------- /applications/medical_image_classification/medical_image/test_image_1_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/medical_image/test_image_1_0.npz -------------------------------------------------------------------------------- /applications/medical_image_classification/qnnmic.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/qnnmic.pdparams -------------------------------------------------------------------------------- /applications/medical_image_classification/qnnmic_model_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/qnnmic_model_cn.png -------------------------------------------------------------------------------- /applications/medical_image_classification/qnnmic_model_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/medical_image_classification/qnnmic_model_en.png -------------------------------------------------------------------------------- /applications/power_flow/example.toml: -------------------------------------------------------------------------------- 1 | data_dir = './ieee5cdf.txt' 2 | threshold = 1e-1 3 | minIter = 1 4 | maxIter = 100 5 | depth = 4 6 | iterations = 100 7 | LR = 0.1 8 | gamma = 0 9 | 10 | -------------------------------------------------------------------------------- /applications/protein_folding/APRLRFY_3d_structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/protein_folding/APRLRFY_3d_structure.jpg -------------------------------------------------------------------------------- /applications/protein_folding/lattice_model_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/protein_folding/lattice_model_demo.jpg -------------------------------------------------------------------------------- /applications/protein_folding/lattice_model_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/protein_folding/lattice_model_en.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00401.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00402.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00403.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00403.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00404.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00405.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00405.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00406.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00406.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00407.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00407.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00408.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00408.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00409.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00409.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00410.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00411.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00411.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00412.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00412.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00413.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00414.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00414.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00415.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00415.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00416.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00417.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00417.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00418.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00418.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00419.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00419.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00420.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00420.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00421.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00421.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00422.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00422.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00423.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00423.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00424.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00424.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00425.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00426.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00426.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00427.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00428.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00429.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00429.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00430.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00431.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00431.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00432.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00433.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00433.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00434.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00434.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00435.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00436.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00437.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00437.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00438.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00439.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00439.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00440.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00441.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00441.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00442.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00442.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00443.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00443.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00444.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00445.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00446.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00446.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00447.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00447.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00448.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00448.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00449.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00449.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00450.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00451.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00452.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00452.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00453.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00453.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00454.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00454.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00455.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00455.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00456.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00457.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00457.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00458.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00458.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00459.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00459.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00460.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00461.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00462.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00462.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00463.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00463.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00464.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00465.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00465.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00466.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00466.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00467.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00467.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00468.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00468.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00469.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00469.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00470.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00470.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00471.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00471.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00472.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00472.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00473.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00473.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00474.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00474.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00475.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00476.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00477.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00477.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00478.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00478.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00479.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00479.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00480.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00481.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00481.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00482.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00482.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00483.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00483.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00484.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00484.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00485.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00486.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00486.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00487.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00487.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00488.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00488.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00489.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00489.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00490.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00490.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00491.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00492.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00492.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00493.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00493.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00494.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00494.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00495.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00495.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00496.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00496.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00497.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00497.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00498.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00498.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00499.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00499.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Negative/00500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Negative/00500.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00401.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00402.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00403.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00403.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00404.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00405.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00405.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00406.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00406.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00407.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00407.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00408.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00408.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00409.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00409.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00410.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00411.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00411.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00412.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00412.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00413.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00414.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00414.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00415.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00415.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00416.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00417.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00417.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00418.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00418.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00419.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00419.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00420.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00420.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00421.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00421.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00422.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00422.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00423.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00423.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00424.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00424.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00425.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00426.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00426.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00427.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00428.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00429.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00429.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00430.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00431.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00431.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00432.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00433.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00433.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00434.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00434.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00435.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00436.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00437.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00437.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00438.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00439.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00439.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00440.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00441.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00441.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00442.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00442.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00443.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00443.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00444.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00445.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00446.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00446.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00447.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00447.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00448.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00448.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00449.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00449.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00450.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00451.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00452.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00452.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00453.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00453.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00454.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00454.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00455.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00455.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00456.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00457.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00457.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00458.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00458.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00459.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00459.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00460.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00461.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00462.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00462.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00463.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00463.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00464.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00465.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00465.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00466.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00466.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00467.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00467.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00468.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00468.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00469.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00469.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00470.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00470.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00471.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00471.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00472.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00472.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00473.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00473.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00474.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00474.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00475.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00476.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00477.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00477.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00478.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00478.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00479.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00479.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00480.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00481.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00481.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00482.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00482.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00483.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00483.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00484.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00484.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00485.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00486.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00486.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00487.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00487.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00488.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00488.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00489.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00489.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00490.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00490.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00491.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00492.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00492.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00493.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00493.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00494.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00494.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00495.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00495.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00496.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00496.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00497.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00497.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00498.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00498.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00499.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00499.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/test_data/Positive/00500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/test_data/Positive/00500.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00001.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00002.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00003.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00004.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00005.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00006.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00007.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00008.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00009.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00010.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00011.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00012.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00013.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00014.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00015.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00016.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00017.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00018.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00019.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00020.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00021.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00022.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00023.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00024.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00025.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00026.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00027.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00028.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00029.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00030.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00031.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00032.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00033.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00034.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00035.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00036.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00037.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00038.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00039.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00040.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00041.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00042.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00043.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00044.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00045.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00046.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00047.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00048.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00049.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00050.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00051.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00052.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00053.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00054.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00055.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00056.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00057.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00058.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00059.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00059.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00060.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00060.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00061.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00062.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00063.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00064.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00065.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00066.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00067.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00067.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00068.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00069.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00070.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00071.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00072.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00073.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00074.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00075.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00076.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00077.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00078.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00079.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00080.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00081.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00081.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00082.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00083.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00084.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00085.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00086.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00086.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00087.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00088.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00089.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00090.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00091.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00091.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00092.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00092.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00093.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00094.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00095.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00095.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00096.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00096.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00097.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00097.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00098.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00098.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00099.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00099.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00100.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00101.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00102.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00103.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00104.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00105.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00106.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00107.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00108.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00109.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00110.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00111.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00112.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00113.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00114.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00115.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00116.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00117.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00118.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00119.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00120.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00121.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00122.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00123.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00124.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00125.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00126.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00127.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00128.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00129.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00130.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00131.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00132.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00133.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00134.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00135.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00136.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00137.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00138.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00139.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00140.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00141.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00142.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00143.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00144.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00145.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00146.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00147.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00148.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00149.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00150.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00151.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00152.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00153.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00154.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00155.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00156.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00157.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00158.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00159.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00160.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00161.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00162.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00163.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00164.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00165.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00166.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00167.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00167.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00168.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00169.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00170.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00171.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00172.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00173.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00174.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00174.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00175.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00176.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00176.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00177.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00178.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00179.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00180.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00181.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00182.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00183.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00184.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00185.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00186.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00187.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00188.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00189.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00190.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00191.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00192.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00193.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00194.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00195.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00196.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00196.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00197.jpg -------------------------------------------------------------------------------- /applications/quality_detection/SurfaceCrack/training_data/Negative/00198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/SurfaceCrack/training_data/Negative/00198.jpg -------------------------------------------------------------------------------- /applications/quality_detection/negative_non_crack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/negative_non_crack.jpg -------------------------------------------------------------------------------- /applications/quality_detection/positive_crack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/positive_crack.jpg -------------------------------------------------------------------------------- /applications/quality_detection/qnnqd.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/qnnqd.pdparams -------------------------------------------------------------------------------- /applications/quality_detection/qnnqd_model_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/qnnqd_model_cn.png -------------------------------------------------------------------------------- /applications/quality_detection/qnnqd_model_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/qnnqd_model_en.png -------------------------------------------------------------------------------- /applications/quality_detection/surface_crack_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/quality_detection/surface_crack_example.png -------------------------------------------------------------------------------- /applications/random_number/extractor_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/random_number/extractor_cn.png -------------------------------------------------------------------------------- /applications/random_number/extractor_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/random_number/extractor_en.png -------------------------------------------------------------------------------- /applications/random_number/randnum_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/random_number/randnum_cn.png -------------------------------------------------------------------------------- /applications/random_number/randnum_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/random_number/randnum_en.png -------------------------------------------------------------------------------- /applications/regression/fig/Evaluation_Index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/regression/fig/Evaluation_Index.png -------------------------------------------------------------------------------- /applications/regression/fig/Linear_Regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/regression/fig/Linear_Regression.png -------------------------------------------------------------------------------- /applications/regression/fig/Poly_Regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/regression/fig/Poly_Regression.png -------------------------------------------------------------------------------- /applications/regression/fig/flowchart_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/regression/fig/flowchart_CN.png -------------------------------------------------------------------------------- /applications/regression/fig/flowchart_EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/regression/fig/flowchart_EN.png -------------------------------------------------------------------------------- /applications/text_classification/qsann.pdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/applications/text_classification/qsann.pdparams -------------------------------------------------------------------------------- /docs/source/_static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/docs/source/_static/.gitkeep -------------------------------------------------------------------------------- /docs/source/paddle_quantum.ansatz.circuit.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.ansatz.circuit 2 | ===================================== 3 | 4 | .. automodule:: paddle_quantum.ansatz.circuit 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.ansatz.container.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.ansatz.container 2 | ======================================= 3 | 4 | .. automodule:: paddle_quantum.ansatz.container 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.ansatz.layer.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.ansatz.layer 2 | ======================================= 3 | 4 | .. automodule:: paddle_quantum.ansatz.layer 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.ansatz.vans.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.ansatz.vans 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.ansatz.vans 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.backend.quleaf.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.backend.quleaf 2 | ===================================== 3 | 4 | .. automodule:: paddle_quantum.backend.quleaf 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.base.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.base 2 | =========================== 3 | 4 | .. automodule:: paddle_quantum.base 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.channel.base.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.channel.base 2 | =================================== 3 | 4 | .. automodule:: paddle_quantum.channel.base 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.channel.common.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.channel.common 2 | ===================================== 3 | 4 | .. automodule:: paddle_quantum.channel.common 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.channel.custom.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.channel.custom 2 | ===================================== 3 | 4 | .. automodule:: paddle_quantum.channel.custom 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.dataset.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.dataset 2 | ============================== 3 | 4 | .. automodule:: paddle_quantum.dataset 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.finance.finance.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.finance.finance 2 | ================================= 3 | 4 | .. automodule:: paddle_quantum.finance.finance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.finance.pricing.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.finance.pricing 2 | ================================= 3 | 4 | .. automodule:: paddle_quantum.finance.pricing 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.finance.qpo.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.finance.qpo 2 | ================================= 3 | 4 | .. automodule:: paddle_quantum.finance.qpo 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.fisher.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.fisher 2 | ============================= 3 | 4 | .. automodule:: paddle_quantum.fisher 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.gate.base.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.gate.base 2 | ================================ 3 | 4 | .. automodule:: paddle_quantum.gate.base 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.gate.clifford.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.gate.clifford 2 | ==================================== 3 | 4 | .. automodule:: paddle_quantum.gate.clifford 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.gate.custom.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.gate.custom 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.gate.custom 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.gate.encoding.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.gate.encoding 2 | ==================================== 3 | 4 | .. automodule:: paddle_quantum.gate.encoding 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.gate.matrix.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.gate.matrix 2 | ================================= 3 | 4 | .. automodule:: paddle_quantum.gate.matrix 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.gradtool.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.gradtool 2 | =============================== 3 | 4 | .. automodule:: paddle_quantum.gradtool 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.hamiltonian.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.hamiltonian 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.hamiltonian 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.linalg.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.linalg 2 | ============================= 3 | 4 | .. automodule:: paddle_quantum.linalg 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.locc.locc_net.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.locc.locc\_net 2 | ===================================== 3 | 4 | .. automodule:: paddle_quantum.locc.locc_net 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.loss.distance.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.loss.distance 2 | ==================================== 3 | 4 | .. automodule:: paddle_quantum.loss.distance 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.loss.measure.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.loss.measure 2 | =================================== 3 | 4 | .. automodule:: paddle_quantum.loss.measure 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.mbqc.mcalculus.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.mbqc.mcalculus 2 | =============================== 3 | 4 | .. automodule:: paddle_quantum.mbqc.mcalculus 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.mbqc.qobject.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.mbqc.qobject 2 | ============================ 3 | 4 | .. automodule:: paddle_quantum.mbqc.qobject 5 | :members: 6 | :show-inheritance: 7 | :noindex: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.mbqc.simulator.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.mbqc.simulator 2 | ============================== 3 | 4 | .. automodule:: paddle_quantum.mbqc.simulator 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.mbqc.transpiler.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.mbqc.transpiler 2 | =============================== 3 | 4 | .. automodule:: paddle_quantum.mbqc.transpiler 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.mbqc.utils.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.mbqc.utils 2 | ========================== 3 | 4 | .. automodule:: paddle_quantum.mbqc.utils 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.model.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.model 2 | ============================= 3 | 4 | .. automodule:: paddle_quantum.model 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qchem.ansatz.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qchem.ansatz 2 | ================================= 3 | 4 | .. automodule:: paddle_quantum.qchem.ansatz 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qchem.drivers.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qchem.drivers 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qchem.drivers 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qchem.utils.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qchem.utils 2 | ========================================= 3 | 4 | .. automodule:: paddle_quantum.qchem.utils 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qinfo.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qinfo 2 | ============================ 3 | 4 | .. automodule:: paddle_quantum.qinfo 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qml.bert_qtc.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qml.bert_qtc 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qml.bert_qtc 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qml.qcaan.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qml.qcaan 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qml.qcaan 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qml.qnnmic.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qml.qnnmic 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qml.qnnmic 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qml.qnnqd.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qml.qnnqd 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qml.qnnqd 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qml.qsann.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qml.qsann 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qml.qsann 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qml.vsql.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qml.vsql 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.qml.vsql 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qpp.angles.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qpp.angles 2 | ============================ 3 | 4 | .. automodule:: paddle_quantum.qpp.angles 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qpp.laurent.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qpp.laurent 2 | ============================ 3 | 4 | .. automodule:: paddle_quantum.qpp.laurent 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qpp.utils.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qpp.qpp.utils 2 | ============================= 3 | 4 | .. automodule:: paddle_quantum.qpp.utils 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qsvt.qsp.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qsvt.qsp 2 | ============================ 3 | 4 | .. automodule:: paddle_quantum.qsvt.qsp 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qsvt.qsp_utils.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qsvt.qsp\_utils 2 | =============================== 3 | 4 | .. automodule:: paddle_quantum.qsvt.qsp_utils 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.qsvt.qsvt.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.qsvt.qsvt 2 | ============================ 3 | 4 | .. automodule:: paddle_quantum.qsvt.qsvt 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: -------------------------------------------------------------------------------- /docs/source/paddle_quantum.shadow.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.shadow 2 | ============================= 3 | 4 | .. automodule:: paddle_quantum.shadow 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.state.common.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.state.common 2 | =================================== 3 | 4 | .. automodule:: paddle_quantum.state.common 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.state.state.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.state.state 2 | ================================== 3 | 4 | .. automodule:: paddle_quantum.state.state 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.trotter.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.trotter 2 | ============================== 3 | 4 | .. automodule:: paddle_quantum.trotter 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/source/paddle_quantum.visual.rst: -------------------------------------------------------------------------------- 1 | paddle\_quantum.visual 2 | ============================= 3 | 4 | .. automodule:: paddle_quantum.visual 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs_zh_CN/source/_static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/docs_zh_CN/source/_static/.gitkeep -------------------------------------------------------------------------------- /introduction/figures/gpu-fig-circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/gpu-fig-circuit.jpg -------------------------------------------------------------------------------- /introduction/figures/intro-fig-ansatz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-ansatz1.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-bell2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-bell2.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-bloch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-bloch.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-cadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-cadd.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-classical_nn-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-classical_nn-cn.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-classical_nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-classical_nn.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-complex_entangled_layer2-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-complex_entangled_layer2-cn.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-complex_entangled_layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-complex_entangled_layer2.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-conda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-conda.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-gate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-gate1.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-gate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-gate2.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-gates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-gates.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-hadamard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-hadamard.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-output_57_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-output_57_0.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-output_58_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-output_58_0.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-output_59_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-output_59_0.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-output_70_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-output_70_0.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-rotation_in_bloch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-rotation_in_bloch.gif -------------------------------------------------------------------------------- /introduction/figures/intro-fig-ssvqeAnsatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-ssvqeAnsatz.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-state_in_bloch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-state_in_bloch.gif -------------------------------------------------------------------------------- /introduction/figures/intro-fig-tsp_and_classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-tsp_and_classifier.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-vqa_qnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-vqa_qnn.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-vqeAnsatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-vqeAnsatz.png -------------------------------------------------------------------------------- /introduction/figures/intro-fig-vqsdAnsatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/introduction/figures/intro-fig-vqsdAnsatz.png -------------------------------------------------------------------------------- /paddle_quantum/VQE/example/h2.xyz: -------------------------------------------------------------------------------- 1 | 2 2 | in Angstrom 3 | H 0.00000 0.00000 -0.35000 4 | H 0.00000 0.00000 0.35000 5 | -------------------------------------------------------------------------------- /paddle_quantum/VQE/h2.xyz: -------------------------------------------------------------------------------- 1 | 2 2 | in Angstrom 3 | H 0.00000 0.00000 -0.35000 4 | H 0.00000 0.00000 0.35000 5 | -------------------------------------------------------------------------------- /paddle_quantum/mbqc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/paddle_quantum/mbqc/__init__.py -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-cir_ubud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-cir_ubud.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-cir_ud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-cir_ud.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-cut_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-cut_graph.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-gen_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-gen_graph.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-maxcut_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-maxcut_cut.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-maxcut_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-maxcut_g.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/maxcut-fig-measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/maxcut-fig-measure.png -------------------------------------------------------------------------------- /tutorials/combinatorial_optimization/figures/tsp-fig-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/combinatorial_optimization/figures/tsp-fig-circuit.png -------------------------------------------------------------------------------- /tutorials/locc/figures/LOCC-fig-BBPSSW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/LOCC-fig-BBPSSW.png -------------------------------------------------------------------------------- /tutorials/locc/figures/LOCC-fig-controltree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/LOCC-fig-controltree.png -------------------------------------------------------------------------------- /tutorials/locc/figures/LOCC-fig-cooptree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/LOCC-fig-cooptree.png -------------------------------------------------------------------------------- /tutorials/locc/figures/discrimination-fig-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/discrimination-fig-circuit.png -------------------------------------------------------------------------------- /tutorials/locc/figures/distillation-fig-BBPSSW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/distillation-fig-BBPSSW.png -------------------------------------------------------------------------------- /tutorials/locc/figures/distillation-fig-DEJMPS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/distillation-fig-DEJMPS.jpg -------------------------------------------------------------------------------- /tutorials/locc/figures/distillation-fig-LOCCNet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/distillation-fig-LOCCNet4.png -------------------------------------------------------------------------------- /tutorials/locc/figures/statetransformation-fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/statetransformation-fig.png -------------------------------------------------------------------------------- /tutorials/locc/figures/teleportation-fig-LOCCNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/teleportation-fig-LOCCNet.png -------------------------------------------------------------------------------- /tutorials/locc/figures/teleportation-fig-circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/figures/teleportation-fig-circuit.jpg -------------------------------------------------------------------------------- /tutorials/locc/parameters/QT_LOCCNet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/locc/parameters/QT_LOCCNet -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/EncodingAnalysis-fig-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/EncodingAnalysis-fig-illustration.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/EncodingAnalysis-fig-ry_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/EncodingAnalysis-fig-ry_circuit.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/EncodingAnalysis-fig-u3_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/EncodingAnalysis-fig-u3_circuit.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/MNIST_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/MNIST_32.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QA-fig-encoder_pipeline-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QA-fig-encoder_pipeline-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QA-fig-encoder_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QA-fig-encoder_pipeline.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QGAN-fig-discriminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QGAN-fig-discriminator.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QGAN-fig-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QGAN-fig-generator.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QGAN-fig-loss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QGAN-fig-loss.gif -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QGAN-fig-output_16_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QGAN-fig-output_16_1.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/QGAN-fig-target_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/QGAN-fig-target_state.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/Qkernel-fig-QKE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/Qkernel-fig-QKE.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/Qkernel-fig-featuremap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/Qkernel-fig-featuremap.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/Qkernel-fig-illustrationCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/Qkernel-fig-illustrationCN.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/Qkernel-fig-illustrationEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/Qkernel-fig-illustrationEN.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/VQAE-fig-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/VQAE-fig-comparison.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/VQAE-fig-mlae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/VQAE-fig-mlae.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/VQAE-fig-pesudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/VQAE-fig-pesudo.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/VQAE-fig-qpe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/VQAE-fig-qpe.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-circuit.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-data-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-data-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-data.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-decisionboundary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-decisionboundary.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-pipeline-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-pipeline-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-pipeline.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-test.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/qclassifier-fig-training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/qclassifier-fig-training.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-2-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-2-local.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-pipeline-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-pipeline-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-pipeline.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-qubit0-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-qubit0-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-qubit0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-qubit0.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-qubit1-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-qubit1-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-qubit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-qubit1.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-qubit2-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-qubit2-cn.png -------------------------------------------------------------------------------- /tutorials/machine_learning/figures/vsql-fig-qubit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/machine_learning/figures/vsql-fig-qubit2.png -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-GRCS_plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-GRCS_plot.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-cnot_pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-cnot_pattern.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-general_pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-general_pattern.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-graph_states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-graph_states.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-pat-cir-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-pat-cir-intro.png -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-pat_std.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-pat_std.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-qaoa_graph_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-qaoa_graph_1.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-qaoa_graph_p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-qaoa_graph_p.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-single_qubit_pattern_CN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-single_qubit_pattern_CN.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-single_qubit_pattern_EN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-single_qubit_pattern_EN.jpg -------------------------------------------------------------------------------- /tutorials/mbqc/figures/mbqc-fig-wild_pat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/mbqc/figures/mbqc-fig-wild_pat.jpg -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-2qubit_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-2qubit_landscape.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-Barren_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-Barren_circuit.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-barren-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-barren-cn.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-barren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-barren.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-landscape2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-landscape2.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-output_11_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-output_11_2.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-output_8_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-output_8_0.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-qubit_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-qubit_landscape.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/BP-fig-qubit_landscape_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/BP-fig-qubit_landscape_compare.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/FIM-fig-Sphere-metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/FIM-fig-Sphere-metric.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/expressibility-fig-bloch_y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/expressibility-fig-bloch_y.gif -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/expressibility-fig-bloch_yz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/expressibility-fig-bloch_yz.gif -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/expressibility-fig-bloch_yzy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/expressibility-fig-bloch_yzy.gif -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/vans-fig-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/vans-fig-blocks.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/vans-fig-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/vans-fig-rules.png -------------------------------------------------------------------------------- /tutorials/qnn_research/figures/vqcc-fig-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/qnn_research/figures/vqcc-fig-circuit.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/LiH_VQE_parameters.pdtensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/LiH_VQE_parameters.pdtensor -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/QM-fig-RI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/QM-fig-RI.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/QM-fig-V_RI3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/QM-fig-V_RI3.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/QPP-fig-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/QPP-fig-circuit.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/QPP-fig-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/QPP-fig-state.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/QSVT-fig-U_Phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/QSVT-fig-U_Phi.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/QSVT-fig-block-decoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/QSVT-fig-block-decoding.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/buildingmolecule-fig-h2o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/buildingmolecule-fig-h2o.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/trotter_suzuki_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/trotter_suzuki_circuit.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/figures/vqe-fig-distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Quantum/760c787f29e18db77ec6fba5e91da6166ae6599e/tutorials/quantum_simulation/figures/vqe-fig-distance.png -------------------------------------------------------------------------------- /tutorials/quantum_simulation/h2.xyz: -------------------------------------------------------------------------------- 1 | 2 2 | in Angstrom 3 | H 0.00000 0.00000 -0.35000 4 | H 0.00000 0.00000 0.35000 5 | -------------------------------------------------------------------------------- /tutorials/quantum_simulation/h2o.xyz: -------------------------------------------------------------------------------- 1 | 3 2 | in angstrom 3 | H -0.02111417 0.8350417 1.47688078 4 | O 0.0000 0.0000 0.0000 5 | H -0.00201087 0.45191737 -0.27300254 6 | -------------------------------------------------------------------------------- /tutorials/quantum_simulation/hf.xyz: -------------------------------------------------------------------------------- 1 | 2 2 | hydrogen fluoride 3 | F -0.29502 0.75280 0.00000 4 | H 0.64417 0.75280 0.00000 5 | --------------------------------------------------------------------------------