Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #50 from SpiNNakerManchester/deprecated
Browse files Browse the repository at this point in the history
remove methods deprecated as they are not standard PyNN
  • Loading branch information
rowleya authored Oct 9, 2023
2 parents 552c5eb + b7759c4 commit 88dba50
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion learning/split/stdp_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
post_neo = post_pop.get_data(variables=["spikes"])
post_spikes = post_neo.segments[0].spiketrains

print(stdp_projection.getWeights())
print(stdp_projection.get('weight', format="list"))

sim.end()

Expand Down
2 changes: 1 addition & 1 deletion learning/split/struct_pl_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
post_neo = post_pop.get_data(variables=["spikes"])
post_spikes = post_neo.segments[0].spiketrains

print(plastic_projection.getWeights())
print(plastic_projection.get('weight', format="list"))

sim.end()

Expand Down
2 changes: 1 addition & 1 deletion learning/split/struct_pl_stdp_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
post_neo = post_pop.get_data(variables=["spikes"])
post_spikes = post_neo.segments[0].spiketrains

print(plastic_projection.getWeights())
print(plastic_projection.get('weight', format="list"))

sim.end()

Expand Down
2 changes: 1 addition & 1 deletion learning/stdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
post_neo = post_pop.get_data(variables=["spikes"])
post_spikes = post_neo.segments[0].spiketrains

print(stdp_projection.getWeights())
print(stdp_projection.get('weight', format="list"))

sim.end()

Expand Down
2 changes: 1 addition & 1 deletion learning/struct_pl.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
post_neo = post_pop.get_data(variables=["spikes"])
post_spikes = post_neo.segments[0].spiketrains

print(plastic_projection.getWeights())
print(plastic_projection.get('weight', format="list"))

sim.end()

Expand Down
2 changes: 1 addition & 1 deletion learning/struct_pl_stdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
post_neo = post_pop.get_data(variables=["spikes"])
post_spikes = post_neo.segments[0].spiketrains

print(plastic_projection.getWeights())
print(plastic_projection.get('weight', format="list"))

sim.end()

Expand Down

0 comments on commit 88dba50

Please sign in to comment.