-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDESCRIPTION
58 lines (58 loc) · 2.41 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Package: reservoirnet
Type: Package
Title: Reservoir Computing and Echo State Networks
Version: 0.2.0
Date: 2023-03-13
Authors@R: c(person("Thomas", "Ferte", role = c("aut", "cre", "trl"), email = "[email protected]"),
person("Kalidou", "Ba", role = c("aut", "trl"), email = "[email protected]"),
person("Nathan", "Trouvain", role = c("aut"), email = "[email protected]"),
person("Rodolphe", "Thiebaut", role = c("aut"), email = "[email protected]"),
person("Xavier", "Hinaut", role = c("aut"), email = "[email protected]"),
person("Boris", "Hejblum", role = c("aut", "trl"), email = "[email protected]"))
SystemRequirements: Python (>= 3.7)
Description: A simple user-friendly library based on the 'python' module 'reservoirpy'.
It provides a flexible interface to implement efficient Reservoir
Computing (RC) architectures with a particular focus on Echo State Networks
(ESN). Some of its features are: offline and online training, parallel implementation,
sparse matrix computation, fast spectral initialization, advanced learning
rules (e.g. Intrinsic Plasticity) etc. It also makes possible to easily create
complex architectures with multiple reservoirs (e.g. deep reservoirs), readouts,
and complex feedback loops. Moreover, graphical tools are included to easily
explore hyperparameters. Finally, it includes several tutorials exploring
time series forecasting, classification and hyperparameter tuning. For more information
about 'reservoirpy', please see Trouvain et al. (2020) <doi:10.1007/978-3-030-61616-8_40>.
This package was developed in the framework of the University of Bordeaux’s IdEx
"Investments for the Future" program / RRI PHDS.
Config/reticulate:
list(
packages = list(
list(package = "reservoirpy", pip=TRUE)
)
)
License: GPL (>= 3)
Repository: CRAN
URL: https://github.com/reservoirpy
Depends: R (>= 3.6)
RoxygenNote: 7.2.3
Encoding: UTF-8
Imports:
reticulate,
testthat (>= 3.0.0),
rlang,
ggplot2,
ggpubr,
janitor,
dplyr,
magrittr,
methods
Suggests:
rmarkdown,
knitr,
covr,
kableExtra,
slider,
tibble,
tidyr
Config/testthat/edition: 3
VignetteBuilder: knitr
Language: en-US