83b52b71a5245d241fedaeb7121d95157763a3f2,bindsnet/analysis/plotting.py,,plot_voltages,#,430
Before Change
args = (v[0], n_neurons[v[0]][0], n_neurons[v[0]][1], time[0], time[1])
plt.title("%s voltages for neurons (%d - %d) from t = %d to %d " % args)
plt.xlabel("Time (ms)")
plt.ylabel("Neuron index")
axes.set_aspect("auto")
else: // Plot each layer at a time
for i, v in enumerate(voltages.items()):
After Change
plt.title("%s voltages for neurons (%d - %d) from t = %d to %d " % args)
plt.xlabel("Time (ms)")
if plot_type == "line":
plt.ylabel("Voltage")
else:
plt.ylabel("Neuron index")
axes.set_aspect("auto")
else: // Plot each layer at a time
for i, v in enumerate(voltages.items()):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances Project Name: BindsNET/bindsnet
Commit Name: 83b52b71a5245d241fedaeb7121d95157763a3f2
Time: 2019-07-27
Author: danjsaund@gmail.com
File Name: bindsnet/analysis/plotting.py
Class Name:
Method Name: plot_voltages
Project Name: rasbt/mlxtend
Commit Name: f0f4ba31aaec58f607df632cfbec5fd39802958f
Time: 2015-04-09
Author: se.raschka@me.com
File Name: mlxtend/evaluate/learning_curves.py
Class Name:
Method Name: plot_learning_curves
Project Name: ellisdg/3DUnetCNN
Commit Name: 5508d6730a37f9aff49549901ff8682898e14b5d
Time: 2018-03-20
Author: david.ellis@unmc.edu
File Name: brats/evaluate.py
Class Name:
Method Name: main