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 ./
15
15
RUN chmod +x run_altair_example_notebooks.sh
16
16
17
17
# 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
19
19
20
20
CMD ["./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)
5
5
git checkout tags/v$keras_version
6
6
# Ref: https://keras.io/guides/, https://github.com/keras-team/keras-io/tree/master
7
7
for 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
9
9
# skipping transfer_learning.py because it has 20 epochs and it takes a very long time to execute
10
10
# https://github.com/keras-team/keras-io/blob/master/guides/transfer_learning.py#L562
11
11
# 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 ./
15
15
RUN chmod +x run_altair_example_notebooks.sh
16
16
17
17
# 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
19
19
20
20
CMD ["./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)
5
5
git checkout tags/v$keras_version
6
6
# Ref: https://keras.io/guides/, https://github.com/keras-team/keras-io/tree/master
7
7
for 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
9
9
# skipping transfer_learning.py because it has 20 epochs and it takes a very long time to execute
10
10
# https://github.com/keras-team/keras-io/blob/master/guides/transfer_learning.py#L562
11
11
# 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