You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-23-776125cadf25> in <module>()
18 cuda=True)
19 out_file = "data/%s-len%d-burnin%d-topk%d-temp%.3f.txt" % (model_version, max_len, burnin, top_k, temp)
---> 20 write_sents(out_file, bert_sents, should_detokenize=True)
<ipython-input-19-027cb8b83cc4> in write_sents(out_file, sents, should_detokenize)
15 with open(out_file, "w") as out_fh:
16 for sent in sents:
---> 17 sent = detokenize(sent[1:-1]) if should_detokenize else sent
18 out_fh.write("%s\n" % " ".join(sent))
<ipython-input-16-beace4564740> in detokenize(sent)
20 for i, tok in enumerate(sent):
21 if tok.startswith("##"):
---> 22 new_sent[len(new_sent) - 1] = new_sent[len(new_sent) - 1] + tok[2:]
23 else:
24 new_sent.append(tok)
IndexError: list index out of range
The saved file head
$ head -n3 bert-base-uncased-len40-burnin250-topk100-temp1.000.txt
sammy harves [ " baby candy " / " dream of baby candy " ( gas station theme ) ) mary ford and baby candy . ( gas station theme ) concept album , featuring mary ford .
3 . contemporary art review ( 2nd ed . october 2008 ) , review with essays on contemporary art , ( london : bateman & partners , february 2009 ) sculpture and the minimalist movement , part .
the truth outside ( matthew greengrass ) psycho ( 1964 ? ) psycho ( orson welles ) monster show ( orson welles ) ( barnacles ) part 3 ( the snare drum ) - narration ;
The text was updated successfully, but these errors were encountered:
I get an error after running
Stacktrace:
The saved file head
The text was updated successfully, but these errors were encountered: