add state-of-the-art exploration
This commit is contained in:
parent
0007617898
commit
b88cd83f6c
3 changed files with 89 additions and 22 deletions
|
|
@ -39,6 +39,7 @@
|
||||||
text(fill: rgb("#00b3dc"), size: 1.3em)[#it.indented(it.prefix(), it.body())],
|
text(fill: rgb("#00b3dc"), size: 1.3em)[#it.indented(it.prefix(), it.body())],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
= Week 3
|
||||||
|
|
||||||
== The Goal
|
== The Goal
|
||||||
|
|
||||||
|
|
@ -116,6 +117,34 @@
|
||||||
- Differentiable Optimization strategies
|
- Differentiable Optimization strategies
|
||||||
|
|
||||||
|
|
||||||
|
== State-of-the-art
|
||||||
|
|
||||||
|
#slide[
|
||||||
|
#cetz-canvas({
|
||||||
|
import cetz.draw: *
|
||||||
|
|
||||||
|
line((0, 0.4), (0, 9), mark: (symbol: "stealth"))
|
||||||
|
content((-3, 4.5), anchor: "east", [Hardware])
|
||||||
|
content((-0.4, 1.0), anchor: "east", [agnostic])
|
||||||
|
content((-0.4, 8.0), anchor: "east", [specific])
|
||||||
|
|
||||||
|
line((0.4, 0), (9, 0), mark: (symbol: "stealth"))
|
||||||
|
content((5, -1.4), anchor: "north", [Task])
|
||||||
|
content((2, -0.4), anchor: "north", [agnostic])
|
||||||
|
content((8, -0.4), anchor: "north", [specific])
|
||||||
|
|
||||||
|
|
||||||
|
content((1.3, 2), text(size: 0.6em)[HEA@expressibility-and-entanglement])
|
||||||
|
content((1.2, 0.7), text(size: 0.6em)[Random])
|
||||||
|
content((9, 1), text(size: 0.6em)[UCCSD])
|
||||||
|
content((9, 4), text(size: 0.6em)[RL-VQE@akash])
|
||||||
|
content((7, 6), text(size: 0.6em)[HaQGNN@liu2025haqgnnhardwareawarequantumkernel])
|
||||||
|
content((8, 3), text(size: 0.6em)[Supernet@architecture-search])
|
||||||
|
|
||||||
|
circle((1.1, 7), radius: (1, 2.0), fill: rgb(0, 90, 180).lighten(40%))
|
||||||
|
content((1.1, 7), [Goal])
|
||||||
|
})
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
#let chev(start, len, f: none) = {
|
#let chev(start, len, f: none) = {
|
||||||
|
|
@ -155,27 +184,31 @@
|
||||||
// green = planning
|
// green = planning
|
||||||
// blue = free
|
// blue = free
|
||||||
// red = make thing
|
// red = make thing
|
||||||
line((5.5, -0.5), (5.5, lower), stroke: (paint: rgb("#ff00cc")))
|
// line((5.5, -0.5), (5.5, lower), stroke: (paint: rgb("#ff00cc")))
|
||||||
content((5.0, lower - 0.1), anchor: "north", "Introduction")
|
// content((5.0, lower - 0.1), anchor: "north", "Introduction")
|
||||||
|
//
|
||||||
line((14.5, -0.5), (14.5, lower), stroke: (paint: rgb("#ff00cc")))
|
// line((14.5, -0.5), (14.5, lower), stroke: (paint: rgb("#ff00cc")))
|
||||||
content((14, lower - 0.1), anchor: "north", "Midterm")
|
// content((14, lower - 0.1), anchor: "north", "Midterm")
|
||||||
|
//
|
||||||
chev((0.6,-2), 6.6, f: lg(yellow, yellow.darken(10%)))
|
// chev((0.6,-2), 6.6, f: lg(yellow, yellow.darken(10%)))
|
||||||
chev((6.2,-2), 1.0, f: gradient.linear(green, rgb(0,0,0,0), angle: 60deg).sharp(3).repeat(6))
|
// chev((6.2,-2), 1.0, f: gradient.linear(green, rgb(0,0,0,0), angle: 60deg).sharp(3).repeat(6))
|
||||||
content((1.1,-2), anchor: "west", "Literature")
|
// content((1.1,-2), anchor: "west", "Literature")
|
||||||
chev((7, -2), 2, f: lg(blue.lighten(20%), blue.lighten(5%)))
|
// chev((7, -2), 2, f: lg(blue.lighten(20%), blue.lighten(5%)))
|
||||||
content((7.5, -3.5), anchor: "north", "Holiday")
|
// content((7.5, -3.5), anchor: "north", "Holiday")
|
||||||
|
//
|
||||||
chev((9, -2), 6, f: lg(red, red.darken(10%)))
|
// chev((9, -2), 6, f: lg(red, red.darken(10%)))
|
||||||
content((10, -2), anchor: "west", "Make V1")
|
// content((10, -2), anchor: "west", "Make V1")
|
||||||
|
//
|
||||||
chev((15.5, -2), 10.5, f: lg(red, red.darken(10%)))
|
// chev((15.5, -2), 10.5, f: lg(red, red.darken(10%)))
|
||||||
content((15.5, -1.5), anchor: "west", "Improvements")
|
// content((15.5, -1.5), anchor: "west", "Improvements")
|
||||||
content((19.5, -2.5), anchor: "west", "Testing")
|
// content((19.5, -2.5), anchor: "west", "Testing")
|
||||||
|
//
|
||||||
chev((15.5 + 10.5, -2), 2, f: lg(purple, purple.darken(10%)))
|
// chev((15.5 + 10.5, -2), 2, f: lg(purple, purple.darken(10%)))
|
||||||
content((25.5, -3.5), anchor: "north", "Writing")
|
// content((25.5, -3.5), anchor: "north", "Writing")
|
||||||
})
|
})
|
||||||
|
]
|
||||||
|
|
||||||
|
#slide[
|
||||||
|
== References <touying:unoutlined>
|
||||||
|
#bibliography("references.bib", title: [])
|
||||||
]
|
]
|
||||||
|
|
|
||||||
1
presentations/references.bib
Symbolic link
1
presentations/references.bib
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
../report/references.bib
|
||||||
|
|
@ -134,6 +134,16 @@
|
||||||
year = {2020},
|
year = {2020},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@misc{akash,
|
||||||
|
title={Reinforcement learning-assisted quantum architecture search for variational quantum algorithms},
|
||||||
|
author={Akash Kundu},
|
||||||
|
year={2024},
|
||||||
|
eprint={2402.13754},
|
||||||
|
archivePrefix={arXiv},
|
||||||
|
primaryClass={quant-ph},
|
||||||
|
url={https://arxiv.org/abs/2402.13754},
|
||||||
|
}
|
||||||
|
|
||||||
@article{architecture-search,
|
@article{architecture-search,
|
||||||
author = {Du, Yuxuan and Huang, Tao and You, Shan and Hsieh, Min-Hsiu and Tao,
|
author = {Du, Yuxuan and Huang, Tao and You, Shan and Hsieh, Min-Hsiu and Tao,
|
||||||
Dacheng},
|
Dacheng},
|
||||||
|
|
@ -278,3 +288,26 @@
|
||||||
url = {https://doi.org/10.1007/s11432-024-4486-x},
|
url = {https://doi.org/10.1007/s11432-024-4486-x},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@article{Hirsbrunner2024beyondmp,
|
||||||
|
doi = {10.22331/q-2024-11-26-1538},
|
||||||
|
url = {https://doi.org/10.22331/q-2024-11-26-1538},
|
||||||
|
title = {Beyond {MP}2 initialization for unitary coupled cluster quantum circuits},
|
||||||
|
author = {Hirsbrunner, Mark R. and Chamaki, Diana and Mullinax, J. Wayne and Tubman, Norm M.},
|
||||||
|
journal = {{Quantum}},
|
||||||
|
issn = {2521-327X},
|
||||||
|
publisher = {{Verein zur F{\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},
|
||||||
|
volume = {8},
|
||||||
|
pages = {1538},
|
||||||
|
month = nov,
|
||||||
|
year = {2024}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{liu2025haqgnnhardwareawarequantumkernel,
|
||||||
|
title={HaQGNN: Hardware-Aware Quantum Kernel Design Based on Graph Neural Networks},
|
||||||
|
author={Yuxiang Liu and Fanxu Meng and Lu Wang and Yi Hu and Sixuan Li and Xutao Yu and Zaichen Zhang},
|
||||||
|
year={2025},
|
||||||
|
eprint={2506.21161},
|
||||||
|
archivePrefix={arXiv},
|
||||||
|
primaryClass={quant-ph},
|
||||||
|
url={https://arxiv.org/abs/2506.21161},
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue