-
Notifications
You must be signed in to change notification settings - Fork 835
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
Micro batch followup #3306
Micro batch followup #3306
Conversation
data = json.loads(raw_data[2]) | ||
data_np = np.array(data) | ||
concat = np.concatenate((concat, data_np)) | ||
loaded = [json.loads(raw_data[2]) for raw_data in input_data] |
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.
Nice one, looks much better!
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.
Nice!
/test integration
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: RafalSkolasinski The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test integration |
Another thing I would add is perhaps expanding on the documentation for mini-batching (thre is a batch processing section in the docs) |
@axsaucedo I did that in the last PR, added docs about it 👍🏻 |
Simplifying and some small adjustments after the last PR was automerged.