-
Notifications
You must be signed in to change notification settings - Fork 58
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
Make the first example for the Sequential model pass #4
Comments
Almost there. The next step is to implement a C# equivelent of the _collect_metrics function and put it in Model.cs, line 577: keras-sharp/Sources/Engine/Training/Model.cs Line 577 in 222534b
|
Done, the next goal now would be to implement a C# equivalent of the _masked_objective and put it in Model.cs, line 610: keras-sharp/Sources/Engine/Training/Model.cs Line 610 in 2c7f6a3
|
…ceptions anymore. It is now necessary to compare the complete state of the Sequential model against Python do determine properties that have not been set correctly. - Updates GH-4: Make the first example for the Sequential model pass
The execution path for the sequential model does not throw obvious exceptions anymore. It is now necessary to compare the complete state of the Sequential model against Python to determine properties that have not been set correctly. |
Make the first example for a Sequential model given in https://keras.io/models/sequential/ pass as a unit test in the framework. The example is:
and the unit test is located at https://github.com/cesarsouza/keras-sharp/blob/master/Tests/SequentialTest.cs#L28
The text was updated successfully, but these errors were encountered: