We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I trained TripPy on a dataset in the unified format. I have the path to a model checkpoint. When I use it, I got the following error:
Then, I changed the followings in trippy/tracker.py
_ontology = relative_import_module_from_unified_datasets(self.dataset_name, 'preprocess.py', 'ontology')
to
_ontology = load_ontology(self.dataset_name)
I got the following error:
The text was updated successfully, but these errors were encountered:
the loaded ontology is from multiwoz21/preprocess.py:
ConvLab-3/data/unified_datasets/multiwoz21/preprocess.py
Line 12 in 84251cf
which is not a good way to use unified ontology.
@carelvniekerk could you use load_ontology instead and fix the bug?
load_ontology
Sorry, something went wrong.
Hey, I will look into this.
No branches or pull requests
I trained TripPy on a dataset in the unified format. I have the path to a model checkpoint. When I use it, I got the following error:
Then, I changed the followings in trippy/tracker.py
_ontology = relative_import_module_from_unified_datasets(self.dataset_name, 'preprocess.py', 'ontology')
to
_ontology = load_ontology(self.dataset_name)
I got the following error:
The text was updated successfully, but these errors were encountered: