forked from f0nzie/rTorch.old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
33 lines (33 loc) · 1.15 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Package: rTorch
Title: R Bindings to 'PyTorch'
Version: 0.0.3
Authors@R: c(
person("Alfonso R.", "Reyes", role = c("aut", "cre", "cph"), email = "[email protected]"),
person("Daniel", "Falbel", role = c("ctb", "cph"), email = "[email protected]"),
person("JJ", "Allaire", role = c("ctb", "cph"))
)
Description: 'R' implementation and interface of the Machine Learning platform
'PyTorch' <https://pytorch.org/> developed in 'Python'. It requires a 'conda'
environment with 'torch' and 'torchvision' to provide 'PyTorch' functions,
methods and classes. The key object in 'PyTorch' is the tensor which is in
essence a multidimensional array. These tensors are fairly flexible to perform
calculations in CPUs as well as 'GPUs' to accelerate the process.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Depends: R (>= 3.1)
Imports: logging,
reticulate,
jsonlite (>= 1.2),
utils,
methods,
R6,
rstudioapi (>= 0.7),
data.table
Suggests:
testthat,
knitr,
rmarkdown
SystemRequirements: PyTorch (https://pytorch.org/)
RoxygenNote: 6.1.1
URL: https://github.com/f0nzie/rTorch