Skip to content

Commit

Permalink
Merge pull request #317 from Neuroblox/ho/action_selection_rho
Browse files Browse the repository at this point in the history
Use Matrisome's `ρ` as competitor state in action selection
  • Loading branch information
harisorgn authored Dec 21, 2023
2 parents 466d93b + b18d5ad commit 9b7e01a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/blox/connections.jl
Original file line number Diff line number Diff line change
Expand Up @@ -581,5 +581,5 @@ function connect_action_selection!(as::AbstractActionSelection, matr1::Matrisome
sys1 = get_namespaced_sys(matr1)
sys2 = get_namespaced_sys(matr2)

as.competitor_states = [sys1.H*sys1.jcn, sys2.H*sys2.jcn]
as.competitor_states = [sys1.ρ, sys2.ρ]
end
2 changes: 1 addition & 1 deletion test/reinforcement_learning.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using MetaGraphs
using DataFrames
using CSV

@testset "RFLearning test" begin
@testset "RL test" begin
t_trial = 2 # ms
time_block_dur = 0.01 # ms
N_trials = 3
Expand Down

0 comments on commit 9b7e01a

Please sign in to comment.