-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ApogeeBCNN() dimensions #14
Comments
Yes i.e. from astroNN.models import MNIST_BCNN |
Thank you! it is working now Though, I am getting very strange losses:
I see that issue #6 makes reference to that, I am not being able to find the solution though. Thank you, Lucia |
I think I actually have fixed the issue (as you can see the notebook was updated earlier this year and no issue was observed, uncertainty looks reasonable). You are using MNIST or your own images? Are you sure there is no invalid value in your images and the classes (like nan or 99999 something like that)? |
Yes, I am using the model on my own dataset. They are color image patches of the skin with a lesion, from the 2018 and 2019 datasets from this competition: https://challenge.isic-archive.com/data and I want yo classify them in 7 different classes (7 diseases). Thank you very much for your dedication! |
I managed to get lower loss numbers, thought they still don´t change consistently and the accuracy is always 1.0, but the net is predicting 0 for every image. |
do you have a notebook or code to show what have you been doing? it is very weird that |
Sorry, I changed to this link |
One immediate issue I have noticed is your images are |
I have actually done that because I have a third dimension that is color depth, and my images wouldn´t be plotted otherwise. I have tried training with float32 though, and I get the same result:
|
Hello and thank you for sharing your work.
I want to classify images with color depth with a Bayesian Neural Network.
Though, with this model, I am getting a dimensions error:
My input is a dataset loaded with
and converted to tensors with
so I am trying to train the model with
Why am I getting this error? Is there a specific way to pass the data?
Thank you, Lucia
The text was updated successfully, but these errors were encountered: