Skip to content

Commit

Permalink
Merge pull request #733 from 8bitmp3/patch-1
Browse files Browse the repository at this point in the history
Documentation: Fix TF Quantum MNIST by adding arg names in Seaborn barplot
  • Loading branch information
MarkDaoust authored Dec 19, 2022
2 parents 22ead38 + e55206a commit f46056d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/mnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1100,8 +1100,8 @@
"cnn_accuracy = cnn_results[1]\n",
"fair_nn_accuracy = fair_nn_results[1]\n",
"\n",
"sns.barplot([\"Quantum\", \"Classical, full\", \"Classical, fair\"],\n",
" [qnn_accuracy, cnn_accuracy, fair_nn_accuracy])"
"sns.barplot(x=[\"Quantum\", \"Classical, full\", \"Classical, fair\"],\n",
" y=[qnn_accuracy, cnn_accuracy, fair_nn_accuracy])"
]
}
],
Expand Down

0 comments on commit f46056d

Please sign in to comment.