-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about a custom MII task #131
Comments
Let me know if this solves your problems! |
Thank you @mrwyattii If only these limited data types are currently supported, what's the best route for dealing with model debugging? One of the issues I am having with submitting a PR is that I haven't yet figured out an eloquent method of tracing and debugging the model itself based on the remote gRPC deployment. Any pointers on getting more visibility into model exception reporting, should this be passed with gRPC as well as the additional kwarg outputs? |
Unfortunately, gRPC will truncate error messages on the server side and make debugging difficult. We plan to add a non-gRPC deployment type very soon that should address this issue. For now, I would recommend testing your model with just DeepSpeed-inference. Check out how we call |
Hello DeepSpeed-MII Team,
I have a project I am using MII for with GPT-J, and one of the requirements is the ability to pass return_dict_in_generate. So far I have gone thru the process flow and have modified the following:
server_client.py (mii_query_handle)
modelresponse_server.py (GeneratorReply())
modelresponse.proto (MultiStringReply)
However I am getting a Method not implemented exception in the gRPC channel after deploying the model.
So questions if anyone has the knowledge:
TIA!
The text was updated successfully, but these errors were encountered: