| 20 | model = pickle.load(f) |
| 21 | |
| 22 | class MainHandler(tornado.web.RequestHandler): |
| 23 | def get(self): |
| 24 | self.write("Hello, Tornado!") |
| 25 | |
| 26 | class PredictionHandler(tornado.web.RequestHandler): |
| 27 | # predict one sample at a time |
nothing calls this directly
no outgoing calls
no test coverage detected