From 3d676d1cb25fb62caee504ed1ad486192538ea2a Mon Sep 17 00:00:00 2001 From: FelixLehn <70092091+FelixLehn@users.noreply.github.com> Date: Thu, 26 Oct 2023 18:53:06 +0200 Subject: [PATCH] Typo in 05_torch_connector.ipynb (#703) There is a typo in the comments at line 602 in the regression task. A simple parameterized ansatz is initialized in the code cells and not again a feature map. Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- docs/tutorials/05_torch_connector.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/05_torch_connector.ipynb b/docs/tutorials/05_torch_connector.ipynb index a54e6b1a7..ebbdd70b0 100644 --- a/docs/tutorials/05_torch_connector.ipynb +++ b/docs/tutorials/05_torch_connector.ipynb @@ -599,7 +599,7 @@ "feature_map = QuantumCircuit(1, name=\"fm\")\n", "feature_map.ry(param_x, 0)\n", "\n", - "# Construct simple feature map\n", + "# Construct simple parameterized ansatz\n", "param_y = Parameter(\"y\")\n", "ansatz = QuantumCircuit(1, name=\"vf\")\n", "ansatz.ry(param_y, 0)\n",