-
Notifications
You must be signed in to change notification settings - Fork 10
Description
according to config_nips1.yml,
[train] model_path = "nips1_{}_{}_{}_bt_{}_lr_{}_trsz_{}_tsz_{}_wght_{}" //Dataset path dataset = "../../Dataset/open_splines.h5"
this path used in DataSetControlPointsPoisson and initialized in exp1.py
# load the points and control points with h5py.File(path, "r") as hf: points = np.array(hf.get(name="points")).astype(np.float32) control_points = np.array(hf.get(name="controlpoints")).astype(np.float32)
dataset = DataSetControlPointsPoisson( config.dataset_path, config.batch_size, splits=split_dict, size_v=config.grid_size, size_u=config.grid_size)
However, there no such file called Dataset or open_splines.h5 in current things released.
so i met FileNotFoundError: [Errno 2] Unable to open file (unable to open file: name = '../../Dataset/open_splines.h5', errno = 2, error message = 'No such file or directory', flags = 0, o_flags = 0)
if this stuff really forgot to upload or some other mistake i make?