-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
IndexError #88
Comments
same issue |
hey bro,do you have solutions? |
becauese there are some problems abouot spilt('\t'). |
same issue, any solutions? |
check your corpus, it might not follow this rule in some lines: 'text \t text' |
It likes the parser for '\t' works bad.. if you install bert_pytorch by pip, edit change self.lines = [line[:-1].split("\t")
for line in tqdm.tqdm(f, desc="Loading Dataset", total=corpus_lines)] to self.lines = [line[:-1].split("\\t")
for line in tqdm.tqdm(f, desc="Loading Dataset", total=corpus_lines)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I try to run according to md tutorial
but
The text was updated successfully, but these errors were encountered: