David de la Iglesia Castro
David de la Iglesia Castro
https://github.com/laspy/laspy - [ ] TEST - [x] read_las - [ ] write_las
https://github.com/dimatura/pypcd - [x] `read_pcd` - [ ] test for `read_pcd` - [ ] write_pcd - [ ] test for write_pcd - [ ] read_ros - [ ] test for read_ros...
```console $ cat .gitignore /data/ $ git check-ignore data -v .gitignore:1:/data/ data $ python >>> from dulwich import ignore >>> a = ignore.IgnoreFilter((ignore.read_ignore_patterns(open(".gitignore", "rb")))) >>> a.is_ignored("data") >>> a.is_ignored("data/") True ```...
It would be nice to support https://dvc.org/doc/command-reference/exp/init as part of the extension commands. The command is useful for bootstrapping projects and only requires `git init` and `dvc init` which, as...
In the current demo setup, we override the saved image and plot at the end of each step. Unless using checkpoints, this makes it impossible to visualize images and plots...
The SCM section contains action for `dvc push` but it doesn't reflect the [remote status](https://dvc.org/doc/command-reference/status#comparison-against-remote-storage), only [workspace status](https://dvc.org/doc/command-reference/status#local-workspace-status). I believe showing the remote status is relevant and the lack of...
Opening this to discuss how Parallel Coordinates Plot is implemented in DVC (https://github.com/iterative/dvc/pull/6933) --- The DVC implementation is based on performing operations using an internal class called `TabularData`. Unfortunately, all...
For computer vision models, it would be very handy to support image paths as input: ``` mlem apply visionmodel image.png -i --it image[tensorflow] -o prediction ``` Both TensorFlow and Pytorch...