Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mlverse/torchsparse
R interface for torchsparse
https://github.com/mlverse/torchsparse
Last synced: 11 days 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-15T14:06:04.000Z (over 1 year ago)
- Last Synced: 2024-08-01T03:46:14.971Z (3 months ago)
- Language: R
- Size: 306 KB
- Stars: 7
- Watchers: 5
- 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")
```