Open dazcona opened 3 years ago
@dazcona Thank you for your issue. Based on my reproduce, the error is from the fact that our pipeline works only on the data saved in the ELWC format (treated inside tfr.data). For your test data in the libsvm format, we need to generate an ELWC data copy and then train on that, see my example here
From the following Keras example, I changed the dataset reader in
dataset_hparams
to use a custom functiondataset_reader=get_dataset
(instead oftf.data.TFRecordDataset
).get_dataset
with a parsing function reads the text files. It fails at a later stage intrain_and_validate
See the code HERE