-
Notifications
You must be signed in to change notification settings - Fork 70
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
Any plans to add custom loss functions? #77
Comments
Another option which might be easier to implement (though involves quite a lot refactoring but not technically difficult) is the new module system in the mxnet python side. See apache/mxnet#1868 for example. With the new module system, a hybrid symbolic and imperative module can be used. The computation graph is built using symbolic nodes, while the loss function is written directly in Python. Unfortunately, I have no estimate of timeline when I would be able to find enough time to port that to Julia side. Contributions are very welcome of course! |
There is a discussion In R branch of MXNet. They propose to use MakeLoss function. I've tried to implement their solution in julia: Well, generally speaking it works, but it looks ugly. it would be nice, if anyone with deep knowledge of MXNet could help. There are few questions:
|
The python version of MXNet has the capability to define custom loss functions, but this is missing from the Julia version. Are there any plans to add it?
The text was updated successfully, but these errors were encountered: