File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_altair_example_notebooks.sh ./
1515RUN chmod +x run_altair_example_notebooks.sh
1616
1717# Example notebooks' dependencies
18- RUN micromamba install -y --freeze-installed -c conda-forge papermill vega_datasets pandas matplotlib numpy
18+ RUN micromamba install -y --freeze-installed -c conda-forge papermill vega_datasets numpy
1919
2020CMD ["./run_altair_example_notebooks.sh" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ keras_version=$(micromamba list | grep keras | tr -s ' ' | cut -d ' ' -f 3)
55git checkout tags/v$keras_version
66# Ref: https://keras.io/guides/, https://github.com/keras-team/keras-io/tree/master
77for file in * .py; do
8- if [ " $file " != " transfer_learning.py" ] && [" $file " != " custom_train_step_in_torch.py" ]; then
8+ if [ " $file " != " transfer_learning.py" ] && [ " $file " != " custom_train_step_in_torch.py" ]; then
99 # skipping transfer_learning.py because it has 20 epochs and it takes a very long time to execute
1010 # https://github.com/keras-team/keras-io/blob/master/guides/transfer_learning.py#L562
1111 # skipping custom_train_step_in_torch.py because there is a bug which causes error
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_altair_example_notebooks.sh ./
1515RUN chmod +x run_altair_example_notebooks.sh
1616
1717# Example notebooks' dependencies
18- RUN micromamba install -y --freeze-installed -c conda-forge papermill vega_datasets pandas matplotlib numpy
18+ RUN micromamba install -y --freeze-installed -c conda-forge papermill vega_datasets numpy
1919
2020CMD ["./run_altair_example_notebooks.sh" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ keras_version=$(micromamba list | grep keras | tr -s ' ' | cut -d ' ' -f 3)
55git checkout tags/v$keras_version
66# Ref: https://keras.io/guides/, https://github.com/keras-team/keras-io/tree/master
77for file in * .py; do
8- if [ " $file " != " transfer_learning.py" ] && [" $file " != " custom_train_step_in_torch.py" ]; then
8+ if [ " $file " != " transfer_learning.py" ] && [ " $file " != " custom_train_step_in_torch.py" ]; then
99 # skipping transfer_learning.py because it has 20 epochs and it takes a very long time to execute
1010 # https://github.com/keras-team/keras-io/blob/master/guides/transfer_learning.py#L562
1111 # skipping custom_train_step_in_torch.py because there is a bug which causes error
You can’t perform that action at this time.
0 commit comments