Skip to content

Commit a52bc1e

Browse files
committed
merge with master
2 parents a813b8a + 94c2857 commit a52bc1e

File tree

8 files changed

+63
-29
lines changed

8 files changed

+63
-29
lines changed

blog/2023-03-24-others-languages/index.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: 'I use a different language than Python, R or Julia: would Computo accept my
3-
contributions?'
2+
title: 'I use a different language than Python, R or Julia: would Computo accept my contributions?'
43
date: '2023-03-24'
54
description: Describe how to handle other languages than R, Julia or Python
65
categories:
6+
- authors
77
- reproducibility
88
- code
99
format:

blog/2023-06-21-data/index.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: I have large or sensible data. How should I proceed?
33
date: '2023-06-21'
4-
description: Describe how to handle large or sensible data files when submitting to
5-
Computo
4+
description: Describe how to handle large or sensible data files when submitting to Computo
65
categories:
6+
- authors
77
- reproducibility
88
format:
99
html:

blog/2023-06-21-long-running-code/index.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: My data analysis takes several hours/days/weeks... How to address the iss
33
date: '2023-06-21'
44
description: Discuss the reproducibility for long-running code
55
categories:
6+
- authors
67
- reproducibility
78
format:
89
html:

blog/2023-07-04-what-reproducibility/index.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: What is expected exactly in terms of reproducibility?
33
date: '2023-07-04'
4-
description: Discuss the different kinds of reproducibility at play in Computo, and
5-
what is expected from the authors.
4+
description: Discuss the different kinds of reproducibility at play in Computo, and what is expected from the authors.
65
categories:
6+
- authors
77
- reproducibility
88
format:
99
html:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ date: '2025-03-20'
44
description: Describe how to render your article, activate your gh-page and publish
55
your contribution online
66
categories:
7+
- authors
78
- reproducibility
89
format:
910
html:
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: 'OpenReview: how does the peer review of a Computo paper work?'
3+
date: '2025-07-22'
4+
description: Describe the review process using OpenReview
5+
categories:
6+
- authors
7+
- reviewers
8+
format:
9+
html:
10+
toc: true
11+
page-layout: article
12+
---
13+
14+
Here is a step-by-step overview of the Computo reviewing process based on [OpenReview](https://openreview.net/):
15+
16+
- **Submission**: the authors provide a link to git repository and HTML/PDF version of the manuscript
17+
- Editorial management: the editorial board decides whether the paper is appropriate for review
18+
- **Review** (typically 8 weeks): see our [Reviewer guidelines](/guidelines-reviewers)
19+
- **Rebuttal**: discussion and revision period (6 weeks, but extendable):
20+
- discussion between authors and reviewers, upon which the reviewers will make their final recommendation.
21+
- if necessary the authors should update their submission
22+
- **Recommendation** by reviewers: accept/leaning accept/leaning reject/reject
23+
- **Official decision** by the editor: possible decisions are accept/minor revision/rejection (possibly with invitation to resubmit). There is no "major revision" option.

site/publications.ejs

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
let currentYear = null;
99
for (const item of items) {
1010
let doiurl = item.url === "" ? "https://doi.org/" + item.doi : item.url;
11+
let bibtitle = item.title.replace(/'/g, "\\'");
12+
let bibauthors = item.authors.replace(/'/g, "\\'");
1113
if (item.year !== currentYear) {
1214
if (currentYear !== null) { %>
1315
</div> <!-- End previous year section -->
@@ -23,27 +25,34 @@ for (const item of items) {
2325
<div class="row align-items-start"> <!-- align-items-start for top alignment -->
2426
<div class="col-md-2 col-3 d-flex flex-column justify-content-start align-items-start p-0 badge-left-align"> <!-- left-aligned, no padding -->
2527
<a href="https://github.com/computorg/<%- item.repo %>" target="_blank" style="margin-left:0;">
26-
<img src="https://img.shields.io/github/actions/workflow/status/computorg/<%- item.repo %>/build.yml?label=build&logo=github" class="img-fluid" alt="Build Status" style="vertical-align: top; margin-top: 0; margin-left:-20px; margin-top:5px; display:block;" />
28+
<img src="https://img.shields.io/github/actions/workflow/status/computorg/<%- item.repo %>/build.yml?label=build&logo=github" class="img-fluid" alt="Build Status" style="margin-top: 0; margin-left:-20px; margin-top:5px; display:block;" />
2729
</a>
2830
</div>
2931
<div class="col-md-10 col-9 pl-1">
30-
<h5 class="card-title mb-1" style="font-size:1.1em;">
32+
<!-- <h5 class="card-title mb-1" style="font-size:1.1em;">
3133
<a href="<%= doiurl %>" data-toggle="modal" data-target="#articleModal" class="text-decoration-none"><%= item.title %></a>
34+
</h5> -->
35+
<h5 class="card-title mb-1" style="font-size:1.1em;">
36+
<a href="<%= doiurl %>" target="_blank"><%= item.title %></a>
3237
</h5>
3338
<% if (item.authors) { %>
3439
<p class="text-muted mb-1" style="font-size:0.97em;"><%= item.authors %></p>
3540
<% } %>
36-
<p class="text-muted mb-2" style="font-size:0.95em;"><em>Computo</em>, <%= item.year %>.</p>
41+
<div class="d-flex justify-content-between align-items-center mb-2" style="font-size:0.95em;">
42+
<span class="text-muted"><em>Computo</em>, <%= item.year %>.</span>
43+
<span class="text-muted text-right" style="font-size:0.95em; white-space:nowrap;"><em><a href="<%= doiurl %>" target="_blank" ><%= doiurl %></a></em></span>
44+
</div>
3745
<div class="btn-group btn-group-sm" role="group" aria-label="Article actions">
38-
<% if (item["abstract'" ] && item["abstract'"].trim()) { %>
46+
<a href="<%= doiurl %>" data-toggle="modal" data-target="#articleModal" class="btn btn-outline-secondary btn-sm" style="padding:0.2em 0.6em;">Preview</a>
47+
<!-- <% if (item["abstract'" ] && item["abstract'"].trim()) { %>
3948
<button type="button" class="btn btn-outline-secondary btn-sm" data-toggle="modal" data-target="#abstractModal" data-abstract="<%- item["abstract'"].replace(/"/g, '&quot;') %>" data-title="<%- item.title.replace(/"/g, '&quot;') %>" style="padding:0.2em 0.6em;">ABS</button>
40-
<% } %>
41-
<a href="<%= doiurl %>" class="btn btn-outline-secondary btn-sm" target="_blank" style="padding:0.2em 0.6em;">HTML</a>
42-
<% if (item.pdf && item.pdf.trim()) { %>
49+
<% } %> -->
50+
<!-- <a href="<%= doiurl %>" class="btn btn-outline-secondary btn-sm" target="_blank" style="padding:0.2em 0.6em;">HTML</a> -->
51+
<!-- <% if (item.pdf && item.pdf.trim()) { %>
4352
<a href="<%= item.pdf %>" class="btn btn-outline-secondary btn-sm" target="_blank" style="padding:0.2em 0.6em;">PDF</a>
44-
<% } %>
45-
<a href="https://github.com/computorg/<%- item.repo %>" class="btn btn-outline-secondary btn-sm" target="_blank" style="padding:0.2em 0.6em;">GIT REPO</a>
46-
<button type="button" class="btn btn-outline-secondary btn-sm" onclick="generateBibTex('<%- item.title.replace(/'/g, "\\'") %>', '<%- item.authors.replace(/'/g, "\\'") %>', '<%= item.year %>', '<%= doiurl %>')" style="padding:0.2em 0.6em;">BIB</button>
53+
<% } %> -->
54+
<a href="https://github.com/computorg/<%- item.repo %>" class="btn btn-outline-secondary btn-sm" target="_blank" style="padding:0.2em 0.6em;">Sources (Git)</a>
55+
<button type="button" class="btn btn-outline-secondary btn-sm" onclick="generateBibTex('<%- bibtitle %>', '<%- bibauthors %>', '<%= item.year %>', '<%= doiurl %>')" style="padding:0.2em 0.6em;"><span style="font-variant: small-caps; font-family: 'Times New Roman', Times, serif;">Bib<span style="vertical-align: -0.2em;">T</span><span style="vertical-align: 0em;">E</span>X</span></button>
4756
</div>
4857
</div>
4958
</div>
@@ -162,4 +171,4 @@ document.addEventListener("DOMContentLoaded", function() {
162171
setTimeout(scrollToAnchor, 400);
163172
});
164173
</script>
165-
```
174+
```

site/published.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
pdf: ''
106106
repo: published-202412-ambroise-spectral
107107
title: Spectral Bridges
108-
url: https://computo.sfds.asso.fr/published-202412-ambroise-spectral/
108+
url: ''
109109
year: 2024
110110
- abstract': >-
111111
Conformal Inference (CI) is a popular approach for
@@ -261,10 +261,10 @@
261261
doi: 10.57750/jjza-6j82
262262
draft: false
263263
journal: Computo
264-
pdf: https://computo.sfds.asso.fr/published-202402-elmasri-optimal/published-202312-elmasri-optimal.pdf
264+
pdf: ''
265265
repo: published-202402-elmasri-optimal
266266
title: Optimal projection for parametric importance sampling in high dimensions
267-
url: https://computo.sfds.asso.fr/published-202402-elmasri-optimal/
267+
url: ''
268268
year: 2024
269269
- abstract': >-
270270
In numerous applications, cloud of points do seem to
@@ -283,7 +283,7 @@
283283
pdf: ''
284284
repo: published-202401-adrat-repulsion
285285
title: Point Process Discrimination According to Repulsion
286-
url: https://computo.sfds.asso.fr/published_202401_adrat_repulsion/
286+
url: ''
287287
year: 2024
288288
- abstract': >-
289289
In plant epidemiology, pest abundance is measured in field
@@ -401,10 +401,10 @@
401401
doi: 10.57750/r5gx-jk62
402402
draft: false
403403
journal: Computo
404-
pdf: https://computo.sfds.asso.fr/published-202311-delattre-fim/published-202311-delattre-fim.pdf
404+
pdf: ''
405405
repo: published-202311-delattre-fim
406406
title: Computing an empirical Fisher information matrix estimate in latent variable models through stochastic approximation
407-
url: https://computo.sfds.asso.fr/published-202311-delattre-fim/
407+
url: ''
408408
year: 2023
409409
- abstract': >-
410410
Gaussian Graphical Models (GGMs) are widely used in
@@ -435,10 +435,10 @@
435435
doi: 10.57750/1f4p-7955
436436
draft: false
437437
journal: Computo
438-
pdf: https://computo.sfds.asso.fr/published-202306-sanou-multiscale_glasso/published-202306-sanou-multiscale_glasso.pdf
438+
pdf: ''
439439
repo: published-202306-sanou-multiscale_glasso
440440
title: Inference of Multiscale Gaussian Graphical Models
441-
url: https://computo.sfds.asso.fr/published-202306-sanou-multiscale_glasso/
441+
url: ''
442442
year: 2023
443443
- abstract': >-
444444
Litter is a known cause of degradation in marine
@@ -466,10 +466,10 @@
466466
doi: 10.57750/845m-f805
467467
draft: false
468468
journal: Computo
469-
pdf: https://computo.sfds.asso.fr/published-202301-chagneux-macrolitter/published-202301-chagneux-macrolitter.pdf
469+
pdf: ''
470470
repo: published-202301-chagneux-macrolitter
471471
title: 'Macrolitter video counting on riverbanks using state space models and moving cameras '
472-
url: https://computo.sfds.asso.fr/published-202301-chagneux-macrolitter/
472+
url: ''
473473
year: 2023
474474
- abstract': >-
475475
The package \$\textbackslash textsf\{clayton\}\$ is
@@ -491,10 +491,10 @@
491491
doi: 10.57750/4szh-t752
492492
draft: false
493493
journal: Computo
494-
pdf: https://computo.sfds.asso.fr/published-202301-boulin-clayton/published-202301-boulin-clayton.pdf
494+
pdf: ''
495495
repo: published-202301-boulin-clayton
496496
title: 'A Python Package for Sampling from Copulae: clayton'
497-
url: https://computo.sfds.asso.fr/published-202301-boulin-clayton/
497+
url: ''
498498
year: 2023
499499
- abstract': >-
500500
Deep learning is used in computer vision problems with

0 commit comments

Comments
 (0)