-
Notifications
You must be signed in to change notification settings - Fork 392
Firebase ML - adding AutoML support #983
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
Conversation
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.
Looks mostly good. A few questions and suggestions.
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.
Looks pretty good. Few comments on the type hierarchy of ModelOptions
and modifying objects during tests.
}); | ||
}); | ||
|
||
// Waiting for BE fix. |
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.
Then I don't think the description of the test is correct. I don't see any code that handles a rejection in the body of the test.
displayName: 'node-integ-test-update-automl' | ||
}).then((model) => { | ||
const modelOptions: admin.machineLearning.ModelOptions = { | ||
tfliteModel: { automlModel: 'this will be replaced below' }, |
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.
Why not? It's still be in the scope of the getAutoMLModelReference().then()
. So everything in that block should see it.
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.
Thanka. LGTM 👍
Adding AutoML support