You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
More importantly, data_raw2hdf5.py gives the following error:
Traceback (most recent call last):
File "./data_raw2hdf5.py", line 87, in <module>
res = read_file(file_path)
File "./data_raw2hdf5.py", line 70, in read_file
pts.append(diff)
AttributeError: Element instance has no attribute 'append'
Isn't there a problem with initializing pts = []
and then using for pts in trace.getElementsByTagName('Point'):
The following fixes the error:
for pti in trace.getElementsByTagName('Point'):
pt = np.array([pti.getAttribute('x').strip(),
pti.getAttribute('y').strip(), 0],
dtype='float32')
The text was updated successfully, but these errors were encountered:
First of all, thank you for making this code available!
Am I right that the link
https://github.com/szcom/rnnlib/blob/master/examples/online_prediction/training_set.txt
should be? :
https://raw.githubusercontent.com/szcom/rnnlib/master/examples/online_prediction/training_set.txt
More importantly, data_raw2hdf5.py gives the following error:
Traceback (most recent call last):
Isn't there a problem with initializing
pts = []
and then using
for pts in trace.getElementsByTagName('Point'):
The following fixes the error:
The text was updated successfully, but these errors were encountered: