Skip to content

Commit 3314eb8

Browse files
committed
various
1 parent 7a979f7 commit 3314eb8

File tree

11 files changed

+360
-728
lines changed

11 files changed

+360
-728
lines changed

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
computo.sfds.asso.fr
1+
computo-journal.org

assets/images/2025-03-20-revised-github-process/workflow.svg

Lines changed: 0 additions & 210 deletions
This file was deleted.

blog/2025-03-20-revised-github-process/index.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
Second, in your `Settings > Pages` on your repository, select the **GitHub Actions** as the source of your website.
3939

40-
![Deploy your website with GitHub Actions](/assets/images/2025-03-20-revised-github-process/depoy-github.png){:width="100%"}
40+
![Deploy your website with GitHub Actions](depoy-github.png){:width="100%"}
4141

4242
Then, you can customize the `setup-env-ci.sh` and `setup-render-ci.sh` scripts to fit your needs.
4343
- `setup-env-ci.sh` is for setting up the environment and typically adding system dependencies. The virtual machine on github (runner) may need to install some packages with `apt-get` for R or Python packages.
@@ -53,7 +53,7 @@ The Computo workflows provide a streamlined publishing pipeline for authors to s
5353

5454
## Workflow Summary
5555

56-
![Computo Workflow Structure](/assets/images/2025-03-20-revised-github-process/workflow.svg){:width="100%"}
56+
![Computo Workflow Structure](workflow.svg){:width="100%"}
5757

5858
The publication process consists of two main phases:
5959

blog/2025-03-20-revised-github-process/workflow.svg

Lines changed: 210 additions & 0 deletions
Loading

assets/images/2025-03-20-revised-github-process/workflow.tex renamed to blog/2025-03-20-revised-github-process/workflow.tex

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
\documentclass[tikz,dvisvgm,border=10pt]{standalone}
22
\usetikzlibrary{shapes.geometric,shapes.symbols,shapes.callouts,shapes.multipart,shapes.misc,arrows,positioning,fit,backgrounds,shadows}
33

4+
\usepackage{fontspec}
5+
6+
\newfontfamily\oswald[Scale=1.0]{Oswald}
7+
% \newfontfamily\small[Scale=0.6]{Oswald}
8+
\setmainfont{oswald}
9+
10+
\tikzset{every node/.append style={font=\oswald}}
411
\begin{document}
512
\begin{tikzpicture}[
613
% Define styles for nodes with enhanced colors

site/baseline-publications.png

322 KB
Loading

site/pipeline.yml

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1 @@
1-
- abstract': >-
2-
Reservoir Computing (RC) is a machine learning method
3-
based on neural networks that efficiently process information
4-
generated by dynamical systems. It has been successful in solving
5-
various tasks including time series forecasting, language processing
6-
or voice processing. RC is implemented in `Python` and `Julia` but
7-
not in `R`. This article introduces `reservoirnet`, an `R` package
8-
providing access to the `Python` API `ReservoirPy`, allowing `R`
9-
users to harness the power of reservoir computing. This article
10-
provides an introduction to the fundamentals of RC and showcases its
11-
real-world applicability through three distinct sections. First, we
12-
cover the foundational concepts of RC, setting the stage for
13-
understanding its capabilities. Next, we delve into the practical
14-
usage of `reservoirnet` through two illustrative examples. These
15-
examples demonstrate how it can be applied to real-world problems,
16-
specifically, regression of COVID-19 hospitalizations and
17-
classification of Japanese vowels. Finally, we present a
18-
comprehensive analysis of a real-world application of
19-
`reservoirnet`, where it was used to forecast COVID-19
20-
hospitalizations at Bordeaux University Hospital using public data
21-
and electronic health records.
22-
authors: Thomas Ferté, Kalidou Ba, Dan Dutartre, Pierrick Legrand, Vianney Jouhet, Rodolphe Thiébaut, Xavier Hinaut and Boris Hejblum
23-
date: 2025-06-03
24-
description: ''
25-
draft: true
26-
journal: Computo
27-
pdf: ''
28-
repo: thomasferte/reservoirnet_computo
29-
title: 'Reservoir Computing in R: a Tutorial for Using reservoirnet to Predict Complex Time-Series'
30-
url: https://computo.sfds.asso.fr/template-computo-quarto
31-
year: 2025
1+
[]

site/publications-new.ejs

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
```{=html}
2+
<div>
3+
<% for (const item of items) { %>
4+
<div class="row">
5+
<div class="col-md-2 abbr">
6+
<% if (item.preprint) { %>
7+
&nbsp;
8+
<% } else { %>
9+
<a href="https://github.com/computorg/<%= item.repo %>"
10+
src="https://img.shields.io/github/actions/workflow/status/computorg/<%= item.repo %>/build.yml?label=build&logo=github" /></a>
11+
<% } %>
12+
</div>
13+
14+
<div id="<%= item.key %>" class="col-md-8">
15+
16+
<div class="title"><%= item.title %></div>
17+
<div class="author">
18+
<% for (const author of item.auth_array) { %>
19+
<% if (forloop.length == 1) { %>
20+
<%= author.first %> <%= author.last %>
21+
<% } else { %>
22+
<% unless (forloop.last) { %>
23+
<%= author.first %> <%= author last %,
24+
<% } else { %>
25+
and <%= author.first %> <%= author.last %>
26+
<% endunless %>
27+
<% } %>
28+
<% } %>
29+
</div>
30+
31+
<div class="periodical">
32+
<em><%= item.journal %></em>, <%= year %>.
33+
</div>
34+
35+
<div class="links">
36+
<% if (item.abstract) { %>
37+
<a class="abstract btn btn-sm z-depth-0" role="button">Abs</a>
38+
<% } %>
39+
<% if (item.preprint) { %>
40+
<a href="https://github.com/<%= item.repository %>"
41+
class="btn btn-sm z-depth-0" role="button" target="_blank">git repo</a>
42+
<a href="<%= item.url %>"
43+
class="btn btn-sm z-depth-0" role="button" target="_blank">HTML</a>
44+
<% } else { %>
45+
<% if (item.repository) { %>
46+
<a href="https://computo.sfds.asso.fr/<%= item.repository %>
47+
class="btn btn-sm z-depth-0" role="button" target="_blank">HTML</a>
48+
<a href="https://computo.sfds.asso.fr/<%= item.repository %>/<%= item.repository %>.pdf
49+
class="btn btn-sm z-depth-0" role="button" target="_blank">PDF</a>
50+
<a href="https://github.com/computorg/<%= item.repository %>
51+
class="btn btnsm z-depth-0" role="button" target="_blank">git repo</a>
52+
<% } %>
53+
<% if (item.data) { %>
54+
<a href="<%= item.data %>
55+
class="btn btn-sm z-depth-0" role="0
56+
target="_blank">Data</a>
57+
<% } %>
58+
<a href="https://github.com/computorg/<%= item.repository %>/issues?q=is%3Aopen+is%3Aissue+label%3Areview
59+
class="btn btn-sm z-depth-0" role="button" target="_blank">Review</a>
60+
<a href="https://computo.sfds.asso.fr/<%= item.repository %>#citation
61+
class="btn btn-sm z-depth-0" role="button" target="_blank">Bib</a>
62+
<% } %>
63+
</div>
64+
65+
<!-- Hidden abstract block -->
66+
<% if (item.abstract) { %>
67+
<div class="abstract hidden">
68+
<p><%= item.abstract %></p>
69+
<% if (item.keywords) { %>
70+
<p><%= item.keywords %></p>
71+
<% } %>
72+
</div>
73+
<% } %>
74+
</div>
75+
</div>
76+
<% } %>
77+
</div>
78+
79+
```

site/published.ejs

Whitespace-only changes.

0 commit comments

Comments
 (0)