Skip to content

Commit

Permalink
Fix some doc needed to make this work
Browse files Browse the repository at this point in the history
  • Loading branch information
gageorge committed Aug 1, 2019
1 parent db458fa commit 563eec6
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 563eec6

Please sign in to comment.