ZixuanKe / PyContinual

PyContinual (An Easy and Extendible Framework for Continual Learning)
300 stars 62 forks source link

Missing files import_til(dil)_extraction #1

Closed szhsjsu closed 3 years ago

szhsjsu commented 3 years ago

code in run.py:

Args -- Experiment

if args.scenario == 'til_extraction': import import_til_extraction as import_modules elif args.scenario == 'dil_extraction': import import_dil_extraction as import_modules else: import import_classification as import_modules

Seems that import_til_extraction and import_dil_extraction are missing? Or these two files are the same as import_classification?

ZixuanKe commented 3 years ago

Hi, thank you for your interest. The extraction task is not supported at this point (the conditions here are just "placeholder"). These should not affect you if you are running a classification task.

szhsjsu commented 3 years ago

Hi, thank you for your interest. The extraction task is not supported at this point (the conditions here are just "placeholder"). These should not affect you if you are running a classification task.

Thanks for the reply. It worked without those files.