-
Notifications
You must be signed in to change notification settings - Fork 10
Fix pre review comments #249
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
Merged
MaxenceGollier
merged 24 commits into
JuliaSmoothOptimizers:paper
from
MaxenceGollier:fix-pre-review-paper
Oct 21, 2025
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a2d51d2
fix references
MaxenceGollier 0447936
remove release on push
MaxenceGollier 70f3e04
fix Acknowlegdement name
MaxenceGollier 974cc47
paper: reduce number of words
MaxenceGollier ce435f5
paper: further reduce word count
MaxenceGollier 3bc8a7b
paper: rename "Examples" section to "Example"
MaxenceGollier e551d8b
paper: apply corrections from Mohamed
MaxenceGollier 485db85
paper: add conclusion back
MaxenceGollier 14753ba
paper: remove non-monotone
MaxenceGollier ef6870c
paper: Apply suggestions from dpo review
MaxenceGollier 6dd26ba
paper: apply other suggestions from dpo review
MaxenceGollier 39bde6d
paper: add workflow to count number of words
MaxenceGollier df6364c
fix wordcount workflow
MaxenceGollier 25fac28
comment wordcount only if from same repo
MaxenceGollier ca5113c
paper: apply suggestions from D1Lab
MaxenceGollier 17f2130
paper: remove more words
MaxenceGollier fffd47c
paper: remove more words based on the suggestions of D1Lab
MaxenceGollier e176915
paper: remove more words, remove tilde
MaxenceGollier d9ff128
Apply suggestions from code review
MaxenceGollier 5e6d1e7
apply suggestion from dpo
MaxenceGollier 94712ce
remove LSR1 from benchmark table
MaxenceGollier c161c84
numerical results: apply D1Lab comments
MaxenceGollier 97e12c9
revert some changes in the paper
MaxenceGollier cf96428
Apply suggestions from code review
MaxenceGollier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| name: Word Count | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| issues: write | ||
|
|
||
| jobs: | ||
| count-words: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Install Pandoc | ||
| run: sudo apt-get update && sudo apt-get install -y pandoc | ||
|
|
||
| - name: Count words in paper.md | ||
| id: wordcount | ||
| run: | | ||
| COUNT=$(pandoc paper/paper.md -t plain | wc -w) | ||
| echo "count=$COUNT" >> $GITHUB_OUTPUT | ||
| echo "📝 JOSS Word Count: $COUNT words" | ||
| if [ "$COUNT" -gt 1000 ]; then | ||
| echo "::warning title=JOSS Word Count::Paper exceeds 1000 words ($COUNT)." | ||
| fi | ||
|
|
||
| - name: Comment on PR with word count | ||
| if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | ||
| uses: marocchino/sticky-pull-request-comment@v2 | ||
| with: | ||
| header: joss-wordcount | ||
| message: | | ||
| 📝 **JOSS Word Count** | ||
|
|
||
| The current word count for `paper.md` is **${{ steps.wordcount.outputs.count }}** words. | ||
|
|
||
| _(JOSS recommends 250-1000 words for the main text.)_ |
This file contains hidden or 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,13 +1,9 @@ | ||
| \begin{tabular}{lcrrrrr} | ||
| \begin{tabular}{llrrrrr} | ||
| \hline | ||
| \textbf{Method} & \textbf{Status} & \textbf{$t$($s$)} & \textbf{$\#f$} & \textbf{$\#\nabla f$} & \textbf{$\#prox$} & \textbf{Objective} \\\hline | ||
| TR (LSR1, SVM) & first\_order & 3.9349 & 347 & 291 & 4037 & 179.837 \\ | ||
| R2N (LSR1, SVM) & first\_order & 1.9511 & 185 & 101 & 27932 & 192.493 \\ | ||
| LM (SVM) & first\_order & 19.7826 & 6 & 2876 & 1001 & 201.186 \\ | ||
| LMTR (SVM) & first\_order & 12.4967 & 11 & 1614 & 432 & 188.274 \\ | ||
| Method & Status & $t$($s$) & $\#f$ & $\#\nabla f$ & $\#prox$ & Objective \\\hline | ||
| TR & first\_order & 3.9349 & 347 & 291 & 4037 & 179.837 \\ | ||
| R2N & first\_order & 1.9511 & 185 & 101 & 27932 & 192.493 \\ | ||
| LM & first\_order & 19.7826 & 6 & 2876 & 1001 & 201.186 \\ | ||
| LMTR & first\_order & 12.4967 & 11 & 1614 & 432 & 188.274 \\ | ||
| \hline | ||
| TR (LBFGS, NNMF) & first\_order & 0.1014 & 42 & 40 & 3160 & 976.06 \\ | ||
| R2N (LBFGS, NNMF) & first\_order & 0.4913 & 169 & 107 & 17789 & 411.727 \\ | ||
| LM (NNMF) & first\_order & 0.1157 & 14 & 7042 & 2601 & 131.184 \\ | ||
| LMTR (NNMF) & first\_order & 0.0697 & 9 & 4066 & 1435 & 131.186 \\\hline | ||
| \end{tabular} | ||
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.