-
Notifications
You must be signed in to change notification settings - Fork 32
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
Docs/arguments/thin #1387
Merged
Merged
Docs/arguments/thin #1387
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
- automated assignment of attributes from Keywords.OUTPUTS • RecurrentTransferMechanism - renamed definition of local ENERGY to ENERGY_OUTPUT_PORT - renamed definition of local ENTROPY to ENTROPY_OUTPUT_PORT
- added standard_output_ports and standard_output_port_names • TransferMechanism - standard_output_ports and standard_output_port_names now inherited
- eliminated instantiation of owner.standard_output_ports (moved to OutputPort._instantiate_output_port
- moved definition of standard_output_ports from ProcessingMechanism to Mechanism_Base
- If TransferMechanism has > 1 InputPort, RESULT renamed as RESULT-0
…m/PrincetonUniversity/PsyNeuLink into docs/arguments/thin
…versity/PsyNeuLink into docs/arguments/thin
# Conflicts: # .idea/runConfigurations/Scratch_Pad.xml # psyneulink/core/components/ports/outputport.py # psyneulink/library/components/mechanisms/processing/objective/predictionerrormechanism.py # psyneulink/library/components/mechanisms/processing/transfer/lcamechanism.py
- fixed bug in which target_size=0 caused crash
- _validate_params: fixed bug causing crash if sample and/or target input_port not specified
…m/PrincetonUniversity/PsyNeuLink into docs/arguments/thin
- added COMBINE to standard_output_ports
- OneHot: fixed bug in *_ABS_VAL value modes • ProcessingMechanism - modified MAX_VAL and MAX_ABS_VAL standard_output_ports to return scalar rather than OneHot values - added MAX_ONE_HOT and MAX_ABS_ONE_HOT standard_output_ports
- OneHot: fixed bug in *_ABS_VAL value modes • ProcessingMechanism - modified MAX_VAL and MAX_ABS_VAL standard_output_ports to return scalar rather than OneHot values - added MAX_ONE_HOT and MAX_ABS_ONE_HOT standard_output_ports
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.
• ProcessingMechanism
- modified MAX_VAL and MAX_ABS_VAL standard_output_ports
to return scalar rather than OneHot values
- added MAX_ONE_HOT and MAX_ABS_ONE_HOT standard_output_ports
• TransferMechanism
- added COMBINE to standard_output_ports
• tests
- test_transfer_mechanism
added test_combine_standard_output_port
- test_processing_mechanism
added tests for standard_ouput_ports
• ComparatorMechanism
- _validate_params: fixed bug causing crash if sample and/or target input_port not specified
• DDM
removed DDM_OUTPUT; replaced with DDM.standard_output_ports
NOTE: all prior references to pnl.DDM_OUTPUT.<OUTPUT_PORT_NAME>
can now use use just pnl.<<OUTPUT_PORT_NAME>
• ContrastiveHebbianMechanism
- fixed bug in which target_size=0 caused crash
• SelectionFunctions
- OneHot: fixed bug in *_ABS_VAL value modes