pycave icon indicating copy to clipboard operation
pycave copied to clipboard

Traditional Machine Learning Models for Large-Scale Datasets in PyTorch.

Results 18 pycave issues
Sort by recently updated
recently updated
newest added

I was trying to fit a GMM on data and kept getting the same error (with variying numbers for the batch and order): `_LinAlgError: torch.linalg_cholesky: (Batch element 3): The factorization...

Hello: The title kind of says it all. The gmm.model_.covariances variable is None for some reason for both of these models. I don't think this was the case in the...

Hi, I want to implement mini-batching training on GMM as discussed in #7 . However, I am little bit confused by the code `gmm.reset_parameters(torch.Tensor(fvectors[:500].astype(np.float32)))`. I am not sure whether it...

updates: - [github.com/psf/black: 22.12.0 → 24.3.0](https://github.com/psf/black/compare/22.12.0...24.3.0) - [github.com/PyCQA/pylint: v2.15.9 → v3.1.0](https://github.com/PyCQA/pylint/compare/v2.15.9...v3.1.0) - [github.com/pre-commit/mirrors-mypy: v0.991 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v0.991...v1.9.0) - [github.com/PyCQA/isort: v5.11.3 → 5.13.2](https://github.com/PyCQA/isort/compare/v5.11.3...5.13.2) - [github.com/PyCQA/docformatter: v1.5.1 → v1.7.5](https://github.com/PyCQA/docformatter/compare/v1.5.1...v1.7.5) - [github.com/asottile/pyupgrade: v3.3.1 →...

I would like to extend the compatibility with Python 3.11, torch 2.1, and pytorch-lightning 2.1.3. One fix was easy to make (e.g. change training_epoch_end into `on_training_epoch_end`). Another fix was about...

Hi, I trained the GaussianMixture model with pycave v3.2.1, however, after training a few epochs nll=nan.0 appears. And this situation happens occasionally, I would like to ask what is the...

Hi, first of all thank you for the amazing repository. I am trying to do mini-batch training of GMM. After going over #51 #19 and #7, I realized that I...

Hi, Like [#7](https://github.com/borchero/pycave/issues/7) and [#19](https://github.com/borchero/pycave/issues/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...

Hi, I'm just getting started with pycave and would like to use pytorch 2.0. It's torch.compile mechanism could be really powerful. Would you please allow your package to also allow...

Hello, I'm using pycave for a project where the data is unidimensional of size 8e9. The GPU options works well, and I'm splitting the data in "for loops" to do...