Skip to content
Closed
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: 2 additions & 2 deletions dev/infra/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

# Image for building and testing Spark branches. Based on Ubuntu 20.04.
# See also in https://hub.docker.com/_/ubuntu
FROM ubuntu:focal-20220801
FROM ubuntu:focal-20220922

ENV FULL_REFRESH_DATE 20220706
ENV FULL_REFRESH_DATE 20221019

ENV DEBIAN_FRONTEND noninteractive
ENV DEBCONF_NONINTERACTIVE_SEEN true
Expand Down
2 changes: 1 addition & 1 deletion python/pyspark/pandas/mlflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def load_model(
... lr = LinearRegression()
... lr.fit(train_x, train_y)
... mlflow.sklearn.log_model(lr, "model")
LinearRegression(...)
LinearRegression...

Now that our model is logged using MLflow, we load it back and apply it on a pandas-on-Spark
dataframe:
Expand Down