Changing model default for TableQuestionAnsweringPipeline. (#9729)

* Changing model default for TableQuestionAnsweringPipeline.

- Discussion: https://discuss.huggingface.co/t/table-question-answering-is-not-an-available-task-under-pipeline/3284/6

* Updating slow tests that were out of sync.
This commit is contained in:
Nicolas Patry
2021-01-21 14:31:51 +01:00
committed by GitHub
parent 3f290e6c84
commit 23e5a36ee6
2 changed files with 14 additions and 11 deletions

View File

@@ -136,9 +136,9 @@ SUPPORTED_TASKS = {
"tf": None,
"default": {
"model": {
"pt": "nielsr/tapas-base-finetuned-wtq",
"tokenizer": "nielsr/tapas-base-finetuned-wtq",
"tf": "nielsr/tapas-base-finetuned-wtq",
"pt": "google/tapas-base-finetuned-wtq",
"tokenizer": "google/tapas-base-finetuned-wtq",
"tf": "google/tapas-base-finetuned-wtq",
},
},
},