You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like #7 and #19 I am trying to fit a GMM to a large dataset [10^10, 50] and want to (need to) use mini-batching.
However, in contrast to the previous answers, gmm.fit only accpects a TensorLike and won't work with my data which is a torch.utils.data.DataLoader. Even if I input a torch.utils.data.Dataset it only computes a GMM on the first batch.
What is the preferred way to do what I want to do?
Hi, were you able to solve this issue? I am also trying to do GMM training with mini-batches. My dataset size is huge and I cannot load all the data into the memory.
Hi,
Like #7 and #19 I am trying to fit a GMM to a large dataset [10^10, 50] and want to (need to) use mini-batching.
However, in contrast to the previous answers,
gmm.fit
only accpects aTensorLike
and won't work with my data which is atorch.utils.data.DataLoader
. Even if I input atorch.utils.data.Dataset
it only computes a GMM on the first batch.What is the preferred way to do what I want to do?
Ideally, I would want my code to work like this:
Manually changing the code in
gmm/estimator.py
(among others) fromto
allows the for error-free fitting and prediction but I am not sure if the output is trustworthy.
The text was updated successfully, but these errors were encountered: