-
Notifications
You must be signed in to change notification settings - Fork 35
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
Feature/Android #494
Feature/Android #494
Conversation
super().__init__() | ||
|
||
# function to calculate an incremental weighted average of the weights | ||
def increment_average( |
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 do we need two version of this function? The implementation in increment_average_add looks more efficient (vectorized). Why not have only that one (as 'increment_average')?
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.
Think this is very much still in dev state. Will convert to draft.
from .helperbase import HelperBase | ||
|
||
|
||
class Helper(HelperBase): |
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.
Maybe more a philosophical question, but there seems to be nothing here specific to Android. It is more that we are here assuming that the model parameters have been serialized to a json document, and that that document can be cast to a numpy.array? Maybe add those assumptions to the readme? I guess what I am after is if it should be named "androidhelper" or something else (jsonhelper?)
@niklastheman This one should be closed now, right? You merged the android helper in a separate PR, right? |
Yes, this is obsolete. |
Has been solved in other PR. |
Android helper added