-
### 🐛 Describe the bug
```
model = MultiTaskUnet(n_input_channels=n_input_channels, output_tasks=list(fields_to_predict.keys()),
autoencoder_task=False, init_features=32…
-
### 🐛 Describe the bug
In multiprocessing mode (i.e. FSDP/DDP), there occur JSONDecodeErrors within torch._inductor.triton_heuristics.cached_autotune, if the filesystem does not lock the file itself.…
-
### OS version
Google Colab
### GPU
Tesla A100/V100/T4
### Python version
3.10.12
### PyTorch version
2.0.1+cu118
### Branch of sovits
4.0(Default)
### Dataset source (…
-
### 🐛 Describe the bug
```python
import torch
import torch.nn as nn
mm = nn. Linear (1024, 18432, bias=True).cuda().bfloat16()
aa = torch. rand(2, 1024). cuda().bfloat16()
out = mm(aa)
```
I …
-
### 🚀 The feature
[pypeln](https://cgarciae.github.io/pypeln/#mixed-pipelines) has a nice feature to chain pipelines which may run on different kind of workers including process, thread or asyncio.…
-
### 🚀 The feature
Currently, we rely on the inline doc for each DataPipe to indicate the functional API. Considering `torchdata` should have already been built when doc need to be generated, we shoul…
-
### 🚀 The feature
Currently, `IterToMap` starts to load all data from prior `IterDataPipe` when the first `__getitem__` is invoked here.
https://github.com/pytorch/data/blob/13b574c80e8732744fee6ab9…
-
### 🚀 The feature
Currently, `IterKeyZipper` can only zip two DataPipes together.
https://github.com/pytorch/data/blob/198cffe7e65a633509ca36ad744f7c3059ad1190/torchdata/datapipes/iter/util/combin…
-
### 🐛 Describe the bug
There are two issues (both are reproducible using the script below):
1. `FSSpecFileOpenerIterDataPipe` gets stuck if one tries to iteratively create `DataLoader(num_worker…
-
Hi, I am trying to train on custom data (which is in coco instance seg format). I have followed your suggestions for registering the data and using instance_coco_custom_dataset_mapper.py for it. Datal…