Affichage des articles dont le libellé est quantum computing. Afficher tous les articles
Affichage des articles dont le libellé est quantum computing. Afficher tous les articles

vendredi 10 novembre 2023

Quantum Careers - Part 2: Learning about Quantum Computing in Healthcare (meetup, ref links)

From : https://www.meetup.com/technical-group-hosted-by-ibm/events/296566612
Here are links to the resources that Aarushi and Wiktor discussed during the session, which will allow you to explore this content at your own pace. For those who were unable to attend, these links will provide you with some of what you missed and more! - https://www.mckinsey.com/industries/pharmaceuticals-and-medical-products/our-insights/real-world-evidence-from-activity-to-impact-in-healthcare-decision-making - https://www.scientificamerican.com/article/genetics-start-up-wants-to-sequence-peoples-genomes-for-free/ - https://phys.org/news/2018-10-people-dna-sequenced-theyve-privacy.html - https://www.sciencemag.org/news/2018/10/we-will-find-you-dna-search-used-nab-golden-state-killer-can-home-about-60-white - https://media.nature.com/original/magazine-assets/d41586-019-02873-1/d41586-019-02873-1.pdf - https://scienceblog.cancerresearchuk.org/2014/09/22/saving-lives-and-averting-costs-the-case-for-earlier-diagnosis-just-got-stronger/ - https://www.ohe.org/system/files/private/publications/401%20-%20Trajectory_dementia_UK_2014.pdf - https://www.nature.com/articles/s41592-021-01199-z - https://link.springer.com/article/10.1007%2Fs42484-020-00017-7 - https://www.t-systems.com/en/best-practice/03-2018/focus/digital-twin/healthcare-840446 - https://www.who.int/cancer/prevention/en/ - http://lexisnexis.com/risk/downloads/idm/bending-the-cost-curve-analytic-driven-enterprise-fraud-control.pdf - https://www.insurancejournal.com/news/national/2019/10/08/544846.htm - https://www.scientificamerican.com/article/genetics-start-up-wants-to-sequence-peoples-genomes-for-free/ - https://phys.org/news/2018-10-people-dna-sequenced-theyve-privacy.html - https://www.sciencemag.org/news/2018/10/we-will-find-you-dna-search-used-nab-golden-state-killer-can-home-about-60-white - https://www.sciencedirect.com/science/article/abs/pii/S0167629616000291 - https://pharmaintelligence.informa.com/~/media/informa-shop-window/pharma/2020/files/reports/top-10-best-selling-drugs-of-2019.pdf - https://arxiv.org/abs/1802.00810 - https://www.ncbi.nlm.nih.gov/books/NBK116445/ - https://www.nature.com/articles/nature03192 - https://www.pnas.org/content/pnas/89/1/20.full.pdf - https://www.ncbi.nlm.nih.gov/pmc/articles/PMC48166/pdf/pnas01075-0036.pdf - https://books.google.de/books?id=ZVEUniZITlEC&pg=PA194&lpg=PA194&dq=levinthal+10143&source=bl&ots=rj16K98Pl6&sig=ACfU3U3W5LiaEdUX73fh-aiGcF6bg9_idg&hl=en&sa=X&ved=2ahUKEwjqoNX75aDlAhUeAhAIHWXHA_oQ6AEwC3oECAsQAQ#v=onepage&q=levinthal%2010143&f=false - https://www.globenewswire.com/news-release/2019/04/04/1797292/0/en/Biologics-Market-Size-to-cross-USD-285-520-4-Million-by-2023-at-6-95-CAGR-Highly-Competitive-Pharmaceutical-Sector-to-Boost-Global-Industry-Growth.html - https://arxiv.org/abs/2307.05734

mercredi 21 juin 2023

Quantum computing art (& fractals)

 

Visualizing Quantum Computing using fractals

https://github.com/wmazin/Visualizing-Quantum-Computing-using-fractals


Flexible Representation of Quantum Images (FRQI) and Novel Enhanced Quantum Representation (NEQR)

https://qiskit.org/

https://learn.qiskit.org/course/ch-applications/flexible-representation-of-quantum-images-frqi


Exhibition-ready quantum image processing

https://medium.com/qiskit/exhibition-ready-quantum-image-processing-4bb9fa8b52b5


Creating fractal art with qiskit

https://medium.com/qiskit/creating-fractal-art-with-qiskit-df69427026a0

lundi 7 novembre 2022

(quantum computing) Examples of code for a "Bell state" : IBM quantum composer vs. OpenQASM vs. Qiskit

 

    • https://quantum-computing.ibm.com/composer/files/new "Quantum Composer" IDE to build Q-progs : "Composer has a customizable set of tools that allow you to build, visualize, and run quantum circuits on quantum hardware or simulators".
    • graphical editor for openQASM  or Qiskit formalisms


Examples of code generated in the step by step tutorial to create a "Bell state"

https://quantum-computing.ibm.com/composer/docs/iqx/example-circuits/bell

Same code, but different languages; done on the Quantum Composer ide following the initial step by step guide.


The Bell test demonstrates that measurements of an entangled state cannot be explained by any local hidden variable theory, and that there must be correlations that are beyond classical.

from: https://quantum-computing.ibm.com/composer/docs/iqx/example-circuits/bell



* Quantum Composer





* OpenQASM

OPENQASM 2.0;
include "qelib1.inc";
qreg q[2];
creg c[2];
h q[0];
cx q[0],q[1];
measure q[0] -> c[0];
measure q[1] -> c[1];


* Qiskit

from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit
from numpy import pi

qreg_q = QuantumRegister(2, 'q')
creg_c = ClassicalRegister(2, 'c')
circuit = QuantumCircuit(qreg_q, creg_c)

circuit.h(qreg_q[0])
circuit.cx(qreg_q[0], qreg_q[1])
circuit.measure(qreg_q[0], creg_c[0])
circuit.measure(qreg_q[1], creg_c[1])

Quantum computing resources


Quantum platforms, libraries, and learning platforms


Qiskit : open source lib

"Qiskit Machine Learning introduces fundamental computational building blocks - such as Quantum Kernels and Quantum Neural Networks - used in different applications, including classification and regression. On the one hand, this design is very easy to use and allows users to rapidly prototype a first model without deep quantum computing knowledge. On the other hand, Qiskit Machine Learning is very flexible, and users can easily extend it to support cutting-edge quantum machine learning research."


DELF University quantum program

Long time research center on quantum computing. (sources < TPE 2001)



    Community

    community focused on quantum machine learning


    IBM





    source : 

    • meetup  Technical Group by IBM, 
    • 03 Nov 2022 https://www.meetup.com/technical-group-hosted-by-ibm/events/287144510/ 
    • Sean Wagner, IBM Quantum Technical Ambassador