m = 10000
dataset, human_vocab, machine_vocab, inv_machine_vocab = load_dataset(m)
from where did load_dataset() is getting the data without giving the name of the dataset to it
1 Like
I’ve moved your post to DLS.
The dataset is generated within nmt_utils.py
1 Like
what is meant by generated within nmt_utils.py
does nmt_utils.py contains predefined dataset for nural machine translation?
The function load_dataset(m)
is defined inside nmt_utils.py
in line 62. See it?
1 Like
thank you for the information