Perry Gibson

Results 26 issues of Perry Gibson

This PR introduces a new `dvc purge` command to remove DVC-tracked outputs and their cache, while leaving stage metadata (`.dvc` files, dvc.yaml) intact. It's intended as a safer/faster alternative to...

It could be that this feature already exists, but I've not been able to find it. My usecase is that I want to remove all locally downloaded data in a...

question
awaiting response

Documents https://github.com/iterative/dvc/pull/10784 as an available feature.

With the following topk model: ```python import torch import torch.nn as nn from torch_mlir import fx class SimpleTopKModel(nn.Module): def __init__(self, n_groups=2, group_dim=4, topk_groups=1): super().__init__() self.n_groups = n_groups self.group_dim = group_dim...

Unsure if this is intended behavior, but I had a C file with 2 lines of whitespace a the top: ```c [whitespace] [whitespace] /* Some comment */ int main() {...