-
Notifications
You must be signed in to change notification settings - Fork 157
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
[onert/train] Let's introduce circle+ generating tools #12650
Comments
about draftI made a draft (#12649) that injects training parameters into circle, referencing circle/oxri(inner source) implmentation.
I need more ideas 💡After I made this draft work somehow, I started to think that it is NOT helpful because of the input format.
[ python API ]IMHO, python API is more useful than command line executing tools. #simple pseudo API
import onert # new package
training_pram = onert.TrainingParameter(SGD(learning_rate = 0.01), MSE(from_logits=true), batch_size=32)
circle = onert.open("mnist.circle")
circle.inject_tparam(training_param)
circle.export("mnist_with_meta.circle") /cc @Samsung/one_onert |
After some talks with @Samsung/one_onert yesterday, I rethink this issue.
|
This PR adds a feature - add training parameters to a circle plus instance. - export circle plus instance as a *.circle file ONE-DCO-1.0-Signed-off-by: seunghui youn <sseung.youn@samsung.com> * related issue : Samsung#12650
This PR adds a feature - add training parameters to a circle plus instance. - export circle plus instance as a *.circle file ONE-DCO-1.0-Signed-off-by: seunghui youn <sseung.youn@samsung.com> * related issue : Samsung#12650
This PR adds a feature - add training parameters to a circle plus instance. - export circle plus instance as a *.circle file ONE-DCO-1.0-Signed-off-by: seunghui youn <sseung.youn@samsung.com> * related issue : Samsung#12650
This PR adds a feature - inject training parameters to a circle plus instance - export circle plus instance as a *.circle file ONE-DCO-1.0-Signed-off-by: seunghui youn <sseung.youn@samsung.com> * related issue : Samsung#12650
This PR adds a feature - inject training parameters to a circle plus instance - export circle plus instance as a *.circle file ONE-DCO-1.0-Signed-off-by: seunghui youn <sseung.youn@samsung.com> * related issue : Samsung#12650
basic features are all added in https://github.com/Samsung/ONE/tree/master/tools/circle_plus_gen. |
There is no way to create a circle+ file in public.
So, Let's generate tools for generating circle+, More exactly tools that inject training parameters into the circle file.
The text was updated successfully, but these errors were encountered: