Hi @kazemnejad,
Thanks for making things reproducible.
If you don't mind me asking a quick question.
In the data I see something like this {"values": [1, 0, 1, 0, 0, 1], "answer": 1, "cat": 6} what does cat represent is a category or something else?
If I remember correctly somewhere in the paper was stated that the models used are mostly decoder type, so to add new models one has to add a config file in configs/models and then the actual model in models/ directory?
Finally, for some data like scan there are only 16K training samples but for others like arithmetic tasks there are 100K, why this difference is there any particular reason?
If one wants to generate the data I suppose it suffices to call dataset_builders/make_..._dataset.py, right?
Hi @kazemnejad,
Thanks for making things reproducible.
If you don't mind me asking a quick question.
In the data I see something like this
{"values": [1, 0, 1, 0, 0, 1], "answer": 1, "cat": 6}what doescatrepresent is a category or something else?If I remember correctly somewhere in the paper was stated that the models used are mostly decoder type, so to add new models one has to add a config file in
configs/modelsand then the actual model inmodels/directory?Finally, for some data like
scanthere are only 16K training samples but for others like arithmetic tasks there are 100K, why this difference is there any particular reason?If one wants to generate the data I suppose it suffices to call
dataset_builders/make_..._dataset.py, right?