-
Notifications
You must be signed in to change notification settings - Fork 141
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
[demo] Server: Add accuracy tracking #125
Conversation
#92 table to track accuracy is created now I need to insert the timestamp , transaction hash , accuracy and model id . we are having following apis :- when do I need to call function to check accuracy with which API ? or I just need to do function only ? |
Would you add two new functions: 1) get the accuracy history for a model, 2) Add a new accuracy record for a model |
@juharris , I have created a function to 2.) add new accuracy record |
Could you direct me about the getAccuracyRecord function? Would it be an SQLite command to select the accuracy history of a particular model_id or something else? |
Yeah that's right. It would be good to be able to get the entire accuracy history of a model by providing a |
I had built the function and ordered it by timestamp and return the result as an object. Do let me know the further changes required. I will be happy to code |
Please let me resolve the issues. |
Messages updated ! |
Please review my pull request @juharris Sir ! |
#124 #92