前提・実現したいこと
https://qiita.com/shge/items/fbfce6b54d2e0cc1b382
を参考にして、テキストファイルをインプットして、そのファイルをもとに文章を自動生成するプログラムを書きました。(ほぼコピペ)
import sys,os sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../anaconda3/Lib/site-packages/') import markovify import MeCab # Load file text_file = open("input.txt", "r",encoding="utf-8") text = text_file.read() # Parse text using MeCab parsed_text = MeCab.Tagger('-Owakati').parse(text) # Build model text_model = markovify.Text(parsed_text) # Output for _ in range(10): sentence = text_model.make_short_sentence(100, 20, tries=100).replace(' ', '') print(sentence)
このコードを実行すると、下記のようなエラーメッセージが表示されてしまいます。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "C:\Users\yomot\jidou\app.py", line 13, in <module> text_model = markovify.Text(parsed_text) File "C:\Users\yomot\jidou/../anaconda3/Lib/site-packages\markovify\text.py", line 50, in __init__ self.chain = chain or Chain(self.parsed_sentences, state_size) File "C:\Users\yomot\jidou/../anaconda3/Lib/site-packages\markovify\chain.py", line 53, in __init__ self.precompute_begin_state() File "C:\Users\yomot\jidou/../anaconda3/Lib/site-packages\markovify\chain.py", line 98, in precompute_begin_state choices, cumdist = compile_next(self.model[begin_state]) KeyError: ('___BEGIN__', '___BEGIN__')
このようなエラーを見るのは初で、何がなんだかわかりません。調べても同じようなエラーについてのページはヒットせず、どうしたらいいのかわからない状況です。
###開発環境等
python3.7をanacondaで動かしています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/12 05:36