├── .DS_Store ├── .gitignore ├── BosonQ Psi └── README.md ├── CDL_logo.jpg ├── CosmiQ ├── .DS_Store ├── .githooks │ ├── pre-commit │ └── replace_by_git_vars.py ├── .github │ └── workflows │ │ └── binder-badge.yml ├── CosmiQ Presentation.pdf ├── DWave_challenge_solution.md ├── IBMQ_challenge_solution.md ├── README.md ├── Xanadu_challenge_solution.md ├── binder │ ├── README.md │ └── binder_readme_raw.md ├── data │ ├── .DS_Store │ ├── Untitled.ipynb │ └── out.csv ├── dwave │ ├── RobustEqualSumPartitioning.ipynb │ ├── dwave_formulation.ipynb │ └── images │ │ └── DWaveSolution.png ├── ibmq │ ├── Presentation.ipynb │ ├── README.md │ ├── class_gates.ipynb │ ├── entanglement_sandbox.ipynb │ ├── gate_constructor.py │ ├── images │ │ ├── Anharmonic_oscillator.gif │ │ ├── freq_calib.png │ │ ├── h01_gate_plot.png │ │ ├── h123_gate_plot.png │ │ ├── h12_gate_plot.png │ │ ├── img_discriminator.png │ │ ├── img_freq_sweep.png │ │ ├── img_rabi.png │ │ ├── img_sideband_freq.png │ │ └── y01_gate_plot.png │ ├── requirements.txt │ ├── waveform.txt │ └── x_gate_alice.ipynb ├── images │ ├── .DS_Store │ ├── CDL_logo.jpg │ ├── DMRGbigsys1.png │ ├── DMRGbigsys2.png │ ├── QAOA1.png │ ├── baseEqn.png │ ├── fullDMRG.png │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── img4.png │ ├── img5.png │ ├── img6.png │ ├── img7.png │ ├── simpleDMRG.png │ ├── simpleDMRGbigsys1.png │ ├── simpleDMRGbigsys2.png │ ├── technical1.png │ └── wall_street.jpg ├── installation_guide.md ├── writeup │ ├── CDL_Hackathon_cosmiQ.pdf │ └── CDL_Hackathon_cosmiQ.tex └── xanadu │ ├── .DS_Store │ ├── PennylaneQAOA.ipynb │ ├── StrawberryFields.ipynb │ ├── data │ ├── covid2020.csv │ └── crisis2008.csv │ ├── dataloader_class.py │ ├── dataloader_test.ipynb │ ├── flatnetwork.py │ ├── flatnetwork_simple.py │ ├── requirements.txt │ └── simple_dmrg.py ├── Error Corp ├── CDL_utils.py ├── README.md └── qutrit_gates.ipynb ├── LICENSE ├── Loo Boys ├── Business_app.md ├── PythonNotebooks │ ├── Euro_Simulation.ipynb │ ├── Fantasy_Draft.ipynb │ ├── Monte.ipynb │ ├── Monte_players.ipynb │ ├── Optimal_team_kit.ipynb │ ├── SOS.ipynb │ ├── SoccerOptimizer.ipynb │ ├── best__trade.ipynb │ └── betting.ipynb ├── README.md ├── data │ ├── .ipynb_checkpoints │ │ └── roundOf16-checkpoint.csv │ ├── 2018.csv │ ├── Matches.csv │ ├── basket.csv │ ├── bet.csv │ ├── epl-2019-GMTStandardTime.csv │ ├── euroGroupStage.csv │ ├── euroGroupStage.xls │ ├── foot.csv │ ├── foot2.csv │ ├── footy.csv │ ├── nfl_odds.csv │ ├── prem_table_2020.csv │ └── roundOf16.csv ├── img │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── bet.gif │ ├── bet.jpg │ ├── bus.jpg │ ├── cdl.jpg │ ├── comp.jpg │ └── logo.png ├── modules │ ├── .DS_Store │ ├── football │ │ └── draft.py │ ├── monte │ │ ├── playerStats.py │ │ └── teamResults.py │ └── soccer │ │ ├── .DS_Store │ │ ├── prediction.py │ │ └── soccerBQM.py └── requirements.txt ├── Opacity Quantum ├── .gitignore ├── Makefile ├── README.md ├── fig │ └── opacity_logo.png ├── notebooks │ ├── accessing_higher_energy_states.ipynb │ ├── backends_with_open_pulse.ipynb │ ├── ibmq_armonk_calibration.ipynb │ ├── ibmq_armonk_experiment.ipynb │ ├── ibmq_bogota_calibration.ipynb │ ├── ibmq_casablanca_calibration.ipynb │ └── qutrit_simulation.ipynb ├── presentation │ └── presentation_slides.pdf ├── requirements.txt ├── setup.py └── src │ ├── __init__.py │ ├── calibration_utils.py │ ├── plotting_utils.py │ └── shadows.py ├── Qilimanjaro ├── .gitignore ├── README.md ├── requirements.txt └── src │ ├── Qutrit_Classifier_Simulation.ipynb │ ├── data_generation.py │ ├── qutrit_classif.ipynb │ └── qutrit_classifier_3layers_optimal_params.npy ├── Quantum Finance ├── Business Application.md ├── Discount on product.png ├── Our approach.png ├── Quantum Dynamic Pricing Engine.ipynb ├── README.md └── Uniform sale.png ├── Quantum Oracles ├── LICENSE ├── README.md ├── __init__.py ├── requirements.txt ├── setup.py ├── src │ ├── __init__.py │ └── solovay_kitaev │ │ ├── __init__.py │ │ ├── basic_approximation.py │ │ ├── dawson_nielsen.py │ │ ├── gates │ │ ├── __init__.py │ │ ├── cliffords.py │ │ └── paulis.py │ │ ├── gc_decomposition.py │ │ └── utils │ │ ├── __init__.py │ │ └── utils.py └── tests │ ├── basic_approximation_test.py │ └── gc_decomposition_test.py ├── Quantum Vision ├── 2021-CDL_MaxEnt_V2.odp ├── 2021-CDL_MaxEnt_V2.pdf ├── Biologia.jpg ├── Ex1_bio.png ├── Ex_Clima.png ├── Figures.ipynb ├── QuantumVision.ipynb ├── README.md ├── fig0.png ├── fig_Ex1.png ├── fig_Ex2.png ├── fig_Ex3.png ├── fig_Ex4.png ├── fig_Ex5.png ├── function.py ├── gold.png └── hack.py ├── Qunova Computing ├── GSE147507_Series6,16.csv ├── Hackathon2021_presentation_slides.pptx ├── QVC.py ├── README.md ├── amp_encoding_training.ipynb ├── covid19_data │ ├── GSE147507_RawReadCounts_Human.tsv │ ├── GSE147507_Series6,16.csv │ ├── GSE147507_Series6,16_covrelated.csv │ ├── GSE147507_sample.csv │ ├── GSE147507_sample_div.csv │ ├── dim_reduc.ipynb │ └── pca.png ├── figures │ ├── RNAtranscriptome.png │ ├── loss_plot.jpg │ ├── test_lables.png │ ├── train_lables.png │ ├── training_loss_old.jpg │ ├── zzzpfm_c12_class_test.png │ └── zzzpfm_c12_class_train.png ├── npy_files │ ├── Optimal_param_zzpfmc12_pyquil.npy │ ├── TestData_zzpfmc12_pyquil.npy │ ├── TestLabels_zzpfmc12_pyquil.npy │ ├── TrainData_zzpfmc12_pyquil.npy │ └── TrainLabels_zzpfmc12_pyquil.npy ├── pyquil_circuits.py ├── requirements.txt ├── rigetti_resources │ ├── Amplitude Encoding.ipynb │ ├── Grover's Search Algorithm in pyQuil.ipynb │ ├── Noise Simulation and Digital ZNE in pyQuil.ipynb │ ├── QAOA in pyQuil.ipynb │ ├── Sampling and Readout Errors in pyQuil.ipynb │ ├── beta_angles.png │ └── uniformly_controlled_rotations.png ├── test.ipynb ├── test_qpu.ipynb ├── training.ipynb ├── training_pyquil.py └── utils.py ├── README.md ├── SRRSA ├── .DS_Store ├── Notebooks │ ├── Amplitude Encoding.ipynb │ ├── Image_Amplitude Encoding_Filter.ipynb │ ├── Image_Grover_Alogrithm.ipynb │ ├── Image_Processing.ipynb │ ├── Image_QNN.ipynb │ ├── PennyLane_QSVM.ipynb │ ├── Technical_Summary.pdf │ └── mnist_experimental.ipynb ├── Pyfiles │ ├── AmplitueEncoding.py │ ├── ImageRead.py │ ├── QNN.py │ ├── __pycache__ │ │ ├── AmplitueEncoding.cpython-38.pyc │ │ ├── ImageRead.cpython-38.pyc │ │ ├── QNN.cpython-38.pyc │ │ └── grover.cpython-38.pyc │ └── grover.py ├── README.md ├── business │ ├── Aviation.jpg │ ├── BusinessCases.md │ ├── WeatherForecast.jpg │ ├── aviationweather.jpg │ ├── business.jpg │ ├── logo.jpg │ ├── test.txt │ └── video.gif ├── dataset │ ├── Labels-Binary │ │ ├── No-storm │ │ │ ├── no_storm1.jpg │ │ │ ├── no_storm10.jpg │ │ │ ├── no_storm11.jpg │ │ │ ├── no_storm12.jpg │ │ │ ├── no_storm13.jpg │ │ │ ├── no_storm14.jpg │ │ │ ├── no_storm15.jpg │ │ │ ├── no_storm16.jpg │ │ │ ├── no_storm17.jpg │ │ │ ├── no_storm18.jpg │ │ │ ├── no_storm19.jpg │ │ │ ├── no_storm2.jpg │ │ │ ├── no_storm20.jpg │ │ │ ├── no_storm21.jpg │ │ │ ├── no_storm22.jpg │ │ │ ├── no_storm23.jpg │ │ │ ├── no_storm24.jpg │ │ │ ├── no_storm25.jpg │ │ │ ├── no_storm3.jpg │ │ │ ├── no_storm4.jpg │ │ │ ├── no_storm5.jpg │ │ │ ├── no_storm6.jpg │ │ │ ├── no_storm7.jpg │ │ │ ├── no_storm8.jpg │ │ │ └── no_storm9.jpg │ │ ├── Videoframe │ │ │ ├── Difference │ │ │ │ ├── vdiff-10.jpg │ │ │ │ ├── vdiff-11.jpg │ │ │ │ ├── vdiff-12.jpg │ │ │ │ ├── vdiff-13.jpg │ │ │ │ ├── vdiff-14.jpg │ │ │ │ ├── vdiff-15.jpg │ │ │ │ ├── vdiff-16.jpg │ │ │ │ ├── vdiff-17.jpg │ │ │ │ ├── vdiff-18.jpg │ │ │ │ ├── vdiff-19.jpg │ │ │ │ ├── vdiff-2.jpg │ │ │ │ ├── vdiff-20.jpg │ │ │ │ ├── vdiff-21.jpg │ │ │ │ ├── vdiff-22.jpg │ │ │ │ ├── vdiff-23.jpg │ │ │ │ ├── vdiff-24.jpg │ │ │ │ ├── vdiff-25.jpg │ │ │ │ ├── vdiff-26.jpg │ │ │ │ ├── vdiff-27.jpg │ │ │ │ ├── vdiff-28.jpg │ │ │ │ ├── vdiff-29.jpg │ │ │ │ ├── vdiff-3.jpg │ │ │ │ ├── vdiff-30.jpg │ │ │ │ ├── vdiff-31.jpg │ │ │ │ ├── vdiff-32.jpg │ │ │ │ ├── vdiff-33.jpg │ │ │ │ ├── vdiff-34.jpg │ │ │ │ ├── vdiff-35.jpg │ │ │ │ ├── vdiff-36.jpg │ │ │ │ ├── vdiff-37.jpg │ │ │ │ ├── vdiff-38.jpg │ │ │ │ ├── vdiff-39.jpg │ │ │ │ ├── vdiff-4.jpg │ │ │ │ ├── vdiff-40.jpg │ │ │ │ ├── vdiff-41.jpg │ │ │ │ ├── vdiff-42.jpg │ │ │ │ ├── vdiff-43.jpg │ │ │ │ ├── vdiff-44.jpg │ │ │ │ ├── vdiff-45.jpg │ │ │ │ ├── vdiff-46.jpg │ │ │ │ ├── vdiff-47.jpg │ │ │ │ ├── vdiff-48.jpg │ │ │ │ ├── vdiff-49.jpg │ │ │ │ ├── vdiff-5.jpg │ │ │ │ ├── vdiff-50.jpg │ │ │ │ ├── vdiff-51.jpg │ │ │ │ ├── vdiff-52.jpg │ │ │ │ ├── vdiff-53.jpg │ │ │ │ ├── vdiff-54.jpg │ │ │ │ ├── vdiff-55.jpg │ │ │ │ ├── vdiff-56.jpg │ │ │ │ ├── vdiff-57.jpg │ │ │ │ ├── vdiff-58.jpg │ │ │ │ ├── vdiff-59.jpg │ │ │ │ ├── vdiff-6.jpg │ │ │ │ ├── vdiff-60.jpg │ │ │ │ ├── vdiff-61.jpg │ │ │ │ ├── vdiff-62.jpg │ │ │ │ ├── vdiff-63.jpg │ │ │ │ ├── vdiff-64.jpg │ │ │ │ ├── vdiff-65.jpg │ │ │ │ ├── vdiff-66.jpg │ │ │ │ ├── vdiff-67.jpg │ │ │ │ ├── vdiff-68.jpg │ │ │ │ ├── vdiff-69.jpg │ │ │ │ ├── vdiff-7.jpg │ │ │ │ ├── vdiff-70.jpg │ │ │ │ ├── vdiff-71.jpg │ │ │ │ ├── vdiff-72.jpg │ │ │ │ ├── vdiff-73.jpg │ │ │ │ ├── vdiff-74.jpg │ │ │ │ ├── vdiff-75.jpg │ │ │ │ ├── vdiff-76.jpg │ │ │ │ ├── vdiff-77.jpg │ │ │ │ ├── vdiff-78.jpg │ │ │ │ ├── vdiff-79.jpg │ │ │ │ ├── vdiff-8.jpg │ │ │ │ ├── vdiff-80.jpg │ │ │ │ ├── vdiff-81.jpg │ │ │ │ ├── vdiff-82.jpg │ │ │ │ ├── vdiff-83.jpg │ │ │ │ ├── vdiff-84.jpg │ │ │ │ ├── vdiff-85.jpg │ │ │ │ ├── vdiff-86.jpg │ │ │ │ ├── vdiff-87.jpg │ │ │ │ ├── vdiff-88.jpg │ │ │ │ ├── vdiff-89.jpg │ │ │ │ ├── vdiff-9.jpg │ │ │ │ ├── vdiff-90.jpg │ │ │ │ ├── vdiff-91.jpg │ │ │ │ ├── vdiff-92.jpg │ │ │ │ ├── vdiff-93.jpg │ │ │ │ ├── vdiff-94.jpg │ │ │ │ ├── vdiff-95.jpg │ │ │ │ ├── vdiff-96.jpg │ │ │ │ ├── vdiff-97.jpg │ │ │ │ ├── vdiff-98.jpg │ │ │ │ └── vdiff-99.jpg │ │ │ └── video │ │ │ │ ├── video-1.jpg │ │ │ │ ├── video-10.jpg │ │ │ │ ├── video-100.jpg │ │ │ │ ├── video-11.jpg │ │ │ │ ├── video-12.jpg │ │ │ │ ├── video-13.jpg │ │ │ │ ├── video-14.jpg │ │ │ │ ├── video-15.jpg │ │ │ │ ├── video-16.jpg │ │ │ │ ├── video-17.jpg │ │ │ │ ├── video-18.jpg │ │ │ │ ├── video-19.jpg │ │ │ │ ├── video-2.jpg │ │ │ │ ├── video-20.jpg │ │ │ │ ├── video-21.jpg │ │ │ │ ├── video-22.jpg │ │ │ │ ├── video-23.jpg │ │ │ │ ├── video-24.jpg │ │ │ │ ├── video-25.jpg │ │ │ │ ├── video-26.jpg │ │ │ │ ├── video-27.jpg │ │ │ │ ├── video-28.jpg │ │ │ │ ├── video-29.jpg │ │ │ │ ├── video-3.jpg │ │ │ │ ├── video-30.jpg │ │ │ │ ├── video-31.jpg │ │ │ │ ├── video-32.jpg │ │ │ │ ├── video-33.jpg │ │ │ │ ├── video-34.jpg │ │ │ │ ├── video-35.jpg │ │ │ │ ├── video-36.jpg │ │ │ │ ├── video-37.jpg │ │ │ │ ├── video-38.jpg │ │ │ │ ├── video-39.jpg │ │ │ │ ├── video-4.jpg │ │ │ │ ├── video-40.jpg │ │ │ │ ├── video-41.jpg │ │ │ │ ├── video-42.jpg │ │ │ │ ├── video-43.jpg │ │ │ │ ├── video-44.jpg │ │ │ │ ├── video-45.jpg │ │ │ │ ├── video-46.jpg │ │ │ │ ├── video-47.jpg │ │ │ │ ├── video-48.jpg │ │ │ │ ├── video-49.jpg │ │ │ │ ├── video-5.jpg │ │ │ │ ├── video-50.jpg │ │ │ │ ├── video-51.jpg │ │ │ │ ├── video-52.jpg │ │ │ │ ├── video-53.jpg │ │ │ │ ├── video-54.jpg │ │ │ │ ├── video-55.jpg │ │ │ │ ├── video-56.jpg │ │ │ │ ├── video-57.jpg │ │ │ │ ├── video-58.jpg │ │ │ │ ├── video-59.jpg │ │ │ │ ├── video-6.jpg │ │ │ │ ├── video-60.jpg │ │ │ │ ├── video-61.jpg │ │ │ │ ├── video-62.jpg │ │ │ │ ├── video-63.jpg │ │ │ │ ├── video-64.jpg │ │ │ │ ├── video-65.jpg │ │ │ │ ├── video-66.jpg │ │ │ │ ├── video-67.jpg │ │ │ │ ├── video-68.jpg │ │ │ │ ├── video-69.jpg │ │ │ │ ├── video-7.jpg │ │ │ │ ├── video-70.jpg │ │ │ │ ├── video-71.jpg │ │ │ │ ├── video-72.jpg │ │ │ │ ├── video-73.jpg │ │ │ │ ├── video-74.jpg │ │ │ │ ├── video-75.jpg │ │ │ │ ├── video-76.jpg │ │ │ │ ├── video-77.jpg │ │ │ │ ├── video-78.jpg │ │ │ │ ├── video-79.jpg │ │ │ │ ├── video-8.jpg │ │ │ │ ├── video-80.jpg │ │ │ │ ├── video-81.jpg │ │ │ │ ├── video-82.jpg │ │ │ │ ├── video-83.jpg │ │ │ │ ├── video-84.jpg │ │ │ │ ├── video-85.jpg │ │ │ │ ├── video-86.jpg │ │ │ │ ├── video-87.jpg │ │ │ │ ├── video-88.jpg │ │ │ │ ├── video-89.jpg │ │ │ │ ├── video-9.jpg │ │ │ │ ├── video-90.jpg │ │ │ │ ├── video-91.jpg │ │ │ │ ├── video-92.jpg │ │ │ │ ├── video-93.jpg │ │ │ │ ├── video-94.jpg │ │ │ │ ├── video-95.jpg │ │ │ │ ├── video-96.jpg │ │ │ │ ├── video-97.jpg │ │ │ │ ├── video-98.jpg │ │ │ │ └── video-99.jpg │ │ └── storm │ │ │ ├── storm1.jpg │ │ │ ├── storm10.jpg │ │ │ ├── storm11.jpg │ │ │ ├── storm12.jpg │ │ │ ├── storm13.jpg │ │ │ ├── storm14.jpg │ │ │ ├── storm15.jpg │ │ │ ├── storm16.jpg │ │ │ ├── storm17.jpg │ │ │ ├── storm18.jpg │ │ │ ├── storm19.jpg │ │ │ ├── storm2.jpg │ │ │ ├── storm20.jpg │ │ │ ├── storm21.jpg │ │ │ ├── storm22.jpg │ │ │ ├── storm23.jpg │ │ │ ├── storm24.jpg │ │ │ ├── storm25.jpg │ │ │ ├── storm26.jpg │ │ │ ├── storm27.jpg │ │ │ ├── storm28.jpg │ │ │ ├── storm29.jpg │ │ │ ├── storm3.jpg │ │ │ ├── storm30.jpg │ │ │ ├── storm31.jpg │ │ │ ├── storm32.jpg │ │ │ ├── storm33.jpg │ │ │ ├── storm34.jpg │ │ │ ├── storm35.jpg │ │ │ ├── storm36.jpg │ │ │ ├── storm37.jpg │ │ │ ├── storm38.jpg │ │ │ ├── storm39.jpg │ │ │ ├── storm4.jpg │ │ │ ├── storm40.jpg │ │ │ ├── storm41.jpg │ │ │ ├── storm42.jpg │ │ │ ├── storm43.jpg │ │ │ ├── storm44.jpg │ │ │ ├── storm45.jpg │ │ │ ├── storm46.jpg │ │ │ ├── storm47.jpg │ │ │ ├── storm48.jpg │ │ │ ├── storm49.jpg │ │ │ ├── storm5.jpg │ │ │ ├── storm50.jpg │ │ │ ├── storm51.jpg │ │ │ ├── storm52.jpg │ │ │ ├── storm53.jpg │ │ │ ├── storm54.jpg │ │ │ ├── storm55.jpg │ │ │ ├── storm56.jpg │ │ │ ├── storm57.jpg │ │ │ ├── storm58.jpg │ │ │ ├── storm59.jpg │ │ │ ├── storm6.jpg │ │ │ ├── storm60.jpg │ │ │ ├── storm61.jpg │ │ │ ├── storm62.jpg │ │ │ ├── storm63.jpg │ │ │ ├── storm7.jpg │ │ │ ├── storm8.jpg │ │ │ └── storm9.jpg │ ├── Labels-Trinary │ │ ├── Videoframe │ │ │ ├── Difference │ │ │ │ ├── vdiff-10.jpg │ │ │ │ ├── vdiff-11.jpg │ │ │ │ ├── vdiff-12.jpg │ │ │ │ ├── vdiff-13.jpg │ │ │ │ ├── vdiff-14.jpg │ │ │ │ ├── vdiff-15.jpg │ │ │ │ ├── vdiff-16.jpg │ │ │ │ ├── vdiff-17.jpg │ │ │ │ ├── vdiff-18.jpg │ │ │ │ ├── vdiff-19.jpg │ │ │ │ ├── vdiff-2.jpg │ │ │ │ ├── vdiff-20.jpg │ │ │ │ ├── vdiff-21.jpg │ │ │ │ ├── vdiff-22.jpg │ │ │ │ ├── vdiff-23.jpg │ │ │ │ ├── vdiff-24.jpg │ │ │ │ ├── vdiff-25.jpg │ │ │ │ ├── vdiff-26.jpg │ │ │ │ ├── vdiff-27.jpg │ │ │ │ ├── vdiff-28.jpg │ │ │ │ ├── vdiff-29.jpg │ │ │ │ ├── vdiff-3.jpg │ │ │ │ ├── vdiff-30.jpg │ │ │ │ ├── vdiff-31.jpg │ │ │ │ ├── vdiff-32.jpg │ │ │ │ ├── vdiff-33.jpg │ │ │ │ ├── vdiff-34.jpg │ │ │ │ ├── vdiff-35.jpg │ │ │ │ ├── vdiff-36.jpg │ │ │ │ ├── vdiff-37.jpg │ │ │ │ ├── vdiff-38.jpg │ │ │ │ ├── vdiff-39.jpg │ │ │ │ ├── vdiff-4.jpg │ │ │ │ ├── vdiff-40.jpg │ │ │ │ ├── vdiff-41.jpg │ │ │ │ ├── vdiff-42.jpg │ │ │ │ ├── vdiff-43.jpg │ │ │ │ ├── vdiff-44.jpg │ │ │ │ ├── vdiff-45.jpg │ │ │ │ ├── vdiff-46.jpg │ │ │ │ ├── vdiff-47.jpg │ │ │ │ ├── vdiff-48.jpg │ │ │ │ ├── vdiff-49.jpg │ │ │ │ ├── vdiff-5.jpg │ │ │ │ ├── vdiff-50.jpg │ │ │ │ ├── vdiff-51.jpg │ │ │ │ ├── vdiff-52.jpg │ │ │ │ ├── vdiff-53.jpg │ │ │ │ ├── vdiff-54.jpg │ │ │ │ ├── vdiff-55.jpg │ │ │ │ ├── vdiff-56.jpg │ │ │ │ ├── vdiff-57.jpg │ │ │ │ ├── vdiff-58.jpg │ │ │ │ ├── vdiff-59.jpg │ │ │ │ ├── vdiff-6.jpg │ │ │ │ ├── vdiff-60.jpg │ │ │ │ ├── vdiff-61.jpg │ │ │ │ ├── vdiff-62.jpg │ │ │ │ ├── vdiff-63.jpg │ │ │ │ ├── vdiff-64.jpg │ │ │ │ ├── vdiff-65.jpg │ │ │ │ ├── vdiff-66.jpg │ │ │ │ ├── vdiff-67.jpg │ │ │ │ ├── vdiff-68.jpg │ │ │ │ ├── vdiff-69.jpg │ │ │ │ ├── vdiff-7.jpg │ │ │ │ ├── vdiff-70.jpg │ │ │ │ ├── vdiff-71.jpg │ │ │ │ ├── vdiff-72.jpg │ │ │ │ ├── vdiff-73.jpg │ │ │ │ ├── vdiff-74.jpg │ │ │ │ ├── vdiff-75.jpg │ │ │ │ ├── vdiff-76.jpg │ │ │ │ ├── vdiff-77.jpg │ │ │ │ ├── vdiff-78.jpg │ │ │ │ ├── vdiff-79.jpg │ │ │ │ ├── vdiff-8.jpg │ │ │ │ ├── vdiff-80.jpg │ │ │ │ ├── vdiff-81.jpg │ │ │ │ ├── vdiff-82.jpg │ │ │ │ ├── vdiff-83.jpg │ │ │ │ ├── vdiff-84.jpg │ │ │ │ ├── vdiff-85.jpg │ │ │ │ ├── vdiff-86.jpg │ │ │ │ ├── vdiff-87.jpg │ │ │ │ ├── vdiff-88.jpg │ │ │ │ ├── vdiff-89.jpg │ │ │ │ ├── vdiff-9.jpg │ │ │ │ ├── vdiff-90.jpg │ │ │ │ ├── vdiff-91.jpg │ │ │ │ ├── vdiff-92.jpg │ │ │ │ ├── vdiff-93.jpg │ │ │ │ ├── vdiff-94.jpg │ │ │ │ ├── vdiff-95.jpg │ │ │ │ ├── vdiff-96.jpg │ │ │ │ ├── vdiff-97.jpg │ │ │ │ ├── vdiff-98.jpg │ │ │ │ └── vdiff-99.jpg │ │ │ └── video │ │ │ │ ├── video-1.jpg │ │ │ │ ├── video-10.jpg │ │ │ │ ├── video-100.jpg │ │ │ │ ├── video-11.jpg │ │ │ │ ├── video-12.jpg │ │ │ │ ├── video-13.jpg │ │ │ │ ├── video-14.jpg │ │ │ │ ├── video-15.jpg │ │ │ │ ├── video-16.jpg │ │ │ │ ├── video-17.jpg │ │ │ │ ├── video-18.jpg │ │ │ │ ├── video-19.jpg │ │ │ │ ├── video-2.jpg │ │ │ │ ├── video-20.jpg │ │ │ │ ├── video-21.jpg │ │ │ │ ├── video-22.jpg │ │ │ │ ├── video-23.jpg │ │ │ │ ├── video-24.jpg │ │ │ │ ├── video-25.jpg │ │ │ │ ├── video-26.jpg │ │ │ │ ├── video-27.jpg │ │ │ │ ├── video-28.jpg │ │ │ │ ├── video-29.jpg │ │ │ │ ├── video-3.jpg │ │ │ │ ├── video-30.jpg │ │ │ │ ├── video-31.jpg │ │ │ │ ├── video-32.jpg │ │ │ │ ├── video-33.jpg │ │ │ │ ├── video-34.jpg │ │ │ │ ├── video-35.jpg │ │ │ │ ├── video-36.jpg │ │ │ │ ├── video-37.jpg │ │ │ │ ├── video-38.jpg │ │ │ │ ├── video-39.jpg │ │ │ │ ├── video-4.jpg │ │ │ │ ├── video-40.jpg │ │ │ │ ├── video-41.jpg │ │ │ │ ├── video-42.jpg │ │ │ │ ├── video-43.jpg │ │ │ │ ├── video-44.jpg │ │ │ │ ├── video-45.jpg │ │ │ │ ├── video-46.jpg │ │ │ │ ├── video-47.jpg │ │ │ │ ├── video-48.jpg │ │ │ │ ├── video-49.jpg │ │ │ │ ├── video-5.jpg │ │ │ │ ├── video-50.jpg │ │ │ │ ├── video-51.jpg │ │ │ │ ├── video-52.jpg │ │ │ │ ├── video-53.jpg │ │ │ │ ├── video-54.jpg │ │ │ │ ├── video-55.jpg │ │ │ │ ├── video-56.jpg │ │ │ │ ├── video-57.jpg │ │ │ │ ├── video-58.jpg │ │ │ │ ├── video-59.jpg │ │ │ │ ├── video-6.jpg │ │ │ │ ├── video-60.jpg │ │ │ │ ├── video-61.jpg │ │ │ │ ├── video-62.jpg │ │ │ │ ├── video-63.jpg │ │ │ │ ├── video-64.jpg │ │ │ │ ├── video-65.jpg │ │ │ │ ├── video-66.jpg │ │ │ │ ├── video-67.jpg │ │ │ │ ├── video-68.jpg │ │ │ │ ├── video-69.jpg │ │ │ │ ├── video-7.jpg │ │ │ │ ├── video-70.jpg │ │ │ │ ├── video-71.jpg │ │ │ │ ├── video-72.jpg │ │ │ │ ├── video-73.jpg │ │ │ │ ├── video-74.jpg │ │ │ │ ├── video-75.jpg │ │ │ │ ├── video-76.jpg │ │ │ │ ├── video-77.jpg │ │ │ │ ├── video-78.jpg │ │ │ │ ├── video-79.jpg │ │ │ │ ├── video-8.jpg │ │ │ │ ├── video-80.jpg │ │ │ │ ├── video-81.jpg │ │ │ │ ├── video-82.jpg │ │ │ │ ├── video-83.jpg │ │ │ │ ├── video-84.jpg │ │ │ │ ├── video-85.jpg │ │ │ │ ├── video-86.jpg │ │ │ │ ├── video-87.jpg │ │ │ │ ├── video-88.jpg │ │ │ │ ├── video-89.jpg │ │ │ │ ├── video-9.jpg │ │ │ │ ├── video-90.jpg │ │ │ │ ├── video-91.jpg │ │ │ │ ├── video-92.jpg │ │ │ │ ├── video-93.jpg │ │ │ │ ├── video-94.jpg │ │ │ │ ├── video-95.jpg │ │ │ │ ├── video-96.jpg │ │ │ │ ├── video-97.jpg │ │ │ │ ├── video-98.jpg │ │ │ │ └── video-99.jpg │ │ ├── no-strom │ │ │ ├── no_storm1.jpg │ │ │ ├── no_storm10.jpg │ │ │ ├── no_storm11.jpg │ │ │ ├── no_storm12.jpg │ │ │ ├── no_storm13.jpg │ │ │ ├── no_storm14.jpg │ │ │ ├── no_storm15.jpg │ │ │ ├── no_storm16.jpg │ │ │ ├── no_storm17.jpg │ │ │ ├── no_storm18.jpg │ │ │ ├── no_storm19.jpg │ │ │ ├── no_storm2.jpg │ │ │ ├── no_storm20.jpg │ │ │ ├── no_storm21.jpg │ │ │ ├── no_storm22.jpg │ │ │ ├── no_storm23.jpg │ │ │ ├── no_storm24.jpg │ │ │ ├── no_storm25.jpg │ │ │ ├── no_storm3.jpg │ │ │ ├── no_storm4.jpg │ │ │ ├── no_storm5.jpg │ │ │ ├── no_storm6.jpg │ │ │ ├── no_storm7.jpg │ │ │ ├── no_storm8.jpg │ │ │ └── no_storm9.jpg │ │ └── storm │ │ │ ├── storm1.jpg │ │ │ ├── storm10.jpg │ │ │ ├── storm11.jpg │ │ │ ├── storm12.jpg │ │ │ ├── storm13.jpg │ │ │ ├── storm14.jpg │ │ │ ├── storm15.jpg │ │ │ ├── storm16.jpg │ │ │ ├── storm17.jpg │ │ │ ├── storm18.jpg │ │ │ ├── storm19.jpg │ │ │ ├── storm2.jpg │ │ │ ├── storm20.jpg │ │ │ ├── storm21.jpg │ │ │ ├── storm22.jpg │ │ │ ├── storm23.jpg │ │ │ ├── storm24.jpg │ │ │ ├── storm25.jpg │ │ │ ├── storm26.jpg │ │ │ ├── storm27.jpg │ │ │ ├── storm28.jpg │ │ │ ├── storm29.jpg │ │ │ ├── storm3.jpg │ │ │ ├── storm30.jpg │ │ │ ├── storm31.jpg │ │ │ ├── storm32.jpg │ │ │ ├── storm33.jpg │ │ │ ├── storm34.jpg │ │ │ ├── storm35.jpg │ │ │ ├── storm36.jpg │ │ │ ├── storm37.jpg │ │ │ ├── storm38.jpg │ │ │ ├── storm39.jpg │ │ │ ├── storm4.jpg │ │ │ ├── storm40.jpg │ │ │ ├── storm41.jpg │ │ │ ├── storm42.jpg │ │ │ ├── storm43.jpg │ │ │ ├── storm44.jpg │ │ │ ├── storm45.jpg │ │ │ ├── storm46.jpg │ │ │ ├── storm47.jpg │ │ │ ├── storm48.jpg │ │ │ ├── storm49.jpg │ │ │ ├── storm5.jpg │ │ │ ├── storm50.jpg │ │ │ ├── storm51.jpg │ │ │ ├── storm52.jpg │ │ │ ├── storm53.jpg │ │ │ ├── storm54.jpg │ │ │ ├── storm55.jpg │ │ │ ├── storm56.jpg │ │ │ ├── storm57.jpg │ │ │ ├── storm58.jpg │ │ │ ├── storm59.jpg │ │ │ ├── storm6.jpg │ │ │ ├── storm60.jpg │ │ │ ├── storm61.jpg │ │ │ ├── storm62.jpg │ │ │ ├── storm63.jpg │ │ │ ├── storm7.jpg │ │ │ ├── storm8.jpg │ │ │ └── storm9.jpg │ ├── Original │ │ ├── No-storm │ │ │ ├── no_storm1.jpg │ │ │ ├── no_storm10.jpg │ │ │ ├── no_storm11.jpg │ │ │ ├── no_storm12.jpg │ │ │ ├── no_storm13.jpg │ │ │ ├── no_storm14.jpg │ │ │ ├── no_storm15.jpg │ │ │ ├── no_storm16.jpg │ │ │ ├── no_storm17.jpg │ │ │ ├── no_storm18.jpg │ │ │ ├── no_storm19.jpg │ │ │ ├── no_storm2.jpg │ │ │ ├── no_storm20.jpg │ │ │ ├── no_storm21.jpg │ │ │ ├── no_storm22.jpg │ │ │ ├── no_storm23.jpg │ │ │ ├── no_storm24.jpg │ │ │ ├── no_storm25.jpg │ │ │ ├── no_storm3.jpg │ │ │ ├── no_storm4.jpg │ │ │ ├── no_storm5.jpg │ │ │ ├── no_storm6.jpg │ │ │ ├── no_storm7.jpg │ │ │ ├── no_storm8.jpg │ │ │ └── no_storm9.jpg │ │ ├── Videoframe │ │ │ ├── Difference │ │ │ │ ├── vdiff-10.jpg │ │ │ │ ├── vdiff-11.jpg │ │ │ │ ├── vdiff-12.jpg │ │ │ │ ├── vdiff-13.jpg │ │ │ │ ├── vdiff-14.jpg │ │ │ │ ├── vdiff-15.jpg │ │ │ │ ├── vdiff-16.jpg │ │ │ │ ├── vdiff-17.jpg │ │ │ │ ├── vdiff-18.jpg │ │ │ │ ├── vdiff-19.jpg │ │ │ │ ├── vdiff-2.jpg │ │ │ │ ├── vdiff-20.jpg │ │ │ │ ├── vdiff-21.jpg │ │ │ │ ├── vdiff-22.jpg │ │ │ │ ├── vdiff-23.jpg │ │ │ │ ├── vdiff-24.jpg │ │ │ │ ├── vdiff-25.jpg │ │ │ │ ├── vdiff-26.jpg │ │ │ │ ├── vdiff-27.jpg │ │ │ │ ├── vdiff-28.jpg │ │ │ │ ├── vdiff-29.jpg │ │ │ │ ├── vdiff-3.jpg │ │ │ │ ├── vdiff-30.jpg │ │ │ │ ├── vdiff-31.jpg │ │ │ │ ├── vdiff-32.jpg │ │ │ │ ├── vdiff-33.jpg │ │ │ │ ├── vdiff-34.jpg │ │ │ │ ├── vdiff-35.jpg │ │ │ │ ├── vdiff-36.jpg │ │ │ │ ├── vdiff-37.jpg │ │ │ │ ├── vdiff-38.jpg │ │ │ │ ├── vdiff-39.jpg │ │ │ │ ├── vdiff-4.jpg │ │ │ │ ├── vdiff-40.jpg │ │ │ │ ├── vdiff-41.jpg │ │ │ │ ├── vdiff-42.jpg │ │ │ │ ├── vdiff-43.jpg │ │ │ │ ├── vdiff-44.jpg │ │ │ │ ├── vdiff-45.jpg │ │ │ │ ├── vdiff-46.jpg │ │ │ │ ├── vdiff-47.jpg │ │ │ │ ├── vdiff-48.jpg │ │ │ │ ├── vdiff-49.jpg │ │ │ │ ├── vdiff-5.jpg │ │ │ │ ├── vdiff-50.jpg │ │ │ │ ├── vdiff-51.jpg │ │ │ │ ├── vdiff-52.jpg │ │ │ │ ├── vdiff-53.jpg │ │ │ │ ├── vdiff-54.jpg │ │ │ │ ├── vdiff-55.jpg │ │ │ │ ├── vdiff-56.jpg │ │ │ │ ├── vdiff-57.jpg │ │ │ │ ├── vdiff-58.jpg │ │ │ │ ├── vdiff-59.jpg │ │ │ │ ├── vdiff-6.jpg │ │ │ │ ├── vdiff-60.jpg │ │ │ │ ├── vdiff-61.jpg │ │ │ │ ├── vdiff-62.jpg │ │ │ │ ├── vdiff-63.jpg │ │ │ │ ├── vdiff-64.jpg │ │ │ │ ├── vdiff-65.jpg │ │ │ │ ├── vdiff-66.jpg │ │ │ │ ├── vdiff-67.jpg │ │ │ │ ├── vdiff-68.jpg │ │ │ │ ├── vdiff-69.jpg │ │ │ │ ├── vdiff-7.jpg │ │ │ │ ├── vdiff-70.jpg │ │ │ │ ├── vdiff-71.jpg │ │ │ │ ├── vdiff-72.jpg │ │ │ │ ├── vdiff-73.jpg │ │ │ │ ├── vdiff-74.jpg │ │ │ │ ├── vdiff-75.jpg │ │ │ │ ├── vdiff-76.jpg │ │ │ │ ├── vdiff-77.jpg │ │ │ │ ├── vdiff-78.jpg │ │ │ │ ├── vdiff-79.jpg │ │ │ │ ├── vdiff-8.jpg │ │ │ │ ├── vdiff-80.jpg │ │ │ │ ├── vdiff-81.jpg │ │ │ │ ├── vdiff-82.jpg │ │ │ │ ├── vdiff-83.jpg │ │ │ │ ├── vdiff-84.jpg │ │ │ │ ├── vdiff-85.jpg │ │ │ │ ├── vdiff-86.jpg │ │ │ │ ├── vdiff-87.jpg │ │ │ │ ├── vdiff-88.jpg │ │ │ │ ├── vdiff-89.jpg │ │ │ │ ├── vdiff-9.jpg │ │ │ │ ├── vdiff-90.jpg │ │ │ │ ├── vdiff-91.jpg │ │ │ │ ├── vdiff-92.jpg │ │ │ │ ├── vdiff-93.jpg │ │ │ │ ├── vdiff-94.jpg │ │ │ │ ├── vdiff-95.jpg │ │ │ │ ├── vdiff-96.jpg │ │ │ │ ├── vdiff-97.jpg │ │ │ │ ├── vdiff-98.jpg │ │ │ │ └── vdiff-99.jpg │ │ │ └── video │ │ │ │ ├── video-1.jpg │ │ │ │ ├── video-10.jpg │ │ │ │ ├── video-100.jpg │ │ │ │ ├── video-11.jpg │ │ │ │ ├── video-12.jpg │ │ │ │ ├── video-13.jpg │ │ │ │ ├── video-14.jpg │ │ │ │ ├── video-15.jpg │ │ │ │ ├── video-16.jpg │ │ │ │ ├── video-17.jpg │ │ │ │ ├── video-18.jpg │ │ │ │ ├── video-19.jpg │ │ │ │ ├── video-2.jpg │ │ │ │ ├── video-20.jpg │ │ │ │ ├── video-21.jpg │ │ │ │ ├── video-22.jpg │ │ │ │ ├── video-23.jpg │ │ │ │ ├── video-24.jpg │ │ │ │ ├── video-25.jpg │ │ │ │ ├── video-26.jpg │ │ │ │ ├── video-27.jpg │ │ │ │ ├── video-28.jpg │ │ │ │ ├── video-29.jpg │ │ │ │ ├── video-3.jpg │ │ │ │ ├── video-30.jpg │ │ │ │ ├── video-31.jpg │ │ │ │ ├── video-32.jpg │ │ │ │ ├── video-33.jpg │ │ │ │ ├── video-34.jpg │ │ │ │ ├── video-35.jpg │ │ │ │ ├── video-36.jpg │ │ │ │ ├── video-37.jpg │ │ │ │ ├── video-38.jpg │ │ │ │ ├── video-39.jpg │ │ │ │ ├── video-4.jpg │ │ │ │ ├── video-40.jpg │ │ │ │ ├── video-41.jpg │ │ │ │ ├── video-42.jpg │ │ │ │ ├── video-43.jpg │ │ │ │ ├── video-44.jpg │ │ │ │ ├── video-45.jpg │ │ │ │ ├── video-46.jpg │ │ │ │ ├── video-47.jpg │ │ │ │ ├── video-48.jpg │ │ │ │ ├── video-49.jpg │ │ │ │ ├── video-5.jpg │ │ │ │ ├── video-50.jpg │ │ │ │ ├── video-51.jpg │ │ │ │ ├── video-52.jpg │ │ │ │ ├── video-53.jpg │ │ │ │ ├── video-54.jpg │ │ │ │ ├── video-55.jpg │ │ │ │ ├── video-56.jpg │ │ │ │ ├── video-57.jpg │ │ │ │ ├── video-58.jpg │ │ │ │ ├── video-59.jpg │ │ │ │ ├── video-6.jpg │ │ │ │ ├── video-60.jpg │ │ │ │ ├── video-61.jpg │ │ │ │ ├── video-62.jpg │ │ │ │ ├── video-63.jpg │ │ │ │ ├── video-64.jpg │ │ │ │ ├── video-65.jpg │ │ │ │ ├── video-66.jpg │ │ │ │ ├── video-67.jpg │ │ │ │ ├── video-68.jpg │ │ │ │ ├── video-69.jpg │ │ │ │ ├── video-7.jpg │ │ │ │ ├── video-70.jpg │ │ │ │ ├── video-71.jpg │ │ │ │ ├── video-72.jpg │ │ │ │ ├── video-73.jpg │ │ │ │ ├── video-74.jpg │ │ │ │ ├── video-75.jpg │ │ │ │ ├── video-76.jpg │ │ │ │ ├── video-77.jpg │ │ │ │ ├── video-78.jpg │ │ │ │ ├── video-79.jpg │ │ │ │ ├── video-8.jpg │ │ │ │ ├── video-80.jpg │ │ │ │ ├── video-81.jpg │ │ │ │ ├── video-82.jpg │ │ │ │ ├── video-83.jpg │ │ │ │ ├── video-84.jpg │ │ │ │ ├── video-85.jpg │ │ │ │ ├── video-86.jpg │ │ │ │ ├── video-87.jpg │ │ │ │ ├── video-88.jpg │ │ │ │ ├── video-89.jpg │ │ │ │ ├── video-9.jpg │ │ │ │ ├── video-90.jpg │ │ │ │ ├── video-91.jpg │ │ │ │ ├── video-92.jpg │ │ │ │ ├── video-93.jpg │ │ │ │ ├── video-94.jpg │ │ │ │ ├── video-95.jpg │ │ │ │ ├── video-96.jpg │ │ │ │ ├── video-97.jpg │ │ │ │ ├── video-98.jpg │ │ │ │ └── video-99.jpg │ │ └── storm │ │ │ ├── storm1.jpg │ │ │ ├── storm10.jpg │ │ │ ├── storm11.jpg │ │ │ ├── storm12.jpg │ │ │ ├── storm13.jpg │ │ │ ├── storm14.jpg │ │ │ ├── storm15.jpg │ │ │ ├── storm16.jpg │ │ │ ├── storm17.jpg │ │ │ ├── storm18.jpg │ │ │ ├── storm19.jpg │ │ │ ├── storm2.jpg │ │ │ ├── storm20.jpg │ │ │ ├── storm21.jpg │ │ │ ├── storm22.jpg │ │ │ ├── storm23.jpg │ │ │ ├── storm24.jpg │ │ │ ├── storm25.jpg │ │ │ ├── storm26.jpg │ │ │ ├── storm27.jpg │ │ │ ├── storm28.jpg │ │ │ ├── storm29.jpg │ │ │ ├── storm3.jpg │ │ │ ├── storm30.jpg │ │ │ ├── storm31.jpg │ │ │ ├── storm32.jpg │ │ │ ├── storm33.jpg │ │ │ ├── storm34.jpg │ │ │ ├── storm35.jpg │ │ │ ├── storm36.jpg │ │ │ ├── storm37.jpg │ │ │ ├── storm38.jpg │ │ │ ├── storm39.jpg │ │ │ ├── storm4.jpg │ │ │ ├── storm40.jpg │ │ │ ├── storm41.jpg │ │ │ ├── storm42.jpg │ │ │ ├── storm43.jpg │ │ │ ├── storm44.jpg │ │ │ ├── storm45.jpg │ │ │ ├── storm46.jpg │ │ │ ├── storm47.jpg │ │ │ ├── storm48.jpg │ │ │ ├── storm49.jpg │ │ │ ├── storm5.jpg │ │ │ ├── storm50.jpg │ │ │ ├── storm51.jpg │ │ │ ├── storm52.jpg │ │ │ ├── storm53.jpg │ │ │ ├── storm54.jpg │ │ │ ├── storm55.jpg │ │ │ ├── storm56.jpg │ │ │ ├── storm57.jpg │ │ │ ├── storm58.jpg │ │ │ ├── storm59.jpg │ │ │ ├── storm6.jpg │ │ │ ├── storm60.jpg │ │ │ ├── storm61.jpg │ │ │ ├── storm62.jpg │ │ │ ├── storm63.jpg │ │ │ ├── storm7.jpg │ │ │ ├── storm8.jpg │ │ │ └── storm9.jpg │ ├── Others │ │ └── P-2.jpg │ ├── benchmark_qiskit_dataset.png │ └── cirquit.png ├── requirements.txt └── result │ ├── AmplitudeEncording.png │ ├── AmplitudeFilter │ ├── Amplitude-filter-0.jpg │ ├── Amplitude-filter-1.jpg │ ├── Amplitude-filter-10.jpg │ ├── Amplitude-filter-11.jpg │ ├── Amplitude-filter-12.jpg │ ├── Amplitude-filter-13.jpg │ ├── Amplitude-filter-14.jpg │ ├── Amplitude-filter-15.jpg │ ├── Amplitude-filter-16.jpg │ ├── Amplitude-filter-17.jpg │ ├── Amplitude-filter-18.jpg │ ├── Amplitude-filter-19.jpg │ ├── Amplitude-filter-2.jpg │ ├── Amplitude-filter-20.jpg │ ├── Amplitude-filter-21.jpg │ ├── Amplitude-filter-22.jpg │ ├── Amplitude-filter-23.jpg │ ├── Amplitude-filter-24.jpg │ ├── Amplitude-filter-25.jpg │ ├── Amplitude-filter-26.jpg │ ├── Amplitude-filter-27.jpg │ ├── Amplitude-filter-28.jpg │ ├── Amplitude-filter-29.jpg │ ├── Amplitude-filter-3.jpg │ ├── Amplitude-filter-30.jpg │ ├── Amplitude-filter-31.jpg │ ├── Amplitude-filter-32.jpg │ ├── Amplitude-filter-33.jpg │ ├── Amplitude-filter-34.jpg │ ├── Amplitude-filter-35.jpg │ ├── Amplitude-filter-36.jpg │ ├── Amplitude-filter-37.jpg │ ├── Amplitude-filter-38.jpg │ ├── Amplitude-filter-39.jpg │ ├── Amplitude-filter-4.jpg │ ├── Amplitude-filter-40.jpg │ ├── Amplitude-filter-41.jpg │ ├── Amplitude-filter-42.jpg │ ├── Amplitude-filter-43.jpg │ ├── Amplitude-filter-44.jpg │ ├── Amplitude-filter-45.jpg │ ├── Amplitude-filter-46.jpg │ ├── Amplitude-filter-47.jpg │ ├── Amplitude-filter-48.jpg │ ├── Amplitude-filter-49.jpg │ ├── Amplitude-filter-5.jpg │ ├── Amplitude-filter-6.jpg │ ├── Amplitude-filter-7.jpg │ ├── Amplitude-filter-8.jpg │ ├── Amplitude-filter-9.jpg │ └── AmplitudeFilter.gif │ ├── Grover Search │ ├── Input Imageb.png │ ├── output-itr-0.png │ ├── output-itr-1.png │ ├── output-itr-2.png │ ├── output-itr-3.png │ ├── output-itr-4.png │ ├── output-itr-5.png │ ├── output-itr-6.png │ └── output.png │ ├── Image │ ├── output.png │ ├── output1.png │ ├── output2.png │ └── output3.png │ ├── QNN-Result │ ├── PQC8x8x10.png │ ├── QNN-output.png │ ├── output.png │ ├── output1.png │ └── output_orgin.png │ ├── Video-filtering │ ├── video-0.jpg │ ├── video-1.jpg │ ├── video-10.jpg │ ├── video-11.jpg │ ├── video-12.jpg │ ├── video-13.jpg │ ├── video-14.jpg │ ├── video-15.jpg │ ├── video-16.jpg │ ├── video-17.jpg │ ├── video-18.jpg │ ├── video-19.jpg │ ├── video-2.jpg │ ├── video-20.jpg │ ├── video-21.jpg │ ├── video-22.jpg │ ├── video-23.jpg │ ├── video-24.jpg │ ├── video-25.jpg │ ├── video-26.jpg │ ├── video-27.jpg │ ├── video-28.jpg │ ├── video-29.jpg │ ├── video-3.jpg │ ├── video-30.jpg │ ├── video-31.jpg │ ├── video-32.jpg │ ├── video-33.jpg │ ├── video-34.jpg │ ├── video-35.jpg │ ├── video-36.jpg │ ├── video-37.jpg │ ├── video-38.jpg │ ├── video-39.jpg │ ├── video-4.jpg │ ├── video-40.jpg │ ├── video-41.jpg │ ├── video-42.jpg │ ├── video-43.jpg │ ├── video-44.jpg │ ├── video-45.jpg │ ├── video-46.jpg │ ├── video-47.jpg │ ├── video-48.jpg │ ├── video-49.jpg │ ├── video-5.jpg │ ├── video-50.jpg │ ├── video-51.jpg │ ├── video-52.jpg │ ├── video-53.jpg │ ├── video-54.jpg │ ├── video-55.jpg │ ├── video-56.jpg │ ├── video-57.jpg │ ├── video-58.jpg │ ├── video-59.jpg │ ├── video-6.jpg │ ├── video-60.jpg │ ├── video-61.jpg │ ├── video-62.jpg │ ├── video-63.jpg │ ├── video-64.jpg │ ├── video-65.jpg │ ├── video-66.jpg │ ├── video-67.jpg │ ├── video-68.jpg │ ├── video-69.jpg │ ├── video-7.jpg │ ├── video-70.jpg │ ├── video-71.jpg │ ├── video-72.jpg │ ├── video-73.jpg │ ├── video-74.jpg │ ├── video-75.jpg │ ├── video-76.jpg │ ├── video-77.jpg │ ├── video-78.jpg │ ├── video-79.jpg │ ├── video-8.jpg │ ├── video-80.jpg │ ├── video-81.jpg │ ├── video-82.jpg │ ├── video-83.jpg │ ├── video-84.jpg │ ├── video-85.jpg │ ├── video-86.jpg │ ├── video-87.jpg │ ├── video-88.jpg │ ├── video-89.jpg │ ├── video-9.jpg │ ├── video-90.jpg │ ├── video-91.jpg │ ├── video-92.jpg │ ├── video-93.jpg │ ├── video-94.jpg │ ├── video-95.jpg │ ├── video-96.jpg │ ├── video-97.jpg │ ├── video-98.jpg │ ├── video-99.jpg │ └── video.gif │ ├── circuits │ ├── Circuit-AmplitudeEmbedding.png │ ├── Circuit-DifusserGate.png │ ├── Circuit-Grover.png │ ├── Circuit-QNN-Circuit15.png │ ├── Circuit-QNN-Encoding.png │ └── Circuit-QNN.png │ └── pulse.png ├── The Sensors ├── .ipynb_checkpoints │ └── hack-twomodesqueezing-v4-checkpoint.ipynb ├── Quantum Microwave Medical Imaging - Jul-27-2021 - V2.docx ├── Quantum Sensing - Jul-28-2021 -JB.pptx ├── README.md ├── data_test07-28-21_05_04_22_AM.hdf5 ├── hack-twomodesqueezing-v4.ipynb └── utility.py ├── The Tomorrow ├── LICENSE ├── README.md ├── environment.yaml ├── images │ ├── 1_F5VRsKkQRzaBIxasDS-DNg.png │ ├── Endnote.jpg │ ├── Market.jpg │ ├── Other.jpg │ ├── Problems.jpg │ └── Title.png ├── just_run_it.ipynb ├── migdal_notebooks │ ├── 0_preprocessing.ipynb │ └── 1_qaoa_pennylane.ipynb ├── rb_notebooks │ ├── 01_map_generation_dwave.ipynb │ ├── 02_map_dwave.ipynb │ └── map_dwave_LeapHybridSampler.ipynb └── src │ └── test_test.py ├── TheSpinDoctors ├── .gitignore ├── Business_Application.md ├── Green_optimization_QuantumAnnealing.ipynb ├── Green_optimization_QuantumAnnealing_QAOA_IBM.ipynb ├── Green_optimization_QuantumAnnealing_QAOA_Rigetti.ipynb ├── Green_optimization_QuantumAnnealing_XL.ipynb ├── README.md ├── data │ ├── Monthly-hourly-load-values_2014_IT.xlsx │ ├── business.JPG │ └── sunset.jpg ├── presentation.pdf ├── requirements.txt └── src │ ├── __init__.py │ ├── main.py │ └── utils │ ├── BQM.py │ └── __init__.py ├── ZebraKet ├── .env ├── .gitignore ├── Alex test files │ ├── Create Data file.ipynb │ ├── Set Cover example.ipynb │ ├── bounded by item Knapsack.ipynb │ ├── cost.csv │ ├── fix-classical-solutions.ipynb │ ├── profit.csv │ ├── small_data_m.txt │ └── unbounded knapsack.ipynb ├── Business proposal.docx ├── Business_Application.md ├── README.md ├── ZebraKet.pptx ├── __init__.py ├── archive │ ├── profit-optimization.ipynb │ └── supplier-optimization.ipynb ├── config.py ├── data │ ├── README.md │ ├── SMALL-DATASET.csv │ ├── extra_large-cost-mock.csv │ ├── large-cost-mock.csv │ ├── medium-cost-mock.csv │ └── small-cost-mock.csv ├── environment.yml ├── models │ ├── AbstractQubo.py │ ├── ProfitQubo.py │ ├── SupplierQubo.py │ └── __init__.py ├── notebooks │ ├── .ipynb_checkpoints │ │ ├── CombinedQUBO-checkpoint.ipynb │ │ ├── KnapsackDQM-checkpoint.ipynb │ │ └── SetCoverBQM-checkpoint.ipynb │ ├── CombinedQUBO.ipynb │ ├── KnapsackDQM.ipynb │ ├── QuboChain.ipynb │ ├── README.md │ └── SetCoverBQM.ipynb ├── resources │ ├── PIC1.png │ ├── PIC2.png │ ├── PIC3.png │ ├── PIC4.jpg │ ├── PIC5.png │ ├── PIC6.png │ ├── ZebraKet Banner.png │ ├── ZebraKet Zoom Background.png │ ├── ZebraKet team.png │ ├── datatable1.png │ ├── datatable2.png │ ├── equation1.png │ ├── equation2.png │ ├── equation3.png │ ├── equation4.png │ ├── fig1.png │ ├── logo.png │ ├── logo_1.png │ ├── logo_2.png │ ├── process.jpg │ └── qubo-chain.png ├── seed │ └── seed_mock_data.py ├── services │ ├── Chain.py │ ├── __init__.py │ └── classical_optimizers.py └── utils │ ├── __init__.py │ └── data.py └── yiyaniQ ├── Portfolio_Optimization_Problem.ipynb ├── Quantum Baked ETFs (QBE).pdf ├── README.md ├── data ├── fundamentals_normalized.csv ├── light_featureDef.csv └── snp_500_hist.csv ├── figures ├── plots_MI_log_ret.png ├── plots_MI_price.png ├── plots_slecetedFeatures_log_ret.png ├── plots_slecetedFeatures_price.png ├── portfolio_dynamic_resutls.png └── portfolio_static_resutls.png ├── fundamentals_features.ipynb └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/.gitignore -------------------------------------------------------------------------------- /BosonQ Psi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/BosonQ Psi/README.md -------------------------------------------------------------------------------- /CDL_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CDL_logo.jpg -------------------------------------------------------------------------------- /CosmiQ/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/.DS_Store -------------------------------------------------------------------------------- /CosmiQ/.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/.githooks/pre-commit -------------------------------------------------------------------------------- /CosmiQ/.githooks/replace_by_git_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/.githooks/replace_by_git_vars.py -------------------------------------------------------------------------------- /CosmiQ/.github/workflows/binder-badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/.github/workflows/binder-badge.yml -------------------------------------------------------------------------------- /CosmiQ/CosmiQ Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/CosmiQ Presentation.pdf -------------------------------------------------------------------------------- /CosmiQ/DWave_challenge_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/DWave_challenge_solution.md -------------------------------------------------------------------------------- /CosmiQ/IBMQ_challenge_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/IBMQ_challenge_solution.md -------------------------------------------------------------------------------- /CosmiQ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/README.md -------------------------------------------------------------------------------- /CosmiQ/Xanadu_challenge_solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/Xanadu_challenge_solution.md -------------------------------------------------------------------------------- /CosmiQ/binder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/binder/README.md -------------------------------------------------------------------------------- /CosmiQ/binder/binder_readme_raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/binder/binder_readme_raw.md -------------------------------------------------------------------------------- /CosmiQ/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/data/.DS_Store -------------------------------------------------------------------------------- /CosmiQ/data/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/data/Untitled.ipynb -------------------------------------------------------------------------------- /CosmiQ/data/out.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/data/out.csv -------------------------------------------------------------------------------- /CosmiQ/dwave/RobustEqualSumPartitioning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/dwave/RobustEqualSumPartitioning.ipynb -------------------------------------------------------------------------------- /CosmiQ/dwave/dwave_formulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/dwave/dwave_formulation.ipynb -------------------------------------------------------------------------------- /CosmiQ/dwave/images/DWaveSolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/dwave/images/DWaveSolution.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/Presentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/Presentation.ipynb -------------------------------------------------------------------------------- /CosmiQ/ibmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/README.md -------------------------------------------------------------------------------- /CosmiQ/ibmq/class_gates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/class_gates.ipynb -------------------------------------------------------------------------------- /CosmiQ/ibmq/entanglement_sandbox.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/entanglement_sandbox.ipynb -------------------------------------------------------------------------------- /CosmiQ/ibmq/gate_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/gate_constructor.py -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/Anharmonic_oscillator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/Anharmonic_oscillator.gif -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/freq_calib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/freq_calib.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/h01_gate_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/h01_gate_plot.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/h123_gate_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/h123_gate_plot.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/h12_gate_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/h12_gate_plot.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/img_discriminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/img_discriminator.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/img_freq_sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/img_freq_sweep.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/img_rabi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/img_rabi.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/img_sideband_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/img_sideband_freq.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/images/y01_gate_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/images/y01_gate_plot.png -------------------------------------------------------------------------------- /CosmiQ/ibmq/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/requirements.txt -------------------------------------------------------------------------------- /CosmiQ/ibmq/waveform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/waveform.txt -------------------------------------------------------------------------------- /CosmiQ/ibmq/x_gate_alice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/ibmq/x_gate_alice.ipynb -------------------------------------------------------------------------------- /CosmiQ/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/.DS_Store -------------------------------------------------------------------------------- /CosmiQ/images/CDL_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/CDL_logo.jpg -------------------------------------------------------------------------------- /CosmiQ/images/DMRGbigsys1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/DMRGbigsys1.png -------------------------------------------------------------------------------- /CosmiQ/images/DMRGbigsys2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/DMRGbigsys2.png -------------------------------------------------------------------------------- /CosmiQ/images/QAOA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/QAOA1.png -------------------------------------------------------------------------------- /CosmiQ/images/baseEqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/baseEqn.png -------------------------------------------------------------------------------- /CosmiQ/images/fullDMRG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/fullDMRG.png -------------------------------------------------------------------------------- /CosmiQ/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img1.png -------------------------------------------------------------------------------- /CosmiQ/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img2.png -------------------------------------------------------------------------------- /CosmiQ/images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img3.png -------------------------------------------------------------------------------- /CosmiQ/images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img4.png -------------------------------------------------------------------------------- /CosmiQ/images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img5.png -------------------------------------------------------------------------------- /CosmiQ/images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img6.png -------------------------------------------------------------------------------- /CosmiQ/images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/img7.png -------------------------------------------------------------------------------- /CosmiQ/images/simpleDMRG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/simpleDMRG.png -------------------------------------------------------------------------------- /CosmiQ/images/simpleDMRGbigsys1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/simpleDMRGbigsys1.png -------------------------------------------------------------------------------- /CosmiQ/images/simpleDMRGbigsys2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/simpleDMRGbigsys2.png -------------------------------------------------------------------------------- /CosmiQ/images/technical1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/technical1.png -------------------------------------------------------------------------------- /CosmiQ/images/wall_street.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/images/wall_street.jpg -------------------------------------------------------------------------------- /CosmiQ/installation_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/installation_guide.md -------------------------------------------------------------------------------- /CosmiQ/writeup/CDL_Hackathon_cosmiQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/writeup/CDL_Hackathon_cosmiQ.pdf -------------------------------------------------------------------------------- /CosmiQ/writeup/CDL_Hackathon_cosmiQ.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/writeup/CDL_Hackathon_cosmiQ.tex -------------------------------------------------------------------------------- /CosmiQ/xanadu/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/.DS_Store -------------------------------------------------------------------------------- /CosmiQ/xanadu/PennylaneQAOA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/PennylaneQAOA.ipynb -------------------------------------------------------------------------------- /CosmiQ/xanadu/StrawberryFields.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/StrawberryFields.ipynb -------------------------------------------------------------------------------- /CosmiQ/xanadu/data/covid2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/data/covid2020.csv -------------------------------------------------------------------------------- /CosmiQ/xanadu/data/crisis2008.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/data/crisis2008.csv -------------------------------------------------------------------------------- /CosmiQ/xanadu/dataloader_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/dataloader_class.py -------------------------------------------------------------------------------- /CosmiQ/xanadu/dataloader_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/dataloader_test.ipynb -------------------------------------------------------------------------------- /CosmiQ/xanadu/flatnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/flatnetwork.py -------------------------------------------------------------------------------- /CosmiQ/xanadu/flatnetwork_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/flatnetwork_simple.py -------------------------------------------------------------------------------- /CosmiQ/xanadu/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/requirements.txt -------------------------------------------------------------------------------- /CosmiQ/xanadu/simple_dmrg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/CosmiQ/xanadu/simple_dmrg.py -------------------------------------------------------------------------------- /Error Corp/CDL_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Error Corp/CDL_utils.py -------------------------------------------------------------------------------- /Error Corp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Error Corp/README.md -------------------------------------------------------------------------------- /Error Corp/qutrit_gates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Error Corp/qutrit_gates.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/LICENSE -------------------------------------------------------------------------------- /Loo Boys/Business_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/Business_app.md -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/Euro_Simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/Euro_Simulation.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/Fantasy_Draft.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/Fantasy_Draft.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/Monte.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/Monte.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/Monte_players.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/Monte_players.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/Optimal_team_kit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/Optimal_team_kit.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/SOS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/SOS.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/SoccerOptimizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/SoccerOptimizer.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/best__trade.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/best__trade.ipynb -------------------------------------------------------------------------------- /Loo Boys/PythonNotebooks/betting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/PythonNotebooks/betting.ipynb -------------------------------------------------------------------------------- /Loo Boys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/README.md -------------------------------------------------------------------------------- /Loo Boys/data/2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/2018.csv -------------------------------------------------------------------------------- /Loo Boys/data/Matches.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/Matches.csv -------------------------------------------------------------------------------- /Loo Boys/data/basket.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/basket.csv -------------------------------------------------------------------------------- /Loo Boys/data/bet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/bet.csv -------------------------------------------------------------------------------- /Loo Boys/data/epl-2019-GMTStandardTime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/epl-2019-GMTStandardTime.csv -------------------------------------------------------------------------------- /Loo Boys/data/euroGroupStage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/euroGroupStage.csv -------------------------------------------------------------------------------- /Loo Boys/data/euroGroupStage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/euroGroupStage.xls -------------------------------------------------------------------------------- /Loo Boys/data/foot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/foot.csv -------------------------------------------------------------------------------- /Loo Boys/data/foot2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/foot2.csv -------------------------------------------------------------------------------- /Loo Boys/data/footy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/footy.csv -------------------------------------------------------------------------------- /Loo Boys/data/nfl_odds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/nfl_odds.csv -------------------------------------------------------------------------------- /Loo Boys/data/prem_table_2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/prem_table_2020.csv -------------------------------------------------------------------------------- /Loo Boys/data/roundOf16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/data/roundOf16.csv -------------------------------------------------------------------------------- /Loo Boys/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/1.jpg -------------------------------------------------------------------------------- /Loo Boys/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/2.jpg -------------------------------------------------------------------------------- /Loo Boys/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/3.jpg -------------------------------------------------------------------------------- /Loo Boys/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/4.jpg -------------------------------------------------------------------------------- /Loo Boys/img/bet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/bet.gif -------------------------------------------------------------------------------- /Loo Boys/img/bet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/bet.jpg -------------------------------------------------------------------------------- /Loo Boys/img/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/bus.jpg -------------------------------------------------------------------------------- /Loo Boys/img/cdl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/cdl.jpg -------------------------------------------------------------------------------- /Loo Boys/img/comp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/comp.jpg -------------------------------------------------------------------------------- /Loo Boys/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/img/logo.png -------------------------------------------------------------------------------- /Loo Boys/modules/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/.DS_Store -------------------------------------------------------------------------------- /Loo Boys/modules/football/draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/football/draft.py -------------------------------------------------------------------------------- /Loo Boys/modules/monte/playerStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/monte/playerStats.py -------------------------------------------------------------------------------- /Loo Boys/modules/monte/teamResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/monte/teamResults.py -------------------------------------------------------------------------------- /Loo Boys/modules/soccer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/soccer/.DS_Store -------------------------------------------------------------------------------- /Loo Boys/modules/soccer/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/soccer/prediction.py -------------------------------------------------------------------------------- /Loo Boys/modules/soccer/soccerBQM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/modules/soccer/soccerBQM.py -------------------------------------------------------------------------------- /Loo Boys/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Loo Boys/requirements.txt -------------------------------------------------------------------------------- /Opacity Quantum/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/.gitignore -------------------------------------------------------------------------------- /Opacity Quantum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/Makefile -------------------------------------------------------------------------------- /Opacity Quantum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/README.md -------------------------------------------------------------------------------- /Opacity Quantum/fig/opacity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/fig/opacity_logo.png -------------------------------------------------------------------------------- /Opacity Quantum/notebooks/qutrit_simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/notebooks/qutrit_simulation.ipynb -------------------------------------------------------------------------------- /Opacity Quantum/presentation/presentation_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/presentation/presentation_slides.pdf -------------------------------------------------------------------------------- /Opacity Quantum/requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter 2 | numpy 3 | matplotlib 4 | qutip 5 | qiskit -------------------------------------------------------------------------------- /Opacity Quantum/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/setup.py -------------------------------------------------------------------------------- /Opacity Quantum/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Opacity Quantum/src/calibration_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/src/calibration_utils.py -------------------------------------------------------------------------------- /Opacity Quantum/src/plotting_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/src/plotting_utils.py -------------------------------------------------------------------------------- /Opacity Quantum/src/shadows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Opacity Quantum/src/shadows.py -------------------------------------------------------------------------------- /Qilimanjaro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qilimanjaro/.gitignore -------------------------------------------------------------------------------- /Qilimanjaro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qilimanjaro/README.md -------------------------------------------------------------------------------- /Qilimanjaro/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.21.1 2 | matplotlib==3.4.2 3 | qiskit==0.28.0 4 | notebook==6.4.0 5 | -------------------------------------------------------------------------------- /Qilimanjaro/src/Qutrit_Classifier_Simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qilimanjaro/src/Qutrit_Classifier_Simulation.ipynb -------------------------------------------------------------------------------- /Qilimanjaro/src/data_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qilimanjaro/src/data_generation.py -------------------------------------------------------------------------------- /Qilimanjaro/src/qutrit_classif.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qilimanjaro/src/qutrit_classif.ipynb -------------------------------------------------------------------------------- /Quantum Finance/Business Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Finance/Business Application.md -------------------------------------------------------------------------------- /Quantum Finance/Discount on product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Finance/Discount on product.png -------------------------------------------------------------------------------- /Quantum Finance/Our approach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Finance/Our approach.png -------------------------------------------------------------------------------- /Quantum Finance/Quantum Dynamic Pricing Engine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Finance/Quantum Dynamic Pricing Engine.ipynb -------------------------------------------------------------------------------- /Quantum Finance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Finance/README.md -------------------------------------------------------------------------------- /Quantum Finance/Uniform sale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Finance/Uniform sale.png -------------------------------------------------------------------------------- /Quantum Oracles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/LICENSE -------------------------------------------------------------------------------- /Quantum Oracles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/README.md -------------------------------------------------------------------------------- /Quantum Oracles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quantum Oracles/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | -------------------------------------------------------------------------------- /Quantum Oracles/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/setup.py -------------------------------------------------------------------------------- /Quantum Oracles/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/dawson_nielsen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/src/solovay_kitaev/dawson_nielsen.py -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/gates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/gates/cliffords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/src/solovay_kitaev/gates/cliffords.py -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/gates/paulis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/src/solovay_kitaev/gates/paulis.py -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quantum Oracles/src/solovay_kitaev/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/src/solovay_kitaev/utils/utils.py -------------------------------------------------------------------------------- /Quantum Oracles/tests/basic_approximation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/tests/basic_approximation_test.py -------------------------------------------------------------------------------- /Quantum Oracles/tests/gc_decomposition_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Oracles/tests/gc_decomposition_test.py -------------------------------------------------------------------------------- /Quantum Vision/2021-CDL_MaxEnt_V2.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/2021-CDL_MaxEnt_V2.odp -------------------------------------------------------------------------------- /Quantum Vision/2021-CDL_MaxEnt_V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/2021-CDL_MaxEnt_V2.pdf -------------------------------------------------------------------------------- /Quantum Vision/Biologia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/Biologia.jpg -------------------------------------------------------------------------------- /Quantum Vision/Ex1_bio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/Ex1_bio.png -------------------------------------------------------------------------------- /Quantum Vision/Ex_Clima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/Ex_Clima.png -------------------------------------------------------------------------------- /Quantum Vision/Figures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/Figures.ipynb -------------------------------------------------------------------------------- /Quantum Vision/QuantumVision.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/QuantumVision.ipynb -------------------------------------------------------------------------------- /Quantum Vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/README.md -------------------------------------------------------------------------------- /Quantum Vision/fig0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/fig0.png -------------------------------------------------------------------------------- /Quantum Vision/fig_Ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/fig_Ex1.png -------------------------------------------------------------------------------- /Quantum Vision/fig_Ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/fig_Ex2.png -------------------------------------------------------------------------------- /Quantum Vision/fig_Ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/fig_Ex3.png -------------------------------------------------------------------------------- /Quantum Vision/fig_Ex4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/fig_Ex4.png -------------------------------------------------------------------------------- /Quantum Vision/fig_Ex5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/fig_Ex5.png -------------------------------------------------------------------------------- /Quantum Vision/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/function.py -------------------------------------------------------------------------------- /Quantum Vision/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/gold.png -------------------------------------------------------------------------------- /Quantum Vision/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Quantum Vision/hack.py -------------------------------------------------------------------------------- /Qunova Computing/GSE147507_Series6,16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/GSE147507_Series6,16.csv -------------------------------------------------------------------------------- /Qunova Computing/QVC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/QVC.py -------------------------------------------------------------------------------- /Qunova Computing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/README.md -------------------------------------------------------------------------------- /Qunova Computing/amp_encoding_training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/amp_encoding_training.ipynb -------------------------------------------------------------------------------- /Qunova Computing/covid19_data/GSE147507_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/covid19_data/GSE147507_sample.csv -------------------------------------------------------------------------------- /Qunova Computing/covid19_data/dim_reduc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/covid19_data/dim_reduc.ipynb -------------------------------------------------------------------------------- /Qunova Computing/covid19_data/pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/covid19_data/pca.png -------------------------------------------------------------------------------- /Qunova Computing/figures/RNAtranscriptome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/RNAtranscriptome.png -------------------------------------------------------------------------------- /Qunova Computing/figures/loss_plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/loss_plot.jpg -------------------------------------------------------------------------------- /Qunova Computing/figures/test_lables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/test_lables.png -------------------------------------------------------------------------------- /Qunova Computing/figures/train_lables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/train_lables.png -------------------------------------------------------------------------------- /Qunova Computing/figures/training_loss_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/training_loss_old.jpg -------------------------------------------------------------------------------- /Qunova Computing/figures/zzzpfm_c12_class_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/zzzpfm_c12_class_test.png -------------------------------------------------------------------------------- /Qunova Computing/figures/zzzpfm_c12_class_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/figures/zzzpfm_c12_class_train.png -------------------------------------------------------------------------------- /Qunova Computing/pyquil_circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/pyquil_circuits.py -------------------------------------------------------------------------------- /Qunova Computing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/requirements.txt -------------------------------------------------------------------------------- /Qunova Computing/rigetti_resources/beta_angles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/rigetti_resources/beta_angles.png -------------------------------------------------------------------------------- /Qunova Computing/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/test.ipynb -------------------------------------------------------------------------------- /Qunova Computing/test_qpu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/test_qpu.ipynb -------------------------------------------------------------------------------- /Qunova Computing/training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/training.ipynb -------------------------------------------------------------------------------- /Qunova Computing/training_pyquil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/training_pyquil.py -------------------------------------------------------------------------------- /Qunova Computing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/Qunova Computing/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/README.md -------------------------------------------------------------------------------- /SRRSA/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/.DS_Store -------------------------------------------------------------------------------- /SRRSA/Notebooks/Amplitude Encoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/Amplitude Encoding.ipynb -------------------------------------------------------------------------------- /SRRSA/Notebooks/Image_Amplitude Encoding_Filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/Image_Amplitude Encoding_Filter.ipynb -------------------------------------------------------------------------------- /SRRSA/Notebooks/Image_Grover_Alogrithm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/Image_Grover_Alogrithm.ipynb -------------------------------------------------------------------------------- /SRRSA/Notebooks/Image_Processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/Image_Processing.ipynb -------------------------------------------------------------------------------- /SRRSA/Notebooks/Image_QNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/Image_QNN.ipynb -------------------------------------------------------------------------------- /SRRSA/Notebooks/PennyLane_QSVM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/PennyLane_QSVM.ipynb -------------------------------------------------------------------------------- /SRRSA/Notebooks/Technical_Summary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/Technical_Summary.pdf -------------------------------------------------------------------------------- /SRRSA/Notebooks/mnist_experimental.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Notebooks/mnist_experimental.ipynb -------------------------------------------------------------------------------- /SRRSA/Pyfiles/AmplitueEncoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/AmplitueEncoding.py -------------------------------------------------------------------------------- /SRRSA/Pyfiles/ImageRead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/ImageRead.py -------------------------------------------------------------------------------- /SRRSA/Pyfiles/QNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/QNN.py -------------------------------------------------------------------------------- /SRRSA/Pyfiles/__pycache__/ImageRead.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/__pycache__/ImageRead.cpython-38.pyc -------------------------------------------------------------------------------- /SRRSA/Pyfiles/__pycache__/QNN.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/__pycache__/QNN.cpython-38.pyc -------------------------------------------------------------------------------- /SRRSA/Pyfiles/__pycache__/grover.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/__pycache__/grover.cpython-38.pyc -------------------------------------------------------------------------------- /SRRSA/Pyfiles/grover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/Pyfiles/grover.py -------------------------------------------------------------------------------- /SRRSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/README.md -------------------------------------------------------------------------------- /SRRSA/business/Aviation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/Aviation.jpg -------------------------------------------------------------------------------- /SRRSA/business/BusinessCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/BusinessCases.md -------------------------------------------------------------------------------- /SRRSA/business/WeatherForecast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/WeatherForecast.jpg -------------------------------------------------------------------------------- /SRRSA/business/aviationweather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/aviationweather.jpg -------------------------------------------------------------------------------- /SRRSA/business/business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/business.jpg -------------------------------------------------------------------------------- /SRRSA/business/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/logo.jpg -------------------------------------------------------------------------------- /SRRSA/business/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRRSA/business/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/business/video.gif -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/No-storm/no_storm9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/No-storm/no_storm9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm26.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm27.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm28.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm29.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm30.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm31.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm32.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm33.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm34.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm35.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm36.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm37.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm38.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm39.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm40.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm41.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm42.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm43.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm44.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm45.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm46.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm47.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm48.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm49.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm50.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm51.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm52.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm53.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm54.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm55.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm56.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm57.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm58.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm59.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm60.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm61.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm62.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm63.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Binary/storm/storm9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Binary/storm/storm9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/no-strom/no_storm9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/no-strom/no_storm9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm26.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm27.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm28.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm29.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm30.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm31.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm32.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm33.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm34.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm35.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm36.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm37.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm38.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm39.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm40.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm41.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm42.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm43.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm44.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm45.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm46.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm47.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm48.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm49.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm50.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm51.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm52.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm53.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm54.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm55.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm56.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm57.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm58.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm59.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm60.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm61.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm62.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm63.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Labels-Trinary/storm/storm9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Labels-Trinary/storm/storm9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/No-storm/no_storm9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/No-storm/no_storm9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-100.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-26.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-27.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-28.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-29.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-30.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-31.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-32.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-33.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-34.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-35.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-36.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-37.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-38.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-39.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-40.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-41.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-42.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-43.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-44.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-45.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-46.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-47.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-48.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-49.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-50.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-51.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-52.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-53.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-54.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-55.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-56.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-57.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-58.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-59.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-60.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-61.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-62.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-63.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-64.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-65.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-66.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-67.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-68.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-69.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-70.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-71.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/Videoframe/video/video-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/Videoframe/video/video-9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm1.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm10.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm11.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm12.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm13.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm14.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm15.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm16.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm17.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm18.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm19.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm20.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm21.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm22.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm23.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm24.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm25.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm26.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm27.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm28.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm29.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm3.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm30.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm31.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm32.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm33.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm34.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm35.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm36.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm37.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm38.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm39.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm4.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm40.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm41.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm42.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm43.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm44.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm45.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm46.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm47.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm48.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm49.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm5.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm50.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm51.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm52.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm53.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm54.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm55.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm56.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm57.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm58.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm59.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm6.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm60.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm61.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm62.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm63.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm7.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm8.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Original/storm/storm9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Original/storm/storm9.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/Others/P-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/Others/P-2.jpg -------------------------------------------------------------------------------- /SRRSA/dataset/benchmark_qiskit_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/benchmark_qiskit_dataset.png -------------------------------------------------------------------------------- /SRRSA/dataset/cirquit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/dataset/cirquit.png -------------------------------------------------------------------------------- /SRRSA/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/requirements.txt -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeEncording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeEncording.png -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-0.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-1.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-2.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-3.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-4.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-5.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-6.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-7.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-8.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/Amplitude-filter-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/Amplitude-filter-9.jpg -------------------------------------------------------------------------------- /SRRSA/result/AmplitudeFilter/AmplitudeFilter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/AmplitudeFilter/AmplitudeFilter.gif -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/Input Imageb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/Input Imageb.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-0.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-1.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-2.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-3.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-4.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-5.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output-itr-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output-itr-6.png -------------------------------------------------------------------------------- /SRRSA/result/Grover Search/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Grover Search/output.png -------------------------------------------------------------------------------- /SRRSA/result/Image/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Image/output.png -------------------------------------------------------------------------------- /SRRSA/result/Image/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Image/output1.png -------------------------------------------------------------------------------- /SRRSA/result/Image/output2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Image/output2.png -------------------------------------------------------------------------------- /SRRSA/result/Image/output3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Image/output3.png -------------------------------------------------------------------------------- /SRRSA/result/QNN-Result/PQC8x8x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/QNN-Result/PQC8x8x10.png -------------------------------------------------------------------------------- /SRRSA/result/QNN-Result/QNN-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/QNN-Result/QNN-output.png -------------------------------------------------------------------------------- /SRRSA/result/QNN-Result/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/QNN-Result/output.png -------------------------------------------------------------------------------- /SRRSA/result/QNN-Result/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/QNN-Result/output1.png -------------------------------------------------------------------------------- /SRRSA/result/QNN-Result/output_orgin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/QNN-Result/output_orgin.png -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-0.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-1.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-10.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-11.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-12.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-13.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-14.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-15.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-16.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-17.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-18.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-19.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-2.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-20.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-21.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-22.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-23.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-24.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-25.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-26.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-27.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-28.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-29.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-3.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-30.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-31.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-32.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-33.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-34.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-35.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-36.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-37.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-38.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-39.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-4.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-40.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-41.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-42.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-43.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-44.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-45.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-46.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-47.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-48.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-49.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-5.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-50.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-51.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-52.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-53.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-54.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-55.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-56.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-57.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-58.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-59.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-6.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-60.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-61.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-62.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-63.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-64.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-65.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-66.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-67.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-68.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-69.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-7.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-70.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-71.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-72.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-73.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-74.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-75.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-76.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-77.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-78.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-79.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-8.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-80.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-81.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-82.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-83.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-84.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-85.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-86.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-87.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-88.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-89.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-9.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-90.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-91.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-92.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-93.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-94.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-95.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-96.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-97.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-98.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video-99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video-99.jpg -------------------------------------------------------------------------------- /SRRSA/result/Video-filtering/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/Video-filtering/video.gif -------------------------------------------------------------------------------- /SRRSA/result/circuits/Circuit-DifusserGate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/circuits/Circuit-DifusserGate.png -------------------------------------------------------------------------------- /SRRSA/result/circuits/Circuit-Grover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/circuits/Circuit-Grover.png -------------------------------------------------------------------------------- /SRRSA/result/circuits/Circuit-QNN-Circuit15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/circuits/Circuit-QNN-Circuit15.png -------------------------------------------------------------------------------- /SRRSA/result/circuits/Circuit-QNN-Encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/circuits/Circuit-QNN-Encoding.png -------------------------------------------------------------------------------- /SRRSA/result/circuits/Circuit-QNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/circuits/Circuit-QNN.png -------------------------------------------------------------------------------- /SRRSA/result/pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/SRRSA/result/pulse.png -------------------------------------------------------------------------------- /The Sensors/Quantum Sensing - Jul-28-2021 -JB.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Sensors/Quantum Sensing - Jul-28-2021 -JB.pptx -------------------------------------------------------------------------------- /The Sensors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Sensors/README.md -------------------------------------------------------------------------------- /The Sensors/data_test07-28-21_05_04_22_AM.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Sensors/data_test07-28-21_05_04_22_AM.hdf5 -------------------------------------------------------------------------------- /The Sensors/hack-twomodesqueezing-v4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Sensors/hack-twomodesqueezing-v4.ipynb -------------------------------------------------------------------------------- /The Sensors/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Sensors/utility.py -------------------------------------------------------------------------------- /The Tomorrow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/LICENSE -------------------------------------------------------------------------------- /The Tomorrow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/README.md -------------------------------------------------------------------------------- /The Tomorrow/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/environment.yaml -------------------------------------------------------------------------------- /The Tomorrow/images/1_F5VRsKkQRzaBIxasDS-DNg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/images/1_F5VRsKkQRzaBIxasDS-DNg.png -------------------------------------------------------------------------------- /The Tomorrow/images/Endnote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/images/Endnote.jpg -------------------------------------------------------------------------------- /The Tomorrow/images/Market.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/images/Market.jpg -------------------------------------------------------------------------------- /The Tomorrow/images/Other.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/images/Other.jpg -------------------------------------------------------------------------------- /The Tomorrow/images/Problems.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/images/Problems.jpg -------------------------------------------------------------------------------- /The Tomorrow/images/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/images/Title.png -------------------------------------------------------------------------------- /The Tomorrow/just_run_it.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/just_run_it.ipynb -------------------------------------------------------------------------------- /The Tomorrow/migdal_notebooks/0_preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/migdal_notebooks/0_preprocessing.ipynb -------------------------------------------------------------------------------- /The Tomorrow/rb_notebooks/02_map_dwave.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/rb_notebooks/02_map_dwave.ipynb -------------------------------------------------------------------------------- /The Tomorrow/src/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/The Tomorrow/src/test_test.py -------------------------------------------------------------------------------- /TheSpinDoctors/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TheSpinDoctors/Business_Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/Business_Application.md -------------------------------------------------------------------------------- /TheSpinDoctors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/README.md -------------------------------------------------------------------------------- /TheSpinDoctors/data/business.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/data/business.JPG -------------------------------------------------------------------------------- /TheSpinDoctors/data/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/data/sunset.jpg -------------------------------------------------------------------------------- /TheSpinDoctors/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/presentation.pdf -------------------------------------------------------------------------------- /TheSpinDoctors/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/requirements.txt -------------------------------------------------------------------------------- /TheSpinDoctors/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TheSpinDoctors/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/src/main.py -------------------------------------------------------------------------------- /TheSpinDoctors/src/utils/BQM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/TheSpinDoctors/src/utils/BQM.py -------------------------------------------------------------------------------- /TheSpinDoctors/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZebraKet/.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=. -------------------------------------------------------------------------------- /ZebraKet/.gitignore: -------------------------------------------------------------------------------- 1 | **__pycache__ 2 | dev 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /ZebraKet/Alex test files/Create Data file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Alex test files/Create Data file.ipynb -------------------------------------------------------------------------------- /ZebraKet/Alex test files/Set Cover example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Alex test files/Set Cover example.ipynb -------------------------------------------------------------------------------- /ZebraKet/Alex test files/cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Alex test files/cost.csv -------------------------------------------------------------------------------- /ZebraKet/Alex test files/profit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Alex test files/profit.csv -------------------------------------------------------------------------------- /ZebraKet/Alex test files/small_data_m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Alex test files/small_data_m.txt -------------------------------------------------------------------------------- /ZebraKet/Alex test files/unbounded knapsack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Alex test files/unbounded knapsack.ipynb -------------------------------------------------------------------------------- /ZebraKet/Business proposal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Business proposal.docx -------------------------------------------------------------------------------- /ZebraKet/Business_Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/Business_Application.md -------------------------------------------------------------------------------- /ZebraKet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/README.md -------------------------------------------------------------------------------- /ZebraKet/ZebraKet.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/ZebraKet.pptx -------------------------------------------------------------------------------- /ZebraKet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZebraKet/archive/profit-optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/archive/profit-optimization.ipynb -------------------------------------------------------------------------------- /ZebraKet/archive/supplier-optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/archive/supplier-optimization.ipynb -------------------------------------------------------------------------------- /ZebraKet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/config.py -------------------------------------------------------------------------------- /ZebraKet/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/data/README.md -------------------------------------------------------------------------------- /ZebraKet/data/SMALL-DATASET.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/data/SMALL-DATASET.csv -------------------------------------------------------------------------------- /ZebraKet/data/extra_large-cost-mock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/data/extra_large-cost-mock.csv -------------------------------------------------------------------------------- /ZebraKet/data/large-cost-mock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/data/large-cost-mock.csv -------------------------------------------------------------------------------- /ZebraKet/data/medium-cost-mock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/data/medium-cost-mock.csv -------------------------------------------------------------------------------- /ZebraKet/data/small-cost-mock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/data/small-cost-mock.csv -------------------------------------------------------------------------------- /ZebraKet/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/environment.yml -------------------------------------------------------------------------------- /ZebraKet/models/AbstractQubo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/models/AbstractQubo.py -------------------------------------------------------------------------------- /ZebraKet/models/ProfitQubo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/models/ProfitQubo.py -------------------------------------------------------------------------------- /ZebraKet/models/SupplierQubo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/models/SupplierQubo.py -------------------------------------------------------------------------------- /ZebraKet/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZebraKet/notebooks/CombinedQUBO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/notebooks/CombinedQUBO.ipynb -------------------------------------------------------------------------------- /ZebraKet/notebooks/KnapsackDQM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/notebooks/KnapsackDQM.ipynb -------------------------------------------------------------------------------- /ZebraKet/notebooks/QuboChain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/notebooks/QuboChain.ipynb -------------------------------------------------------------------------------- /ZebraKet/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/notebooks/README.md -------------------------------------------------------------------------------- /ZebraKet/notebooks/SetCoverBQM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/notebooks/SetCoverBQM.ipynb -------------------------------------------------------------------------------- /ZebraKet/resources/PIC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/PIC1.png -------------------------------------------------------------------------------- /ZebraKet/resources/PIC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/PIC2.png -------------------------------------------------------------------------------- /ZebraKet/resources/PIC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/PIC3.png -------------------------------------------------------------------------------- /ZebraKet/resources/PIC4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/PIC4.jpg -------------------------------------------------------------------------------- /ZebraKet/resources/PIC5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/PIC5.png -------------------------------------------------------------------------------- /ZebraKet/resources/PIC6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/PIC6.png -------------------------------------------------------------------------------- /ZebraKet/resources/ZebraKet Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/ZebraKet Banner.png -------------------------------------------------------------------------------- /ZebraKet/resources/ZebraKet Zoom Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/ZebraKet Zoom Background.png -------------------------------------------------------------------------------- /ZebraKet/resources/ZebraKet team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/ZebraKet team.png -------------------------------------------------------------------------------- /ZebraKet/resources/datatable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/datatable1.png -------------------------------------------------------------------------------- /ZebraKet/resources/datatable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/datatable2.png -------------------------------------------------------------------------------- /ZebraKet/resources/equation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/equation1.png -------------------------------------------------------------------------------- /ZebraKet/resources/equation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/equation2.png -------------------------------------------------------------------------------- /ZebraKet/resources/equation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/equation3.png -------------------------------------------------------------------------------- /ZebraKet/resources/equation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/equation4.png -------------------------------------------------------------------------------- /ZebraKet/resources/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/fig1.png -------------------------------------------------------------------------------- /ZebraKet/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/logo.png -------------------------------------------------------------------------------- /ZebraKet/resources/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/logo_1.png -------------------------------------------------------------------------------- /ZebraKet/resources/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/logo_2.png -------------------------------------------------------------------------------- /ZebraKet/resources/process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/process.jpg -------------------------------------------------------------------------------- /ZebraKet/resources/qubo-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/resources/qubo-chain.png -------------------------------------------------------------------------------- /ZebraKet/seed/seed_mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/seed/seed_mock_data.py -------------------------------------------------------------------------------- /ZebraKet/services/Chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/services/Chain.py -------------------------------------------------------------------------------- /ZebraKet/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZebraKet/services/classical_optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/services/classical_optimizers.py -------------------------------------------------------------------------------- /ZebraKet/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZebraKet/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/ZebraKet/utils/data.py -------------------------------------------------------------------------------- /yiyaniQ/Portfolio_Optimization_Problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/Portfolio_Optimization_Problem.ipynb -------------------------------------------------------------------------------- /yiyaniQ/Quantum Baked ETFs (QBE).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/Quantum Baked ETFs (QBE).pdf -------------------------------------------------------------------------------- /yiyaniQ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/README.md -------------------------------------------------------------------------------- /yiyaniQ/data/fundamentals_normalized.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/data/fundamentals_normalized.csv -------------------------------------------------------------------------------- /yiyaniQ/data/light_featureDef.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/data/light_featureDef.csv -------------------------------------------------------------------------------- /yiyaniQ/data/snp_500_hist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/data/snp_500_hist.csv -------------------------------------------------------------------------------- /yiyaniQ/figures/plots_MI_log_ret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/figures/plots_MI_log_ret.png -------------------------------------------------------------------------------- /yiyaniQ/figures/plots_MI_price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/figures/plots_MI_price.png -------------------------------------------------------------------------------- /yiyaniQ/figures/plots_slecetedFeatures_log_ret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/figures/plots_slecetedFeatures_log_ret.png -------------------------------------------------------------------------------- /yiyaniQ/figures/plots_slecetedFeatures_price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/figures/plots_slecetedFeatures_price.png -------------------------------------------------------------------------------- /yiyaniQ/figures/portfolio_dynamic_resutls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/figures/portfolio_dynamic_resutls.png -------------------------------------------------------------------------------- /yiyaniQ/figures/portfolio_static_resutls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/figures/portfolio_static_resutls.png -------------------------------------------------------------------------------- /yiyaniQ/fundamentals_features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDL-Quantum/Hackathon2021/HEAD/yiyaniQ/fundamentals_features.ipynb -------------------------------------------------------------------------------- /yiyaniQ/requirements.txt: -------------------------------------------------------------------------------- 1 | dwave-ocean-sdk 2 | matplotlib 3 | jupyterlab 4 | pandas --------------------------------------------------------------------------------