Qian Liu
commited on
Commit
·
6796650
1
Parent(s):
ff0cf4b
Update README.md
Browse files
README.md
CHANGED
@@ -38,8 +38,8 @@ Here is how to use this model in transformers:
|
|
38 |
from transformers import TapexTokenizer, BartForConditionalGeneration
|
39 |
import pandas as pd
|
40 |
|
41 |
-
tokenizer = TapexTokenizer.from_pretrained("microsoft/tapex-
|
42 |
-
model = BartForConditionalGeneration.from_pretrained("microsoft/tapex-
|
43 |
|
44 |
data = {
|
45 |
"year": [1896, 1900, 1904, 2004, 2008, 2012],
|
|
|
38 |
from transformers import TapexTokenizer, BartForConditionalGeneration
|
39 |
import pandas as pd
|
40 |
|
41 |
+
tokenizer = TapexTokenizer.from_pretrained("microsoft/tapex-large-finetuned-wikisql")
|
42 |
+
model = BartForConditionalGeneration.from_pretrained("microsoft/tapex-large-finetuned-wikisql")
|
43 |
|
44 |
data = {
|
45 |
"year": [1896, 1900, 1904, 2004, 2008, 2012],
|