Jan Vesely
Jan Vesely
``` $ pip install -e .[doc] -c env_constraints.txt -c broken_trans_deps.txt Obtaining file:///home/runner/work/PsyNeuLink/PsyNeuLink Installing build dependencies: started Installing build dependencies: finished with status 'done' Checking if build backend supports build_editable: started...
A tracker bug for Python 3.12 specific issues * https://github.com/PrincetonUniversity/PsyNeuLink/issues/2894
The test fails by selecting the wrong result ~3/100 times. PRNG determinism in PECOptimizationFunction is done (in a hacky way) by replacing optuna's PRNG instance: psyneulink/core/components/functions/nonstateful/fitfunctions.py:802 ``` # We need...
The warning: ``` $HOME/PsyNeuLink/psyneulink/core/compositions/composition.py:6572: UserWarning: InputPort ('InputPort-0') of 'ProcessingMechanism-0' doesn't have any afferent Projections. ``` appears even for nodes/mechanisms that don't have any inputs, (e.g. use PRNG functions). for example...
the Port `_update()` method is overloaded in `ControlSignal` with the following: ``` def _update(self, params=None, context=None): """Update value (intensity) and costs """ super()._update(params=params, context=context) if self.parameters.cost_options._get(context): intensity = self.parameters.value._get(context) self.parameters.cost._set(self.compute_costs(intensity,...
``` $ python3 -c 'import psyneulink as pnl; f = pnl.TransferWithCosts(enabled_cost_functions=pnl.CostFunctions.ADJUSTMENT); f(10); print(f.intensity_cost, f.adjustment_cost, f.duration_cost, f.combined_costs)' [1.] [10.] None [10.] ```
``` $ python3 -c 'import psyneulink as pnl; f = pnl.TransferWithCosts(enabled_cost_functions=pnl.CostFunctions.ALL); f(10); print(f.combine_costs_fct.defaults.variable)' [0] ``` the above example combination function takes 3 inputs, but it's not reflected in the shape...
as reported in [0,1], appears to specific to self-hosted runners: ``` TestCompositionRuntimeParams.test_params_for_modulatory_projection_in_parameter_port _ [gw4] darwin -- Python 3.8.12 /Users/psyneulink/actions-runner/_work/_temp/_venv/bin/python self = def test_params_for_modulatory_projection_in_parameter_port(self): T1 = TransferMechanism() T2 = TransferMechanism() CTL...
**Description:** Using default python-architecture for python 3.7 **Action version:** v5 **Platform:** - [ ] Ubuntu - [x] macOS - [ ] Windows **Runner type:** - [x] Hosted - [ ]...
**Description:** Trying to use Python-x64 on macos-14-arm64 fails **Action version:** v5 **Platform:** - [ ] Ubuntu - [x] macOS - [ ] Windows **Runner type:** - [x] Hosted - [...