Quanvolutional Neural Networks¶

Hi @Kiran_Kumar_M
Is this question related to a previous one you had asked?
I think I understand what you are asking for. You want to know how to use your trained parameters to now predict outcomes using some test data, is that right?

Take a look at this blogpost for a very simple example where they test the model in these lines of code

test_predictions = []
for x_test in X_test:
    prediction = quantum_circuit(x_test,params)
    test_predictions.append(prediction)

I believe the principle is the same.

Take a look at the blog post and let me know.