Jeremy Lewi

Results 203 comments of Jeremy Lewi
trafficstars

I'm not convinced that actually worked; my suspicion is that the model is no longer loaded and we are using random weights.

Yeah looks like that wasn't loading the actual weights. As soon as I changed it to load the model on each predict call I started getting much better results. As...

Thanks @hamelsmu I had looked at https://github.com/machine-learning-apps/Issue-Label-Bot/blob/master/flask_app/app.py and couldn't figure out what it was doing differently that multi-threading doesn't seem to be an issue.

Here is an [Architecture Diagram](https://github.com/kubeflow/code-intelligence/tree/master/Label_Microservice#architecture) There are basically two pieces * The [front-end flask app](https://github.com/machine-learning-apps/Issue-Label-Bot/blob/master/flask_app/app.py ) * This publishes items to pubsub for certain repositories (i.e repositories with their own...

Thanks @hamelsmu if you wanted to try this out; my suggestion would be to follow the developer guide https://github.com/kubeflow/code-intelligence/blob/master/Label_Microservice/developer_guide.md That should explain how to * Use the dev instance of...

I gave this a quick try and skaffold gives me the warning ``` WARN[0772] error adding dirty artifact to changeset: inferring syncmap for image gcr.io/issue-label-bot-dev/bot-worker: SyncMap is not supported by...

Using manual mode for skaffold file sync seems to work; Here's my sample stanza ``` sync: manual: - src: 'py/code_intelligence/*.py' dest: '/' - src: 'py/label_microservice/*.py' dest: '/' ``` I was...

Also hit GoogleContainerTools/skaffold#3454

I created a simple file to run a program in a subprocess and auto restart it whenever some files change. https://github.com/kubeflow/code-intelligence/blob/06125b0cd2e25e01b1ec67cf444987747f071600/py/code_intelligence/run_with_auto_restart.py So far this appears to be working as expected...

@GauravSarkar thanks! in general it is a good idea to discuss what you are planning and get buy in before investing time and doing the work. I think this is...