Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Jupyter Notebook
.ipynb_checkpoints

logs
3 changes: 3 additions & 0 deletions form.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ attributes:
options:
- ["test"]
- ["Alphafold3"]
- ["Pytorch"]
- ["Tensorflow"]
- ["Tensorboard"]
num_hours:
widget: 'number_field'
label: "Number of hours (max 4)"
Expand Down
27 changes: 21 additions & 6 deletions submit.yml.erb
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
<%-
case tutorial
when "Pytorch"
slurm_args = [
"--nodes", "1",
"-c", "14",
"--gres=gpu:1",
"--partition", "ondemand-p100"
]
else
slurm_args = [
"--nodes", "1",
"-c", "4",
"--partition", "ondemand"
]
end
%>
---
batch_connect:
template: "basic"
conn_params:
- usertutorial
script:
native:
- "--nodes=1"
- "--ntasks=1"
- "--cpus-per-task=4"
- "--mem=5G"
- "--partition=ondemand"
<%- slurm_args.each do |arg| %>
- "<%= arg %>"
<%- end %>
- "--time=<%= num_hours.to_i %>:00:00"
- "-J=Tutorial"
- "-J Tutorial"
4 changes: 2 additions & 2 deletions template/alphafold3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -39,7 +39,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.10"
"version": "3.6.8"
}
},
"nbformat": 4,
Expand Down
251 changes: 251 additions & 0 deletions template/ml_tutorials/deep_ensemble.ipynb

Large diffs are not rendered by default.

Loading