-
Notifications
You must be signed in to change notification settings - Fork 72
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
Validate the configuration produced by LlamaTune inverse_transform() #812
Conversation
These changes are mainly to add flexibility to the auth service in supporting azure authenticating via: - A personal identity via az CLI for the local dev environment. This will still run into expiring issues, but is probably fine for local dev. - A personal or managed identity in an azure hosted environment. The flexibility to use the managed identity allows us to avoid the expiring issue without needing a separate SP, key-vault and cert setup, aligning with new security recommendations. --------- Co-authored-by: Eu Jing Chua <eujingchua@microsoft.com> Co-authored-by: Sergiy Matusevych <sergiym@microsoft.com>
Mypy got updated to v 1.11 recently We need these mypy fixes to make other PRs pass the CI tests
Closes microsoft#785 Also, add more unit tests to make sure the optimizer handles string inputs correctly. --------- Co-authored-by: Brian Kroth <bpkroth@users.noreply.github.com>
…sergiym/opt/llamatune_inv
@kkanellis please have a look at this when you get a chance. Pretty sure the clipping is the appropriate thing to do, but another set of eyes would be good. Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pushed a few small fixes; will merge into master and of @kkanellis has some updates, we'll do it in the subsequent PRs.
Revamp of #806 with the fix as well.
Adds code to handle appropriate scaling and type conversion and checking of the inverted config.
Splits that code out to a separate method for individual configs to make pylint happy and improve code readability.