We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959f7c2 commit 83bb841Copy full SHA for 83bb841
Dockerfile
@@ -291,7 +291,8 @@ RUN pip install --upgrade cython && \
291
pip install annoy && \
292
# Need to use CountEncoder from category_encoders before it's officially released
293
pip install git+https://github.com/scikit-learn-contrib/categorical-encoding.git && \
294
- pip install google-cloud-automl && \
+ # google-cloud-automl 2.0.0 introduced incompatible API changes, need to pin to 1.0.1
295
+ pip install google-cloud-automl==1.0.1 && \
296
# Newer version crashes (latest = 1.14.0) when running tensorflow.
297
# python -c "from google.cloud import bigquery; import tensorflow". This flow is common because bigquery is imported in kaggle_gcp.py
298
# which is loaded at startup.
0 commit comments