-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hi,
I'm trying to run the vocalocator (Version: 1.1.0) using the provided multi_node_environment_1.json5 config, and I’d like to include orientation as part of the prediction (in addition to X, Y, Z).
The README states:
"If using multiple nodes (e.g. for inference on orientation in addition to position), use the DATA/NODES_TO_LOAD entry in the config JSON file to list all nodes in the dataset that will be used for training."
I've tried the following two dataset/config combinations, but both result in the same runtime error:
HDF5:
/locationsshape:(n, 4, 1)/node_names:["X", "Y", "Z", "ORIENTATION"]
Config:
"NODES_TO_LOAD": ["X", "Y", "Z", "ORIENTATION"],
"OUTPUT_TYPE": "GAUSSIAN_4D_ORIENTED"
Error
RuntimeError: shape '[32, 4]' is invalid for input of size 64
HDF5:
/locationsshape:(n, 1, 4)/node_names:["X", "Y", "Z", "ORIENTATION"]
Config:
"NODES_TO_LOAD": [0],
"OUTPUT_TYPE": "GAUSSIAN_4D_ORIENTED"
Error
RuntimeError: shape '[32, 4]' is invalid for input of size 64
(But is running correclty with the xcorr_config_environment_1.json5)
I think I may be misunderstanding how nodes and dimensions are treated differently by the model - and how data are supposed to be shaped for gaussian_4D_oriented output type
Many thanks for your help,
Aude