-
```
python train.py --outdir=./test --data=./images256x256.zip --cfg=stylegan3-r --gpus=1 --batch=32 --gamma=0.5 \
--freezed=13 --workers=2 --mirror=1 --kimg=2000 --tick=1 --snap=10 --metrics=none -…
-
I want to test `OneShot AllReduce` and `TwoShot AllReduce` separately, so I have modified the following code:
```
class LLaMAModel(Module):
def __init__(self, config: PretrainedConfig) -> Non…
-
### Context
OpenVINO component responsible for support of TensorFlow models is called as TensorFlow Frontend (TF FE). TF FE converts a model represented in [TensorFlow opset](https://www.tensorflow.o…
-
### 🐛 Describe the bug
Ideally, tensor.triu_(1) should fill lower triangular part with 0. However, it fails to do so when the matrix is large. For example:
```
q_len = 100000
causal_mask = torch.f…
-
Running visualize("preprocessed", "preprocessed/wav2mel.pt", "dvector-step5000.pt", ".")
Getting the following error while torch.jit.load
```
RuntimeError:
Unknown builtin op: torchaudio_sox::a…
-
The class `ttl::Tensor` should have no template parameters.
discussions:
- Q: What will be the relationship between `std::Tensor` and `std::raw_tensor`?
A: currently raw_tensor only hides d…
-
I'm a bit lost in this awesome library, and could not find a suitable example, hence not sure if and how to use tensorly for a "simple" SVD decomposition for PyTorch tensors (if possible).
I.e
G…
-
Doing some testing I noticied that doing inference returns very different results for the same image but loaded with different methods:
- Method 1: the official load_image function from the library…
-
I've encountered a CUDA out-of-memory (OOM) issue in the following scenario while working with the code provided below:
- reproduce code
```python
import torch
import random
from functoo…
-
Does PyTables support saving and loading torch tensor?
I tried to do the following:
```
import tables
import torch
x = torch.rand([4, 4])
File = tables.open_file("database", mode="w")
ten…