Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some doc needed to make this work #744

Merged
merged 1 commit into from
Aug 6, 2019
Merged
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 doc/source/python/python_wrapping_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN pip install -r requirements.txt
EXPOSE 5000
# Define environment variable
ENV MODEL_NAME SimpleModel
ENV MODEL_NAME MyModel
ENV API_TYPE REST
ENV SERVICE_TYPE MODEL
ENV PERSISTENCE 0
Expand Down Expand Up @@ -202,7 +202,7 @@ There is an [example notebook illustrating a model with custom metrics in python
To add custom meta data you can add an optional method ```tags``` which can return a dict of custom meta tags as shown in the example below:

```
class UserObject(object):
class MyModel(object):
def predict(self,X,features_names):
return X
Expand Down