ratishsp / data2text-seq-plan-py

Code for TACL 2022 paper on Data-to-text Generation with Variational Sequential Planning
MIT License
19 stars 1 forks source link

import error #1

Closed llllearner closed 2 years ago

llllearner commented 2 years ago

https://github.com/ratishsp/data2text-seq-plan-py/blob/101d99032f67d302b5c19e8c6ed820cb1af6de25/scripts/create_mlb_target_data.py#L12

ratishsp commented 2 years ago

Hi, the script to create the formatted version of mlb dataset requires huggingface datasets installation. You could try pip install datasets. BTW this library is only needed for preprocessing and not during training of models. So you could also do this in a separate conda environment.

llllearner commented 2 years ago

Hi, the script to create the formatted version of mlb dataset requires huggingface datasets installation. You could try pip install datasets. BTW this library is only needed for preprocessing and not during training of models. So you could also do this in a separate conda environment.

OK, thanks for your answer.