端到端機器學習
Joshua Stapleton
Machine Learning Engineer
部署


Dockerfile:建置容器的指令
# Use an official Python runtime as a parent image FROM Python:3.7# Set the working directory in the container to /app WORKDIR /ML_pipeline# Copy the current directory contents into the container at /app ADD . /ML_pipeline# Install any needed packages specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# ... continued
# Make port 80 available to the world outside this container
EXPOSE 80
# Define environment variable
ENV NAME World
# Run app.py when the container launches
CMD ["Python", "ML_pipeline.py"]
建置上方定義的映像檔:
docker build -t heart_disease_model .
加上標籤:
docker tag heart_disease_model:latest heart_disease_model:1.0

Docker 讓封裝模型變得容易,但仍需注意:
若應用程式含有敏感資訊…

端到端機器學習