Skip to content
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

Lab3 : 3.3 #17

Open
foivospar opened this issue Jan 10, 2020 · 2 comments
Open

Lab3 : 3.3 #17

foivospar opened this issue Jan 10, 2020 · 2 comments

Comments

@foivospar
Copy link

Στην train_dataset(), για τον υπολογισμό του loss (π.χ. με loss_function την BCEWithLogitsLoss), μου βγάζει ValueError, ότι πρέπει το input και το target να έχουν ίδιο size. Το input που του δίνω είναι η έξοδος του νευρωνικού, οπότε έχει size (batch_size, n_classes), ενώ το target είναι ένα 1D tensor μήκους batch_size. Τι πρέπει να δώσω ως input ή/και target για να έχουν ίδιο size ;

@georgepar
Copy link

Αν δεν κάνω λάθος η BCEWithLogitsLoss περιμένει τα targets One hot encoded και τα predictions ως logits.

Με λίγα λόγια τα predictions τα δίνεις σωστά σαν την έξοδο του νευρωνικού (batch, num_classes)
και τα targets πρεπει να τα μετασχηματίσεις σε (batch, num_classes). Πχ το

y = [0, 1, 2, 0, 2, 1]

γινεται

y_onehot = [
    [1, 0, 0],
    [0, 1, 0],
    [0, 0, 1],
    [1, 0, 0],
    [0, 0, 1],
    [0, 1, 0]
]

Δες και το documentation του loss και την torch.nn.functional.one_hot

@foivospar
Copy link
Author

Ωραία, δούλεψε, ευχαριστώ πολύ.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants