-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* • recurrenttransfermechanism.py - _instantiate_attributes_after_function(): fix assignment of StabilityFunction, and force update of default_variable for output_port * • recurrenttransfermechanism.py _instantiate_attributes_after_function: revise call to _update_default_variable to use energy.variable instead of value * • recurrenttransfermechanism.py _instantiate_attributes_after_function: revise call to _update_default_variable to use energy.variable instead of value * • composition.py - reset(): add clear_results arg • timerfunctions.py - functions all written for python and pytorch... need llvm versions • timerfunctions.py - Desmos plots updated * Add Mechanism and Functions to support progression of integration along a trajectory • timermechanism.py: sublass of IntegratorMechanism • timerfunctions.py: subclass of TransferFunction - LinearTimer, AcceleratingTimer, DeceleratingTimer, AsymptoticTimer • test_timer_mechanism.py --------- Co-authored-by: jdcpni <pniintel55>
- Loading branch information
Showing
21 changed files
with
1,867 additions
and
393 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,8 @@ Core | |
|
||
- `TransferFunctions` | ||
|
||
- `TimerFunctions` | ||
|
||
- `TransformFunctions` | ||
|
||
- `StatefulFunctions` | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ IntegratorMechanisms | |
|
||
DDM | ||
EpisodicMemoryMechanism | ||
TimerMechanism |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
TimerFunctions | ||
============== | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
|
||
.. automodule:: psyneulink.core.components.functions.nonstateful.timerfunctions | ||
:members: TimerFunction, LinearTimer, AcceleratingTimer, DeceleratingTimer, AsymptoticTimer | ||
:private-members: | ||
:exclude-members: Parameters |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TimerMechanism | ||
============== | ||
|
||
.. automodule:: psyneulink.library.components.mechanisms.processing.integrator.timermechanism | ||
:members: | ||
:private-members: | ||
:exclude-members: random, Parameters |
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 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 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
Oops, something went wrong.