एंड-टू-एंड मशीन लर्निंग
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 से मॉडल पैकेजिंग आसान हो जाती है...
यदि आपकी एप्लिकेशन में संवेदनशील जानकारी है...

एंड-टू-एंड मशीन लर्निंग