I created a MultiDataSet and set its meta data:
MultiDataSet mds = new MultiDataSet(features, labels, featuresMask, labelMask);
mds.setExampleMetaData(Arrays.asList(imageFileName.substring(0,imageFileName.length()-4)));
multiDataSets.add(mds);
But when I later retrieved the meta data via
final MultiDataSet mds = iterator.next();
List<Serializable> multiDatasetList = mds.getExampleMetaData();
the multiDataSetList
was null. Why?
Can I use ExampleMetaData to store arbitrary info? If not, then I think MultiDataSet should have methods setUserData(Object obj) and getUserData().
(Sorry if this is the incorrect forum for discussion of nd4j.)