-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from reservoirpy/prebuild_vignette
Prebuild vignette
- Loading branch information
Showing
26 changed files
with
1,012 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
^\.Rproj\.user$ | ||
^\.github$ | ||
^LICENSE\.md$ | ||
^cran-comments\.md$ | ||
^cran-comments\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
Package: reservoir | ||
Package: reservoirnet | ||
Type: Package | ||
Title: Simple and flexible code for Reservoir Computing architectures like Echo State Networks | ||
Version: 0.1.2 | ||
Date: 2022-05-09 | ||
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]")) | ||
Maintainer: <[email protected]> | ||
SystemRequirements: Python (>= 3.7) | ||
Description: ReservoirR is a simple user-friendly library based on Python scientific | ||
modules. It provides a flexible interface to implement efficient Reservoir | ||
Computing (RC) architectures with a particular focus on Echo State Networks (ESN). | ||
Advanced features of ReservoirR allow to improve computation time efficiency on | ||
a simple laptop compared to basic Python implementation, with datasets of any size. | ||
Some of its features are: offline and online training, parallel implementation, | ||
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 with the help of the hyperopt library. Finally, it includes | ||
several tutorials exploring exotic architectures and examples of scientific papers | ||
reproduction. | ||
explore hyperparameters. Finally, it includes several tutorials exploring | ||
time series forecasting, classification and hyperparameter tuning. 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( | ||
|
@@ -32,9 +30,9 @@ Config/reticulate: | |
) | ||
License: GPL (>= 3) | ||
Repository: CRAN | ||
URL: | ||
URL: https://github.com/reservoirpy | ||
Depends: R (>= 3.6) | ||
RoxygenNote: 7.2.2 | ||
RoxygenNote: 7.2.3 | ||
Encoding: UTF-8 | ||
Imports: | ||
reticulate, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,24 @@ Environment : | |
- github action : ubuntu v22.04 | ||
- github action : windows server 2022 v10.0 | ||
- github action : macos v12.6.3 | ||
- check_rhub : Windows Server 2022, R-devel, 64 bit | ||
- check_win_devel : Windows Server 2022 x64 (build 20348) | ||
|
||
0 errors | 0 warnings | 0 note | ||
* checking CRAN incoming feasibility ... NOTE | ||
Maintainer: 'Thomas Ferte <[email protected]>' | ||
|
||
New submission | ||
|
||
Possibly misspelled words in DESCRIPTION: | ||
ESN (16:15) | ||
IdEx (23:75) | ||
PHDS (24:44) | ||
RRI (24:40) | ||
reservoirPy (13:72) | ||
|
||
* checking for detritus in the temp directory ... NOTE | ||
Found the following files/directories: | ||
'lastMiKTeXException' | ||
|
||
We believe the note is ok. The words are well spelled. The detritus temp directory does not seem to be a problem (https://stackoverflow.com/questions/62456137/r-cran-check-detritus-in-temp-directory). | ||
|
||
* This is a new release. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
library(testthat) | ||
library(reservoir) | ||
library(reservoirnet) | ||
|
||
test_check("reservoir") | ||
test_check("reservoirnet") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.