From 910a15d2581e2df636d547ff1c305acc4b8848bf Mon Sep 17 00:00:00 2001 From: Ankush Agarwal Date: Wed, 7 Mar 2018 15:32:50 -0800 Subject: [PATCH] Add comment --- github_issue_summarization/serving_the_model.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/github_issue_summarization/serving_the_model.md b/github_issue_summarization/serving_the_model.md index 528b416f..54ee3716 100644 --- a/github_issue_summarization/serving_the_model.md +++ b/github_issue_summarization/serving_the_model.md @@ -4,6 +4,8 @@ We are going to use a simple tornado server to serve the model. The [server.py]( Start the server using `python server.py --port=8888`. +> The model is written in Keras and when exported as a TensorFlow model seems to be incompatible with TensorFlow Serving. So we're using our own webserver to serve this model. + ## Sample request ```