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
Thanks for your quite interesting work. However, I have some problems about it.
First, for the data processing, I have prepared data as the file you given, but the file needs
'''python
s = int(sys.argv[1])
e = int(sys.argv[2])
'''
What's them have been defined?
Second, as you defined in the code
'''python
with open('reshot_eotb_val_split.txt', 'r') as f:
a = [i.strip() for i in f.readlines()]
for line in a:
file_name_list.append(line)
'''
What the reshot_eotb_val_split is? Now, I use the test.txt and train.txt as you given.
Third, as you say you split the sequence into multiple subsequences of length 2000. Where is this shown in the code, how can we get the same setup with you. As described in your code, the event is evenly sampled three times in a period of time between the corresponding timestamps of two adjacent frames. How to use this corresponding event when used in combination with a frame
Thanks very much.
Hopes for the reply from you.
The text was updated successfully, but these errors were encountered:
Thanks for your quite interesting work. However, I have some problems about it.
First, for the data processing, I have prepared data as the file you given, but the file needs
'''python
s = int(sys.argv[1])
e = int(sys.argv[2])
'''
What's them have been defined?
Second, as you defined in the code
'''python
with open('reshot_eotb_val_split.txt', 'r') as f:
a = [i.strip() for i in f.readlines()]
for line in a:
file_name_list.append(line)
'''
What the reshot_eotb_val_split is? Now, I use the test.txt and train.txt as you given.
Third, as you say you split the sequence into multiple subsequences of length 2000. Where is this shown in the code, how can we get the same setup with you. As described in your code, the event is evenly sampled three times in a period of time between the corresponding timestamps of two adjacent frames. How to use this corresponding event when used in combination with a frame
Thanks very much.
Hopes for the reply from you.
The text was updated successfully, but these errors were encountered: