You should be able to use this function to output y_pred

    salidas_capa3 = theano.function(
        [index],
        layer3.y_pred,
        givens={
            x: test_set_x[index * batch_size: (index + 1) * batch_size],
        }
    )


On Monday, July 25, 2016 at 3:09:09 AM UTC-7, Beatriz G. wrote:
>
> Hi, anyone knows how to get the test labels that the classifier has given 
> to the data? 
>
> I would like to extrat the data that has not been well classified.
>
> Regards.
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to