LossNAN / I3D-Tensorflow

Train I3D model on ucf101 or hmdb51 by tensorflow
Apache License 2.0
112 stars 28 forks source link

Can the .list file in I3D-Tensorflow/list/hmdb_list/ be changed to .txt file? #17

Open ZealACMer opened 5 years ago

ZealACMer commented 5 years ago

Can the .list file in https://github.com/LossNAN/I3D-Tensorflow/tree/master/list/hmdb_list be changed to .txt file format? Will it influence the functionality of the program? Thank you very much.

ilkarman commented 5 years ago

The extension can be anything, it's read in like so

lines = open(filename, 'r')
lines = list(lines)
line = lines[index].strip('\n').split()