我正在使用 neupy 使用以下代码获取一组神经元:
All = pd.read_csv("inputfile.csv")
df = pd.DataFrame(All)
coords = df.as_matrix(columns=['lat', 'lng'])
sofmnet = algorithms.SOFM(n_inputs=2,
n_outputs=4,
step=0.5,
show_epoch=1,
shuffle_data=True,
verbose=True,
learning_radius=1,
features_grid=(4, 1),)
sofmnet.train(coords,epochs=20)
neuronlocations = sofmnet.weight.T
1-如何读取/获取与每个神经元相关的点集?2-inputfile.csv 有 date、lat、lng 字段。我想每天计算每个神经元的点数。如何进行?谢谢