-
Notifications
You must be signed in to change notification settings - Fork 6
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
Train deep networks #63
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This eliminates a segmentation fault caused by a mistaken assumption of the allocate-on-assignment for what was actually a fixed-size left-hand-side array.
The current training algorithm has a hardwired architecture. The next step is to generalize the code.
This starts the process of generalizing the new deep network training algorithm by querying the passed-object dummy argument for the network properties (num_inputs, neurons_per_layer, num_outputs) instead of hardwiring the properties.
This commit 1. Continues the previous commit's pattern of using introspection on passed-object dummy argument in lieu of hardwired values. 2. Removes unnecessary real-kind conversions. 3. Minor house keeping to combine some declarations.
This commit moves a duplicated block of code in the two inference_engine_t constructor functions to one, private subroutine, which sets the activation_strategy_ component.
rouson
force-pushed
the
merge-alternate-training
branch
from
June 27, 2023 14:15
d30fda1
to
dbaf0b9
Compare
rouson
commented
Jun 27, 2023
…ning ci: use newer version of gcc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR
example/
subdirectory based on the new unit tests.To run the new example, execute