https://github.com/mlverse/torchsparse
R interface for torchsparse
https://github.com/mlverse/torchsparse
Last synced: 12 months ago
JSON representation
R interface for torchsparse
- Host: GitHub
- URL: https://github.com/mlverse/torchsparse
- Owner: mlverse
- License: other
- Created: 2022-01-26T22:03:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-15T14:06:04.000Z (about 3 years ago)
- Last Synced: 2025-04-08T06:51:18.503Z (about 1 year ago)
- Language: R
- Size: 306 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# torchsparse
R interface to [PyTorch Sparse](https://github.com/rusty1s/pytorch_sparse). `torchsparse` is a small extension library for torch providing optimized sparse matrix operations with autograd support.
## Installation
~~You can install the released version of torchsparse from [CRAN](https://CRAN.R-project.org) with:~~
``` r
install.packages("torchsparse")
```
And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("remotes")
devtools::install_github("mlverse/torchsparse")
```