SergioQuijanoRey / TFG

Trabajo Fin de Grado
1 stars 0 forks source link

The way we're subseting is not correct #43

Closed SergioQuijanoRey closed 1 year ago

SergioQuijanoRey commented 1 year ago

We're using the Subset class from Pytorch. We need a Dataset class to work with, so we get the underlying self.dataset. But that is the whole dataset, so we're doing nothing when we subset. This operation is critical because is used in:

  1. Train / Validation split
  2. Making sets smaller to log some metrics, because that metrics computation is really slow
SergioQuijanoRey commented 1 year ago

Solved in #44