I plan to use dl4j on a dataset which is in the following format:
{"articles": [{"abstractText":"text..", "journal":"journal..", "meshMajor":["mesh1",...,"meshN"], "pmid":"PMID", "title":"title..", "year":"YYYY"},..., {..}]}
The field meshMajor contains the class labels and the rest are the input for the model. The input features are textual data.
I was wondering if there are any built in JSON dataset iterators like the CSV one. I looked up in the examples posted on github but couldn't locate one. If there isn't one available, can someone please provide some pointers on implementing it.
Thanks!