Skip to content

Commit

Permalink
🐛 circumvent timeout error -> decrease training time of tutorial
Browse files Browse the repository at this point in the history
- currently tutorial is not running through on READTHEDOCS
- see: executablebooks/MyST-NB#583

- 🐛 fix table formatting
  • Loading branch information
Henry committed Feb 5, 2024
1 parent 3b77222 commit f7ea5b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/04_1_train_pimms_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@
"outputs": [],
"source": [
"model.fit(train_X, val_X,\n",
" epochs_max=50,\n",
" epochs_max=30,\n",
" cuda=False)"
]
},
Expand Down
2 changes: 1 addition & 1 deletion project/04_1_train_pimms_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@

# %%
model.fit(train_X, val_X,
epochs_max=50,
epochs_max=30,
cuda=False)

# %%
Expand Down
2 changes: 2 additions & 0 deletions project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
Required is abundance data in wide or long format in order to run the models.

| Sample ID | Protein A | Protein B | Protein C | ... |
| --- | --- | --- | --- | --- |
| sample_01 | 0.1 | 0.2 | 0.3 | ... |
| sample_02 | 0.2 | 0.1 | 0.4 | ... |
| sample_03 | 0.3 | 0.2 | 0.1 | ... |

or as long formated data.

| Sample ID | Protein | Abundance |
| --- | --- | --- |
| sample_01 | Protein A | 0.1 |
| sample_01 | Protein B | 0.2 |
| sample_01 | Protein C | 0.3 |
Expand Down

0 comments on commit f7ea5b9

Please sign in to comment.