Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Paper #399

Open
wants to merge 43 commits into
base: main
Choose a base branch
from
Open

Paper #399

Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
15c0fa9
...
sebffischer Dec 3, 2024
52cdd10
add first draft
sebffischer Dec 3, 2024
434296c
add paper workflow
bblodfon Dec 9, 2024
916adb2
correct path
bblodfon Dec 9, 2024
a955513
fix bib file
bblodfon Dec 9, 2024
a054f0a
refine paper
bblodfon Dec 9, 2024
691f487
add authors
bblodfon Dec 9, 2024
21f797f
correct author affiliation
bblodfon Dec 9, 2024
cf2ae97
refine paper
bblodfon Dec 9, 2024
940e7ba
add author info
bblodfon Dec 9, 2024
8972c9c
add Byron's affiliation and orchid
bblodfon Dec 9, 2024
2629ec1
refine text
bblodfon Dec 9, 2024
b348075
refine paper
bblodfon Dec 9, 2024
ed967e5
fix bib file
bblodfon Dec 9, 2024
e3225a8
refine text in rest of the paper sections
bblodfon Dec 9, 2024
cb8ed9f
add more author info
bblodfon Dec 9, 2024
72f4975
change to author github name for abess learners
bblodfon Dec 9, 2024
ed37bb4
refine text
bblodfon Dec 9, 2024
458444f
mention examples
bblodfon Dec 9, 2024
35bf2cb
correct some author info
bblodfon Dec 10, 2024
a8bb61e
correct authors + add last two
bblodfon Dec 10, 2024
0c3b484
address some feedback
sebffischer Dec 11, 2024
85917f0
...
sebffischer Dec 11, 2024
68b6973
add community impact + future directions section
bblodfon Dec 12, 2024
92cef0a
update author info
bblodfon Dec 12, 2024
7f6a842
mention tuning and cite paper
bblodfon Dec 16, 2024
1d503ef
add Liana's affiliation
bblodfon Jan 14, 2025
3863cb8
update author affiliations
bblodfon Feb 4, 2025
6926bf7
Update paper/paper.md
sebffischer Mar 10, 2025
138bc59
Update paper/paper.md
sebffischer Mar 10, 2025
1b1e020
Update paper/paper.md
sebffischer Mar 10, 2025
1e88216
Update paper/paper.md
sebffischer Mar 10, 2025
fbf9cc5
Update paper/paper.md
sebffischer Mar 10, 2025
bed2de6
Update paper/paper.md
sebffischer Mar 10, 2025
0d14260
Update paper/paper.md
sebffischer Mar 10, 2025
78b06d2
Update paper/paper.md
sebffischer Mar 10, 2025
220b706
Update paper/paper.md
sebffischer Mar 10, 2025
4aecb11
make links footnotes
sebffischer Mar 10, 2025
bb3bc1a
improve mlr3extralearners explanation
sebffischer Mar 10, 2025
a440c10
wording
sebffischer Mar 10, 2025
0da64fe
small changes
sebffischer Mar 10, 2025
ec51463
some more fixes
sebffischer Mar 10, 2025
ab5686d
fix affiliations
sebffischer Mar 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add paper workflow
  • Loading branch information
bblodfon committed Dec 9, 2024
commit 434296cb2a8451921ad83861d964dd9daeeedc05
28 changes: 28 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Draft PDF
on:
push:
paths:
- paper/**
- .github/workflows/draft-pdf.yml

jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: paper.md
- name: Upload
uses: actions/upload-artifact@v4
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper.pdf
Loading