-
Notifications
You must be signed in to change notification settings - Fork 1
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 #4 from mijanr/correct_woflow_git
Correct workflow git
- Loading branch information
Showing
3 changed files
with
20 additions
and
14 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Update README | |
on: | ||
push: | ||
branches: | ||
- main | ||
- correct_woflow_git | ||
|
||
jobs: | ||
update-readme: | ||
|
@@ -28,7 +28,13 @@ jobs: | |
|
||
- name: Commit results if it changed | ||
run: | | ||
git diff --exit-code --quiet results/best_runs.md || (git add results/best_runs.md && git commit -m "Update best runs") | ||
# if the results changed then commit the changes | ||
if [[ $(git status --porcelain) ]]; then | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Md Mijanur Rahman" | ||
git commit -am "Update results" || exit 0 | ||
git push | ||
fi | ||
- name: Replace results in README | ||
run: | | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
| Dataset | GRU_FCN | LSTM | LSTM_FCN | | ||
|:----------------------|----------:|-----------:|-----------:| | ||
| ECG200 | 0.91 | nan | 0.92 | | ||
| HandMovementDirection | nan | nan | 0.486486 | | ||
| Handwriting | nan | nan | 0.0752941 | | ||
| ItalyPowerDemand | nan | 0.559767 | 0.910593 | | ||
| Dataset | GRU_FCN | LSTM | LSTM_FCN | | ||
|:----------------------|-----------:|------------:|-----------:| | ||
| ECG200 | 0.91 | nan | 0.92 | | ||
| HandMovementDirection | nan | nan | 0.486486 | | ||
| Handwriting | 0.101176 | 0.0541176 | 0.0752941 | | ||
| ItalyPowerDemand | nan | 0.559767 | 0.910593 | |