Skip to content

Commit

Permalink
Merge pull request #744 from gageorge/patch-1
Browse files Browse the repository at this point in the history
Fix some doc needed to make this work
  • Loading branch information
ukclivecox authored Aug 6, 2019
2 parents 785e50c + 563eec6 commit c661665
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 c661665

Please sign in to comment.