LoginSignup
3
1

ジョジョの奇妙なGPT-2

Posted at

ChatGPT...って、あるよなァ...。あの有名な大規模言語モデル(LLM)だよ...。

てめえは今さら何故GTP2やってんだ?って言われちまいそうな気がするがよォ...世の中の流れが早すぎんだよ、そもそもよォ〜〜。

ありのまま今やったことを話すぜ!

「Google Colaboratory 上で GPT2 を使って、ジョジョのセリフの続きを生成した」

な...何を言ってるか分からねーと思うが、俺も何をしてるのか分からねー。

とにかくコードと実行結果を載せとくぜ...。

ジョジョのセリフの続きを生成したい

phrases = [
    "さすがディオ!おれたちにできない事を平然とやってのけるッ そこにシビれる!あこがれる!",
    "おまえは今まで食ったパンの枚数をおぼえているのか?",
    "ふるえるぞハート!燃えつきるほどヒ―――ト!!",
    "君がッ泣くまで殴るのをやめないッ!",
    "なっ!何をするだァーッゆるさんッ!",
    "やめりゃあよかった!こんなタフガイにケンカふっかけるのはよォ!",
    "このナイフは君がとうさんに突き立てたナイフだァーッ!!",
    "貧弱!貧弱ゥ!",
    "人間讃歌は「勇気」の讃歌ッ!",
    "ねーちゃん!あしたっていまさッ!",
    "ドイツの科学は世界一イイイイ!!",
    "あァァァんまりだァァアァ",
    "勝てばよかろうなのだッ!!",
    "わたしってどうしてこう…変な男ばかり寄ってくるのでしょう",
    "俺がどくのは道にウンコが落ちている時だけだぜ",
    "きたきたきたきたきたきたきたきたきたーっ!!",
    "あのな…こーやって腕を組んで目を閉じる笑いは、勝利の笑いだぜ",
    "またまたやらせていただきましたァン!",
    "俺はお前に出逢う為に1万数千年もさまよってたのかもしれぬ",
    "無限の谷底へッ 溶けて流れ落ちろォォォォ!",
    "...ありのまま今起こったことを話すぜ",
    "何を言っているのかわからねーと思うがおれも何をされたのかわからなかった",
    "オラオラ",
    "無駄無駄",
    "てめーはおれを怒らせた",
    "おれは恐怖を克服することが生きることだと思う",
    "これがおれの本体のハンサム顔だ",
    "バカな簡単すぎるあっけなさすぎる",
    "もしかしてオラオラですかーッ!?",
    "最高にハイ!』ってやつだ",
    "グレートですよこいつは",
    "この岸辺露伴が金やちやほやされるためにマンガを描いていると思っていたのか",
    "激しい喜びはいらない そのかわり深い絶望もない………「植物の心のような人生を そんな平穏な生活こそわたしの目標だったのに",
    "人間は何かを破壊して生きているといってもいい生物だ",
    "スタンド使いはスタンド使いにひかれ合う",
    "どうして30だけ なのよォオオオ",
    "下痢腹かかえて公衆トイレ捜しているほうがズッと幸せ",
    "おめえなんかちょっぴりカッコイイじゃあねーかよ",
    "質問を質問で返すなあーっ",
    "やった間に合った!「運命に勝った",
    "だが断る",
    "覚悟とは!!暗闇の荒野に!!進むべき道を切り開く事だッ",
    "答えろよ質問はすでに…『拷問に変わっているんだぜ",
    "2+2は5だッ3×3は8だッサメは植物だ富士山は世界一高い山だ",
    "言葉でなくで理解できた",
    "任務は遂行する』『部下も守る』。「両方やらなくちゃあならないってのが幹部のつらいところだな覚悟はいいかオレはできてる",
    "何かわからんがくらえッ",
    "復讐とは自分の運命への決着をつけるためにあるッ",
    "祝福しろ",
    "さよならあたしの初恋",
    "いいな法律は無視する",
    "ローマ法王だって絶対に自分ではコントロールできないはず",
    "プランクトンごときがわたしに向かって得意顔に解説を入れるんじゃあないッ",
    "神を愛するように君のことを愛している",
    "おまえは自分がだと気付いていないもっともドス黒い…!",
    "1番の近道は遠回りだった遠回りこそが最短の道だった",
    "ルックスもイケメンだ",
    "ようこそ…『男の世界",
    "砂漠の砂粒ひとつほども後悔はしていない",
    "お前はこれからできるわけがないというセリフを4回だけ言っていい",
    "ポテトチップは食事じゃありません",
    "圧迫よォ呼吸が止まるくらいッ興奮して来たわッ",
    "ぼくはまだマイナスなんだッ!「ゼロに向かって行きたいッ",
]

出力結果を見やすくするために、こんな簡単な関数を用意するぜ...。

def print_sentence(sentence, width=40, n=0):
    print("\n")
    while True:
        print("\t" + sentence[width * n : width * (n + 1)])
        if width * (n + 1) > len(sentence):
            break
        else:
            n += 1
    print("\n\n")

必要なライブラリをインストール

!pip install sentencepiece
!pip install transformers

Japanese GPT2 xsmall モデルを用いた文章生成

from transformers import AutoModelForCausalLM, T5Tokenizer

pretrained_model = "rinna/japanese-gpt2-xsmall"
tokenizer = T5Tokenizer.from_pretrained(pretrained_model)
model = AutoModelForCausalLM.from_pretrained(pretrained_model)

for first_sentence in phrases:
    x = tokenizer.encode(
        first_sentence, return_tensors="pt", add_special_tokens=False
    )  # 入力
    y = model.generate(x, max_length=100)
    generated_sentence = tokenizer.batch_decode(y, skip_special_tokens=True)
    print_sentence(generated_sentence[0])
Downloading spiece.model:   0%|          | 0.00/806k [00:00<?, ?B/s]



Downloading (…)cial_tokens_map.json:   0%|          | 0.00/153 [00:00<?, ?B/s]



Downloading (…)okenizer_config.json:   0%|          | 0.00/282 [00:00<?, ?B/s]



Downloading (…)lve/main/config.json:   0%|          | 0.00/845 [00:00<?, ?B/s]



Downloading model.safetensors:   0%|          | 0.00/156M [00:00<?, ?B/s]


The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.
The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	さすがディオ!おれたちにできない事を平然とやってのけるッ そこにシビれる!あこが
	れる! っていうのは、そのシビれが「シビれ」だと勘違いしてるからだ。 シビれが「
	シビれ」だと勘違いしてるから、シビれが「シビれ」だと勘違いしてるんだよ。 シビれ
	が「シビれ」だと勘違いしてるから、シビ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おまえは今まで食ったパンの枚数をおぼえているのか? と、いうことで、今日は、お昼
	ご飯のパンを焼いて、お昼ご飯のパンを焼いて、お昼ご飯のパンを焼いて、お昼ご飯のパ
	ンを焼いて、お昼ご飯のパンを焼いて、お昼ご飯のパンを焼いて、お昼ご飯のパンを焼い
	て、お昼ご飯の





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ふるえるぞハート!燃えつきるほどヒ―――ト!! 」





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	君がッ泣くまで殴るのをやめないッ! 」 と、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	なっ!何をするだァーッゆるさんッ! って感じで、お客様のご要望にお応えして、お客
	様のご要望にお応えして、お客様のご要望にお応えして、お客様のご要望にお応えして、
	お客様のご要望にお応えして、お客様のご要望にお応えして、お客様のご要望にお応





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	やめりゃあよかった!こんなタフガイにケンカふっかけるのはよォ! って感じで、この
	ブログを読んでくださっている皆さんに、 でも、このブログを読んでくださっている皆
	さんに、このブログを読んでくださっている皆さんに、 でも、このブログを読んでくだ
	さっている皆さんに、このブログを読んでくださっている皆さんに、 このブログを読ん
	でくだ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	このナイフは君がとうさんに突き立てたナイフだァーッ!! 俺は、このナイフをナイフ
	で刺して、俺のナイフをナイフで刺して、 俺は、このナイフをナイフで刺して、俺のナ
	イフをナイフで刺して、 俺は、このナイフをナイフで刺して、俺のナイフをナイフで刺
	して、 俺は、このナイフをナイフで刺して、俺のナイフをナイフで刺して、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	貧弱!貧弱ゥ! と、いうことで、今回は、そんな貧弱な貧弱な貧弱な貧弱な貧弱な貧弱
	な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な
	貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧弱な貧





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	人間讃歌は「勇気」の讃歌ッ! と、その歌を歌ってみよう! というわけで、今回は「
	勇気」の讃歌を、その歌の「勇気」の讃歌を、その歌の「勇気」の讃歌ッ! と、その歌
	の「勇気」の讃歌ッ! と、その歌の「勇気」の讃歌ッ! と、その歌の「勇気」の讃





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ねーちゃん!あしたっていまさッ! って感じでした。 でも、この日は、お友達とラン
	チに行って、お友達とランチして、お友達とランチして、お友達とランチして、お友達と
	ランチして、お友達とランチして、お友達とランチして、お友達とランチして、お友達と
	ランチして、お友達とランチして、お友達とラン





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ドイツの科学は世界一イイイイ!! と、その理由をお伝えします。 ドイツの科学は世
	界一イイ!! と、その理由をお伝えします。 ドイツの科学は世界一イイ!! と、そ
	の理由をお伝えします。 ドイツの科学は世界一イイ!! と、その理由をお伝えします
	。 ドイツの科学は世界一イイ!! と、その理由をお伝えします。 ドイツの科学は世
	界一イイ!!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あァァァんまりだァァアァァァァァァァァァァァァァァァァァァァァァァァァァァァァァ
	ァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァ
	ァァァァァァァァァァァァァァァァァァァァ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	勝てばよかろうなのだッ!! と、いうことで、今日は、C





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	わたしってどうしてこう...変な男ばかり寄ってくるのでしょうか? わたしは、この
	ブログを読んで、わたしの人生をより豊かにするヒントをたくさんいただいたので、その
	お話をしたいと思います。 わたしは、このブログを読んで、わたしの人生をより豊かに
	するヒントをたくさんいただいたので、そのお話をしたいと思います。 わたしは、この
	ブログを読んで、わたしの人生をより豊かに





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	俺がどくのは道にウンコが落ちている時だけだぜ 俺は、このスレで、俺がどくのは道に
	ウンコが落ちている時だけだぜ 俺は、このスレで、俺がどくのは道にウンコが落ちてい
	る時だけだぜ 俺は、このスレで、俺がどくのは道にウンコが落ちている時だけだぜ 俺
	は、このスレで、俺がど





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	きたきたきたきたきたきたきたきたきたーっ!! って感じで、お客さんが来てくれて、
	お客さんが来てくれたら、 でも、お客さんが来てくれたら、お客さんが来てくれるので
	、お客さんが来てくれるので、 でも、お客さんが来てくれたら、お客さんが来てくれる
	ので、お客さんが来てくれるので、 でも、お客さんが来





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あのな...こーやって腕を組んで目を閉じる笑いは、勝利の笑いだぜ! 俺は、このゲ
	ームをプレイして、このゲームをプレイして、このゲームをプレイして、このゲームをプ
	レイして、このゲームをプレイして、このゲームをプレイして、このゲームをプレイして
	、このゲームをプレイして、このゲームをプレイして、このゲームをプレイして、このゲ
	ームをプレイして、このゲームをプレイして、このゲームを





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	またまたやらせていただきましたァン!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	俺はお前に出逢う為に1万数千年もさまよってたのかもしれぬが、 俺は、俺が、俺の事
	を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事
	を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事を、俺の事
	を、俺の





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	無限の谷底へッ 溶けて流れ落ちろォォォォ! と、その勢いで、その勢いで、その勢い
	で、その勢いで、その勢いで、その勢いで、その勢いで、その勢いで、その勢いで、その
	勢いで、その勢いで、その勢いで、その勢いで、その勢いで、その勢いで、その勢いで、
	その勢いで、その勢いで、その勢いで、その勢いで





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あ...ありのまま今起こったことを話すぜ! と、いうことで、今回は、そんな「あー
	、そうか、そうか、そうか、そうか、そうか、そうか、そうか、そうか、そうか、そうか
	、そうか、そうか、そうか、そうか、そうか、そうか、そうか、そうか、そうか、そうか
	、そうか、そうか、そうか、そうか、そうか、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	な...何を言っているのかわからねーと思うがおれも何をされたのかわからなかった。
	 俺は、このスレで、このスレで、このスレで、このスレで、このスレで、このスレで、
	このスレで、このスレで、このスレで、このスレで、このスレで、このスレで、このスレ
	で、このスレで、このスレで、このスレで、このスレで、このスレで





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	オラオラオラオラ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	無駄無駄な時間を省くことができます。 C





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	てめーはおれを怒らせた。 俺は、俺の気持ちをわかってくれる人がいるのに、俺は、俺
	の気持ちをわかってくれない。 俺は、俺の気持ちをわかってくれる人がいるのに、俺は
	、俺の気持ちをわかってくれない。 俺は、俺の気持ちをわかってくれる人がいるのに、
	俺は、俺の気持ちをわかってくれない。 俺は、俺の気持ちを





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おれは“恐怖”を克服することが“生きる”ことだと思う。 私は、この本を読んで、恐
	怖を克服するのに、何をすればいいのか、何をすればいいのか、何をすればいいのか、何
	をすればいいのか、何をすればいいのか、何をすればいいのか、何をすればいいのか、何
	をすればいいのか、何をすればいいのか、何をすればいいのか、何をすればいいのか、何
	をすれば





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	これがおれの本体のハンサム顔だ! と、思わず声を上げてしまった。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	バ...バカな...か...簡単すぎる...あっけなさすぎる... でも、このブ
	ログを読んでくださっている皆さん、本当にありがとうございます。 さて、今回は、そ
	んなバ... 今日は、そんなバ... 今日は、そんなバ... 今日は、そんなバ.
	.. 今日は、そんなバ... 今日は、そんなバ... 今日は、そんなバ... 今
	日は、そんなバ... 今日は、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	もしかしてオラオラですかーッ!? と、思っていました。 でも、その前に、オラオラ
	の「オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	最高に『ハイ!』ってやつだな。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	グレートですよこいつは、この「」の「」の「」の「」の「」の「」の「」の「」の「」
	の「」の「」の「」の「」の「」の「」の「」の「」の「」の「」の「」の「」の「」の
	「」の





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	この岸辺露伴が金やちやほやされるためにマンガを描いていると思っていたのかもしれま
	せん。 でも、このマンガは、そのマンガの世界観を、マンガの世界観を、マンガの世界
	観を、マンガの世界観を、マンガの世界観を、マンガの世界観を、マンガの世界観を、マ
	ンガの世界観を、マンガの世界観を、マンガの世界観を、マンガの世界観を、マンガの世
	界観を、マンガの世界観を、マンガの世界観を、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	激しい「喜び」はいらない... そのかわり深い「絶望」もない.........「
	植物の心」のような人生を... そんな「平穏な生活」こそわたしの目標だったのに.
	.. でも、そんな「幸せ」を、わたしは「幸せ」にしたい。 わたしは、そんな「幸せ
	」を、わたしの「幸せ」にしたい。 わたしは、そんな「幸せ」を、わたしの「幸せ」に
	したい。 わたしは、そんな「





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	人間は何かを破壊して生きているといってもいい生物だ。 人間は何かを破壊して生きて
	いるといってもいい生物だ。 人間は何かを破壊して生きているといってもいい生物だ。
	 人間は何かを破壊して生きているといってもいい生物だ。 人間は何かを破壊して生き
	ているといってもいい生物だ。 人間は何かを破壊して生きているといってもいい生物だ
	。 人間は何かを破壊して生きているといってもいい生物だ。 人間は何かを破壊して生
	きているといってもいい生物だ。 人間は何か





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	スタンド使いはスタンド使いにひかれ合うことが多いです。 スタンドの使い方は、スタ
	ンドの使い方とスタンドの使い方をご紹介します。 スタンドの使い方は、スタンドの使
	い方とスタンドの使い方をご紹介します。 スタンドの使い方は、スタンドの使い方とス
	タンドの使い方をご紹介します。 スタンドの使い方は、スタンドの使い方とスタンドの
	使い方をご紹介します。 スタンドの使い方は、スタンドの使い方とスタンドの使い方を
	ご





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	どうして『30分』だけ なのよォオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	下痢腹かかえて公衆トイレ捜しているほうがズッと幸せになれる。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おめえ...なんか、ちょっぴりカッコイイじゃあねーかよ。 でも、この人、何を言っ
	てるんだろう? って、ちょっと気になる。 でも、この人、何を言ってるんだろう? 
	って、ちょっと気になる。 でも、この人、何を言ってるんだろう? って、ちょっと気
	になる。 でも、この人、何を言ってるんだろう? って、ちょっと気になる。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	質問を質問で返すなあーっ! と、思ったのですが、質問の回答は、CのCのCのCのC
	のCのCのCのCのCのCのCのCのCのCのCのCのCのCの





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	やった!間に合った!「運命」に勝った! pic.twitter.com/yjj





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	だが断る。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	「覚悟」とは!!暗闇の荒野に!!進むべき道を切り開く事だッ!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	答えろよ。質問はすでに...『拷問』に変わっているんだぜ? >>1 >>1 >>
	1 >>1 >>1 >>1 >>1 >>1 >>1 >>1 >>1 >>1 >>
	1 >>1 >>1 >>1 >>1 >>1 >>1 >>1 >>1





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	2+2は5だッ!3×3は8だッ!サメは植物だ!富士山は世界一高い山だ! でも、こ
	の「」は、その「」が「」の「」の「」の「」の「」の「」の「」の「」の「」の「」の
	「」の「」の「」の「」の「





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	『言葉』でなく『心』で理解できた! という方も多いのではないでしょうか。 今回は
	、そんな「言葉」と「心」の「心」の「心」の「心」の「心」の「心」の「心」の「心」
	の「心」の「心」の「心」の「心」の「心」の「心」の「心」の「心」の「心」の「心」
	





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	『任務は遂行する』『部下も守る』。「両方」やらなくちゃあならないってのが「幹部」
	のつらいところだな。覚悟はいいか?オレはできてる。 俺は、この「幹部」のつらいと
	ころが、俺の「幹部」のつらいところだな。覚悟はいいか?オレはできてる。覚悟はいい
	か?オレはできてる。覚悟はいいか?オレはできてる。覚悟





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	何かわからんがくらえッ! って感じで、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	「復讐」とは自分の運命への決着をつけるためにあるッ! と、その思いを胸に、その思
	いを胸に、その思いを胸に、その思いを胸に、その思いを胸に、その思いを胸に、その思
	いを胸に、その思いを胸に、その思いを胸に、その思いを胸に、その思いを胸に、その思
	いを胸に、その思いを胸に、その思いを胸に、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	祝福しろ」と、お礼を述べました。 私は、この日、お礼を述べました。「お礼を述べて
	、お礼を述べて、お礼を述べて、お礼を述べて、お礼を述べて、お礼を述べて、お礼を述
	べて、お礼を述べて、お礼を述べて、お礼を述べて、お礼を述べて、お礼を述べて、お礼
	を





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	さよなら...あたしの初恋... pic.twitter.com/yjj





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	いいな!法律は無視するな! っていうのは、法律の本質を知らないから、法律の本質を
	知らないから、 法律の本質を知らないから、法律の本質を知らないから、法律の本質を
	知らないから、 法律の本質を知らないから、法律の本質を知らないから、法律の本質を
	知らないから、 法律の本質を知らないから、法律の本質を知らないから、法律





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ローマ法王だって絶対に自分ではコントロールできないはず! ローマ法王が、ローマ法
	王に「あなたは、あなたの味方です」と告げられたら、あなたはどうしますか? ローマ
	法王が、ローマ法王に「あなたは、あなたの味方です」と告げられたら、どうしますか?
	 ローマ法王が、ローマ法王に「あなたは、あなたの味方です」と告げられたら、どうし
	ますか?





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	プランクトンごときがわたしに向かって得意顔に解説を入れるんじゃあないッ! と、い
	うことで、今日は、わたしの「おもしろい」をご紹介します。 わたしは、この「おもし
	ろい」を、わたしの「おもしろい」に置き換えて、おもしろいと思えるような、おもしろ
	いものを紹介したいと思います。 わたしは、この「おもしろい」を、わたしの「おも





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	神を愛するように君のことを愛している。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おまえは...自分が『悪』だと気付いていない...もっともドス黒い『悪』だ...
	! でも、そんなに気にする必要もないのに、どうしてそんなに気にするの? そう、そ
	んなに気にする必要もないのに、どうしてそんなに気にするの? そう、そんなに気にす
	る必要もないのに、どうしてそんなに気にするの? そう、そんなに気にする必要もない
	のに、どうしてそんなに気にする





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	1番の近道は遠回りだった。遠回りこそが最短の道だった。 でも、その道のりは、その
	道のりが険悪な道だった。 でも、その道のりは、その道のりが険悪な道だった。 でも
	、その道のりは、その道のりが険悪な道だった。 でも、その道のりは、その道のりが険
	悪な道だった。 でも





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ルックスもイケメンだと思う。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ようこそ...『男の世界』へ...。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	砂漠の砂粒...ひとつほども後悔はしていない...。 でも、この日は、雨が降って
	いたので、雨が降っていなくて、本当によかった。 でも、雨が降って、雨が降って、雨
	が降って、雨が降って、雨が降って、雨が降って、雨が降って、雨が降って、雨が降って
	、雨が降って、雨が降って、雨が降って





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	お前はこれから『できるわけがない』というセリフを4回だけ言っていいのか? 俺は、
	このスレで「お前は、お前の言うことを聞かないで、お前の言うことを聞かないで、お前
	の言うことを聞かないで、お前の言うことを聞かないで、お前の言うことを聞かないで、
	お前の言うことを聞かないで、お前の言うことを聞かないで、お前の言うことを聞かない
	で、お前の言うことを聞かない





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ポテトチップは食事じゃありません。 ポテトチップは、食感がとても良いので、食べ過
	ぎても大丈夫です。 ポテトチップは、食感がとても良いので、食べ過ぎても大丈夫です
	。 ポテトチップは、食感がとても良いので、食べ過ぎても大丈夫です。 ポテトチップ
	は、食感がとても良いので、食べ過ぎても大丈夫です。 ポ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	圧迫よォ!呼吸が止まるくらいッ!興奮して来たわッ! と、そんな感じで、お尻の穴が
	開いて、お尻が痛いのがわかる。 でも、お尻の穴が開いて、お尻が痛いのは、お尻が痛
	いのと同じくらいの感覚。 でも、お尻の穴が開いて、お尻が痛いのは、お尻が痛いのと
	同じくらいの





	ぼくはまだ「マイナス」なんだッ!「ゼロ」に向かって行きたいッ! というわけで、今
	日は「ゼロ」に向かって、ぼくの「マイナス」な気持ちを「ゼロ」に向かって、ぼくの「
	マイナス」な気持ちを「ゼロ」に向かって、ぼくの「マイナス」な気持ちを「ゼロ」に向
	かって、ぼくの「マイナス」な気持ちを「ゼロ」に向かって、ぼくの「マイナス」な気持
	ちを「ゼロ」に向かって、ぼくの「マイナス」

Japanese GPT2 small モデルを用いた文章生成

from transformers import AutoModelForCausalLM, T5Tokenizer

pretrained_model = "rinna/japanese-gpt2-small"
tokenizer = T5Tokenizer.from_pretrained(pretrained_model)
model = AutoModelForCausalLM.from_pretrained(pretrained_model)

for first_sentence in phrases:
    x = tokenizer.encode(
        first_sentence, return_tensors="pt", add_special_tokens=False
    )  # 入力
    y = model.generate(x, max_length=100)
    generated_sentence = tokenizer.batch_decode(y, skip_special_tokens=True)
    print_sentence(generated_sentence[0])
Downloading spiece.model:   0%|          | 0.00/806k [00:00<?, ?B/s]



Downloading (…)cial_tokens_map.json:   0%|          | 0.00/153 [00:00<?, ?B/s]



Downloading (…)okenizer_config.json:   0%|          | 0.00/282 [00:00<?, ?B/s]



Downloading (…)lve/main/config.json:   0%|          | 0.00/846 [00:00<?, ?B/s]



Downloading model.safetensors:   0%|          | 0.00/454M [00:00<?, ?B/s]


The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.
The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	さすがディオ!おれたちにできない事を平然とやってのけるッ そこにシビれる!あこが
	れる!あこがれる!あこがれる!あこがれる!あこがれる!あこがれる!あこがれる!あ
	こがれる!あこがれる!あこがれる!あこがれる!あこがれる!あこがれる!あこがれる
	!あこがれる!あこが





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おまえは今まで食ったパンの枚数をおぼえているのか? パンの枚数が多ければ多いほど
	、そのパンの味が濃くなっていくのは当然のこと。 パンの味が濃くなっていくのは、パ
	ンの味が濃くなっていくから。 パンの味が濃くなっていくのは、パンの味が濃くなって
	いくから。 パンの味が濃くなっていくのは、パンの味が濃くなっていくから。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ふるえるぞハート!燃えつきるほどヒ―――ト!! (д ́)ノ (д ́)ノ (д
	 ́)ノ (д ́)ノ (д ́)ノ (д ́)ノ (д ́)ノ (д ́)ノ 
	(д ́)ノ (д





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	君がッ泣くまで殴るのをやめないッ! 」と、怒鳴った。 1月31日、1stアルバム
	『the idolm@ster cinderella girls master 
	artists master artists master artists ma
	ster artists master artists master artis
	ts master artists master artists master 
	artists master





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	なっ!何をするだァーッゆるさんッ! 」 と、 声を掛けてくださったのです。 と、
	 声を掛けてくださったのです。 と、 声を掛けてくださったのです。 と、 声を掛
	けてくださったのです。 と、 声を掛けてくださったのです。 と、 声を掛けてくだ
	さったのです。 と、 声を掛け





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	やめりゃあよかった!こんなタフガイにケンカふっかけるのはよォ! 」 と、思わず笑
	ってしまった。 実は、この日は、この日が誕生日だった。 誕生日は、2月11日。 
	誕生日は、2月12日。 誕生日は、2月13日。 誕生日は、2月13日。 誕生日は
	、2月13日。 誕生日は、2月13日。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	このナイフは君がとうさんに突き立てたナイフだァーッ!!!!!!!!!!!!!!!
	!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
	!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
	!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
	!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
	!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
	!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	貧弱!貧弱ゥ! 」の2巻で、主人公が「貧弱」と「貧弱」の2つの言葉に振り回され、
	主人公が「貧弱」と「貧弱」の2つの言葉に振り回され、主人公が「貧弱」と「貧弱」の
	2つの言葉に振り回され、主人公が「貧弱」と「貧弱」の2つの言葉に振り回され、主人
	公が「貧弱





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	人間讃歌は「勇気」の讃歌ッ! 」と、歌詞に「勇気」が出てくるので、勇気を歌ってみ
	ました。 歌詞は、歌詞の「勇気」が「勇気」に変わるので、勇気を歌ってみました。 
	歌詞は、歌詞の「勇気」が「勇気」に変わるので、勇気を歌ってみました。 歌詞は、歌
	詞の「勇気」が「勇気」に変わるの





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ねーちゃん!あしたっていまさッ! 」 と、お母さんが言った。 そういえば、お母さ
	んは、お母さんがお母さんに「お母さん、お母さん、お父さん、お母さん、お父さん、お
	母さん、お父さん、お母さん、お父さん、お父さん、お母さん、お父さん、お父さん、お
	母さん、お父





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ドイツの科学は世界一イイイイ!! と絶賛されています。 でも、その反面、科学の進
	歩は、まだまだまだ遅れているのが現状です。 科学の進歩は、まだまだ遅れているのが
	現状です。 科学の進歩は、まだまだ遅れているのが現状です。 科学の進歩は、まだま
	だ遅れているのが現状です。 科学の進歩は、まだまだ遅れているのが現状です。 科学
	の





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あァァァんまりだァァアァァァァァァァァァァァァァァァァァァァァァァァァァァァァァ
	ァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァ
	ァァァァァァァァァァァァァァァァァァァァ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	勝てばよかろうなのだッ!! と、いうわけで、今日は、このブログを読んでくださって
	いる方々に、 というわけで、今日は、このブログを読んでくださっている方々に、 と
	いうわけで、今日は、このブログを読んでくださっている方々に、 というわけで、今日
	は、このブログを読んでくださっている方々に、 というわけで、今日は、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	わたしってどうしてこう...変な男ばかり寄ってくるのでしょうか? わたしは、この
	人、わたしのことが大好きで、わたしのことが大好きで、わたしのことが大好きで、わた
	しのことが大好きで、わたしのことが大好きで、わたしのことが大好きで、わたしのこと
	が大好きで、わたしのことが大好きで、わたしのことが大好きで、わたしのことが大好き
	で、わたしのことが大好きで





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	俺がどくのは道にウンコが落ちている時だけだぜ。 俺は、お前が俺の事を好きだって思
	ってるのに、お前が俺の事を好きだって思ってるのに、お前が俺の事を好きだって思って
	るのに、お前が俺の事を好きだって思ってるのに、お前が俺の事を好きだって思ってるの
	に、お前が俺の事を好きだって





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	きたきたきたきたきたきたきたきたきたーっ!! pic.twitter.com/q
	qqqqqqqqqqq — ききたきたきたーーーーーーーーーーーーーーーーーーー
	ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
	ーー





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あのな...こーやって腕を組んで目を閉じる笑いは、勝利の笑いだぜ。 そういえば、
	この前、お母さんがお母さんの家に遊びに来ていたんだ。 そういえば、お母さんがお母
	さんの家に遊びに来ていたんだ。 そういえば、お母さんがお母さんの家に遊びに来てい
	たんだ。 そういえば、お母さんがお母さんの家に遊びに





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	またまたやらせていただきましたァン! 今回は、前回の続きで、今回は、前回の続きで
	、今回は、前回の続きで、今回は、前回の続きで、今回は、前回の続きで、今回は、前回
	の続きで、今回は、前回の続きで、今回は、前回の続きで、今回は、前回の続きで、今回
	は、前回の続きで、今回は、前回の続きで、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	俺はお前に出逢う為に1万数千年もさまよってたのかもしれぬ。 俺はお前に出逢う為に
	1万数千年もさまよってたのかもしれぬ。 俺はお前に出逢う為に1万数千年もさまよっ
	てたのかもしれぬ。 俺はお前に出逢う為に1万数千年もさまよってたのかもしれぬ。 
	俺はお前に出逢う為に1万数千年





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	無限の谷底へッ 溶けて流れ落ちろォォォォ!???????????????????
	??????????????????????





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あ...ありのまま今起こったことを話すぜ! pic.twitter.com/xy
	qyqyxyxy — あああああああああああああああああああああああああああああ
	ああああああああああああああああああああああああああああああああああああああああ
	





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	な...何を言っているのかわからねーと思うがおれも何をされたのかわからなかった。
	 俺は、このスレで、このスレで、このスレで、このスレで、このスレで、このスレで、
	このスレで、このスレで、このスレで、このスレで、このスレで、このスレで、このスレ
	で、このスレで、このスレで、このスレで、このスレで、このスレで





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	オラオラ・ド・ラ・サール(olaora de la salaz,? - 1474
	年)は、ブルゴーニュ公ジャン1世(在位:1474年 - 1474年)の妃。 ブル
	ゴーニュ公ジャン1世とその妻でブルゴーニュ公ジャン2世の娘であるマリー・ド・ラ・
	サールの間の長女として生まれた。 1474年、ブルゴーニュ公ジャン1世はブルゴー
	ニュ公ジャン1世と結婚した。 ブルゴーニュ公ジャン1世は1474年に死去し、ブル
	ゴーニュ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	無駄無駄な時間と労力を費やして、その分だけお金を稼いでいます。 あなたが今、この
	瞬間に、このサイトに辿り着いたのは、あなたの「お金」と「時間」を無駄にしないため
	です。 あなたが今、この瞬間に、このサイトに辿り着いたのは、あなたの「お金」と「
	時間」を無駄にしないためです。 あなたが今、この瞬間に、このサイトに





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	てめーはおれを怒らせたり、おれのせいでおれが怒ってるのに、おれは怒ってないぞ! 
	っていうか、おれが怒ってるのに、おれは怒ってないぞ!っていうか、おれが怒ってるの
	に、おれは怒ってないぞ!っていうか、おれが怒ってるのに、おれは怒ってないぞ!って
	いう





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おれは“恐怖”を克服することが“生きる”ことだと思う。 私は、この本を読んで、自
	分の人生を生きることの大切さに気づきました。 私は、この本を読んで、自分の人生を
	生きることの大切さに気づきました。 私は、この本を読んで、自分の人生を生きること
	の大切さに気づきました。 私は、この本を読んで、自分の人生を生きることの大切さに
	気





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	これがおれの本体のハンサム顔だ! 」と、おれの自慢の「おれの腕」を自慢げに語って
	いた。 実は、おれの腕は、おれの腕の一番上を、おれの腕が一番下を向いている。 腕
	の一番上を、おれの腕が一番上を向いている。 腕の一番上を、おれの腕が一番上を向い
	ている。 腕





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	バ...バカな...か...簡単すぎる...あっけなさすぎる...( ́・ω・)
	 pic.twitter.com/qqqqqqqqqqqqq





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	もしかしてオラオラですかーッ!? そうですかーッ!? そうですかーッ!? そうで
	すかーッ!? そうですかーッ!? そうですかーッ!? そうですかーッ!? そうで
	すかーッ!? そうですかーッ!? そうですかーッ!? そうですかーッ!? そうで
	すかーッ!? そうですかーッ!? そうですかーッ!? そうですかーッ!? そうで
	すかーッ!?





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	最高に『ハイ!』ってやつだな。 でも、この『ハイ!』っていうのは、なんか、ちょっ
	と、ちょっと、、、 でも、この『ハイ!』っていうのは、なんか、ちょっと、、、、、
	、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
	、、、、、、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	グレートですよこいつは、日本のお笑いコンビ。 よしもとクリエイティブ・エージェン
	シー所属。 コンビ名は「グレート」と「グレート」を掛けた造語。 コンビ名の由来は
	、グレートが「グレート」と「グレート」を掛けた造語。 コンビ名の由来は、グレート
	が「グレート」と「グレート」を掛けた造語。 コンビ名の由来は、グレートが「グレー
	ト」と「グレート」を掛けた造語。 コンビ名の由来は、グレートが「グレート」と「グ
	レート」を掛けた造語。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	この岸辺露伴が金やちやほやされるためにマンガを描いていると思っていたのか、それと
	も金やちやほやされるためにマンガを描いているのか。 岸辺露伴は、金やちやほやされ
	るためにマンガを描いていると思っていたのか、それとも金やちやほやされるためにマン
	ガを描いているのか。 岸辺露伴は、金やちやほやされるためにマンガを描いていると思
	っていたのか、それとも金やちやほやされるためにマンガを描いているのか





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	激しい「喜び」はいらない... そのかわり深い「絶望」もない.........「
	植物の心」のような人生を... そんな「平穏な生活」こそわたしの目標だったのに.
	.. でも、そんな「平穏な生活」こそわたしの目標だったのに... でも、そんな「
	平穏な生活」こそわたしの目標だったのに... でも、そんな「平穏な生活」こそわた
	しの目標だったのに... でも、そんな「平穏な生活





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	人間は何かを破壊して生きているといってもいい生物だ。 人間は、何かを壊して生きて
	いるといってもいい生物だ。 人間は何かを壊して生きているといってもいい生物だ。 
	人間は何かを壊して生きているといってもいい生物だ。 人間は何かを壊して生きている
	といってもいい生物だ。 人間は何かを壊して生きているといってもいい生物だ。 人間
	は何かを壊して生きているといってもいい生物だ。 人間は何かを壊して生きているとい
	って





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	スタンド使いはスタンド使いにひかれ合うので、スタンド使いはスタンド使いにひかれ合
	うので、スタンド使いはスタンド使いにひかれ合うので、スタンド使いはスタンド使いに
	ひかれ合うので、スタンド使いはスタンド使いにひかれ合うので、スタンド使いはスタン
	ド使いにひかれ合うので、スタンド使いはスタンド使いにひかれ合うので、スタンド使い
	はスタンド使いにひかれ合うので、スタンド使いは





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	どうして『30分』だけ なのよォオオオオ!???????????????????
	??????????????????????





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	下痢腹かかえて公衆トイレ捜しているほうがズッと幸せになれる。 トイレに行こうとす
	ると、トイレットペーパーが切れて、トイレットペーパーが切れて、トイレットペーパー
	が切れて、トイレットペーパーが切れて、トイレットペーパーが切れて、トイレットペー
	パーが切れて、トイレットペーパーが切れて、トイレットペーパーが切れて、トイレット
	ペーパーが切れて、トイレットペーパーが切れて、トイレットペーパー





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おめえ...なんか、ちょっぴりカッコイイじゃあねーかよ...( ́・ω・) まあ
	、そんなこんなで、今日は、お昼に、お弁当を作らなきゃいけないので、 今日は、お昼
	に、お弁当を作らなきゃいけないので、お弁当を作らなきゃいけないので、 今日は、お
	昼に、お弁当を作らなきゃいけない





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	質問を質問で返すなあーっ! と、いうことで、今日は、質問の答えを、質問で返すなあ
	ーっ! と、いうことで、今日は、質問の答えを、質問で返すなあーっ! と、いうこと
	で、今日は、質問の答えを、質問で返すなあーっ! と、いうことで、今日は、質問の答
	えを、質問で返すなあーっ!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	やった!間に合った!「運命」に勝った! と、思っていました。 でも、その「運命」
	に勝ったのは、私だけではなかったんです。 私は、その「運命」に勝ったのです。 私
	は、その「運命」に勝ったのです。 私は、その「運命」に勝ったのです。 私は、その
	「運命」に勝ったのです。 私は、その「運命」に勝ったのです。 私は





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	だが断る。 1月1日 - 1月2日 - 1月3日 - 1月4日 - 1月5日 -
	 1月6日 - 1月7日 - 1月8日 - 1月9日 - 1月10日 - 1月1
	1日 - 1月12日 - 1月13日 - 1月14日 - 1月15日 - 1月1
	6日 -





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	「覚悟」とは!!暗闇の荒野に!!進むべき道を切り開く事だッ! ・・・・・・・・・
	・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
	・・・・・・・・・・・・・・・・・・・・・・・・・・・・・





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	答えろよ。質問はすでに...『拷問』に変わっているんだぜ。 俺は、この世界を、こ
	の世界を、この世界を、この世界を、この世界を、この世界を、この世界を、この世界を
	、この世界を、この世界を、この世界を、この世界を、この世界を、この世界を、この世
	界を、この世界を、この世界を、この世界を、この世界を、この世界を、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	2+2は5だッ!3×3は8だッ!サメは植物だ!富士山は世界一高い山だ! 1 1 
	1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 
	1 1 1 1 1 1 1 1 1 1 1 1 1 1





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	『言葉』でなく『心』で理解できた! と、おっしゃっていました。 私も、この本を読
	んで、心が軽くなりました。 ありがとうございます。 私も、この本を読んで、心が軽
	くなりました。 ありがとうございます。 私も、この本を読んで、心が軽くなりました
	。 ありがとうございます。 私も、この本を読んで、心が軽





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	『任務は遂行する』『部下も守る』。「両方」やらなくちゃあならないってのが「幹部」
	のつらいところだな。覚悟はいいか?オレはできてる。 まあ、そんなわけで、このブロ
	グは「幹部」のつらいところだけを書いていこうと思います。 まあ、そんなわけで、こ
	のブログは「幹部」のつらいところだけを書いていこうと思います。 まあ、そんなわけ
	で、この





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	何かわからんがくらえッ!????????????????????????????
	?????????????????





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	「復讐」とは自分の運命への決着をつけるためにあるッ! と、その前に、この物語の結
	末をお伝えしたいと思います。 私は、この物語を読んで、この物語の結末を想像するの
	が好きです。 私は、この物語を読んで、この物語の結末を想像するのが好きです。 私
	は、この物語を読んで、この物語の結末を想像するのが好きです。 私は、この物語を読
	んで、この物語





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	祝福しろ!???????????????????????????????????
	?????????????





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	さよなら...あたしの初恋... _ ラブライブ!サンシャイン!! _ ラブライ
	ブ!サンシャイン!! _ ラブライブ!サンシャイン!! _ ラブライブ!サンシャ
	イン!! _ ラブライブ!サンシャイン!! _ ラブライブ!サンシャイン!! _
	 ラブライブ!サンシャイン!! _ ラブライブ!サンシャイン!! _ ラブライブ
	!サンシャイン!! _ ラブライブ!サンシャイン!! _ ラブライブ!サンシャイ
	ン!! _ ラブ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	いいな!法律は無視するな! _ 法律の勉強法 _ 法律の勉強法 _ 法律の勉強法
	 _ 法律の勉強法 _ 法律の勉強法 _ 法律の勉強法 _ 法律の勉強法 _ 法
	律の勉強法 _ 法律の勉強法 _ 法律の勉強法 _ 法律の勉強法 _ 法律の勉強
	法 _ 法律の勉強





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ローマ法王だって絶対に自分ではコントロールできないはず! でも、その「コントロー
	ルできない」という状態を「コントロールできない」と表現するのです。 だから、その
	「コントロールできない」状態を「コントロールできない」と表現するのです。 だから
	、その「コントロールできない」状態を「コントロールできない」と表現するのです。 
	だから、その「コントロールできない」状態を「コントロールできない」と表現するので
	す。 だから、その「





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	プランクトンごときがわたしに向かって得意顔に解説を入れるんじゃあないッ! と、い
	うわけで、今日は、わたしが、わたしが、わたしが、わたしが、わたしが、わたしが、わ
	たしが、わたしが、わたしが、わたしが、わたしが、わたしが、わたしが、わたしが、わ
	たしが、わたしが、わたしが、わたしが、わたしが、わたしが、わたしが、わたしが、わ
	たしが、わたしが、わたし





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	神を愛するように君のことを愛している」と告げた。 愛する人のために、君は愛する人
	のために、愛する人のために、愛する人のために、愛する人のために、愛する人のために
	、愛する人のために、愛する人のために、愛する人のために、愛する人のために、愛する
	人のために、愛する人のために、愛する人のために、愛する人のために、愛する人のため
	に、愛する人のために、愛する人のために





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おまえは...自分が『悪』だと気付いていない...もっともドス黒い『悪』だ...
	! でも、この『悪』は、自分の『悪』を、自分の『悪』に置き換えて、 自分の『悪』
	を、自分の『悪』に置き換えて、 自分の『悪』を、自分の『悪』に置き換えて、 自分
	の『悪』を、自分の『悪』に置き換えて、 自分の『悪』を、自分の『悪





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	1番の近道は遠回りだった。遠回りこそが最短の道だった。 1番の近道は、遠回りをし
	ても、遠回りをしても、どちらにしても、遠回りをしても、どちらにしても、どちらにし
	ても、どちらにしても、どちらにしても、どちらにしても、どちらにしても、どちらにし
	ても、どちらにしても、どちらにしても、どちらにしても、どちらにしても、どちらにし
	ても、どちらにしても、どちらにしても





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ルックスもイケメンだ。 ルックスもイケメンだ。 ルックスもイケメンだ。 ルックス
	もイケメンだ。 ルックスもイケメンだ。 ルックスもイケメンだ。 ルックスもイケメ
	ンだ。 ルックスもイケメンだ。 ルックスもイケメンだ。 ルックスもイケメンだ。 
	ルックスもイケメンだ。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ようこそ...『男の世界』へ...。 _ ニュース _ ニュース _ ニュース 
	_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
	_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	砂漠の砂粒...ひとつほども後悔はしていない...。 でも、この世界は、まだまだ
	、まだまだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、ま
	だ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ
	、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ、まだ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	お前はこれから『できるわけがない』というセリフを4回だけ言っていいんだぞ。 俺は
	、お前が『できるわけがない』と言えるのは、お前が『できるわけがない』と言えるのは
	、お前が『できるわけがない』と言えるのは、お前が『できるわけがない』と言えるのは
	、お前が『できるわけがない』と言えるのは、お前が『できるわけがない』と言えるの





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ポテトチップは食事じゃありません。 ポテトチップは、ポテトチップを加熱して食べる
	のです。 ポテトチップは、ポテトチップを加熱して食べるのです。 ポテトチップは、
	ポテトチップを加熱して食べるのです。 ポテトチップは、ポテトチップを加熱して食べ
	るのです。 ポテトチップは、ポテトチップを加熱して食べるのです。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	圧迫よォ!呼吸が止まるくらいッ!興奮して来たわッ! 俺は、この子達に、この子達に
	、この子達に、この子達に、この子達に、この子達に、この子達に、この子達に、この子
	達に、この子達に、この子達に、この子達に、この子達に、この子達に、この子達に、こ
	の子達





	ぼくはまだ「マイナス」なんだッ!「ゼロ」に向かって行きたいッ! ぼくは、ぼくは、
	ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、
	ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、
	ぼくは、ぼくは、ぼくは、ぼくは、ぼくは、

Japanese GPT2 medium モデルを用いた文章生成

from transformers import AutoModelForCausalLM, T5Tokenizer

pretrained_model = "rinna/japanese-gpt2-medium"
tokenizer = T5Tokenizer.from_pretrained(pretrained_model)
model = AutoModelForCausalLM.from_pretrained(pretrained_model)

for first_sentence in phrases:
    x = tokenizer.encode(
        first_sentence, return_tensors="pt", add_special_tokens=False
    )  # 入力
    y = model.generate(x, max_length=100)
    generated_sentence = tokenizer.batch_decode(y, skip_special_tokens=True)
    print_sentence(generated_sentence[0])
Downloading spiece.model:   0%|          | 0.00/806k [00:00<?, ?B/s]



Downloading (…)cial_tokens_map.json:   0%|          | 0.00/153 [00:00<?, ?B/s]



Downloading (…)okenizer_config.json:   0%|          | 0.00/282 [00:00<?, ?B/s]



Downloading (…)lve/main/config.json:   0%|          | 0.00/799 [00:00<?, ?B/s]



Downloading model.safetensors:   0%|          | 0.00/1.37G [00:00<?, ?B/s]


The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.
The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	さすがディオ!おれたちにできない事を平然とやってのけるッ そこにシビれる!あこが
	れる! 俺は、お前の事が好きだ! 俺は、お前の事が好きだ! 俺は、お前の事が好き
	だ! 俺は、お前の事が好きだ! 俺は、お前の事が好きだ! 俺は、お前の事が好きだ
	! 俺は、お前の事が好きだ! 俺は





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おまえは今まで食ったパンの枚数をおぼえているのか? パンの枚数をおぼえているのは
	、パンを焼くときの温度と湿度だ。 パンを焼くときの温度と湿度は、パンを焼くときの
	温度と湿度と、パンを焼くときの温度と湿度と、パンを焼くときの温度と湿度と、パンを
	焼くときの温度と湿度と、パンを焼くとき





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ふるえるぞハート!燃えつきるほどヒ―――ト!! 」 1巻 isbn 978-4-
	04-867065-6 1巻 isbn 978-4-04-867069-6 2巻
	 isbn 978-4-04-867069-7 3巻 isbn 978-4-04
	-867069-7 4巻 isbn 978-4-04-867069-7 5巻 i
	sbn 978-4-04-8670





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	君がッ泣くまで殴るのをやめないッ! 」 1月25日 - 1月29日、全労済ホール
	/スペース・ゼロ) - 主演・小西克幸 役 ミュージカル『テニスの王子様』3rd
	シーズン 青学vs氷帝(3月3日 - 5月6日、tokyo dome city 
	hall 他) - 氷帝 役 ミュージカル『テニスの王子様』4th





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	なっ!何をするだァーッゆるさんッ! 」 なっ!何をするだァーッゆるさんッ! 」 
	なっ!何をするだァーッゆるさんッ! 」 なっ!何をするだァーッゆるさんッ! 」 
	なっ!何をするだァーッゆるさんッ! 」 なっ!何をするだァーッゆるさんッ! 」 
	なっ!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	やめりゃあよかった!こんなタフガイにケンカふっかけるのはよォ! 」 と、その日は
	ケンカをふっかけられ、その日は「ケンカをふっかけられても、その日はケンカをふっか
	けられても、その日はケンカをふっかけられても、その日はケンカをふっかけられても、
	その日はケンカをふっかけられても、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	このナイフは君がとうさんに突き立てたナイフだァーッ!! 俺は君の腕を掴んで、君の
	腕を引っ張って、君の腕を引っ張って、 君は、俺の腕を引っ張って、俺の腕を引っ張っ
	て、君の腕を引っ張って、 君は、俺の腕を引っ張って、俺の腕を引っ張って、君の腕を
	引っ張って、 君





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	貧弱!貧弱ゥ! 」 声 - 田中理恵 主人公。 貧弱な体にコンプレックスを抱いて
	いる。 貧弱な体にコンプレックスを抱いているのは、主人公が貧弱だからではなく、主
	人公が貧弱だからである。 貧弱な体にコンプレックスを抱いているのは、主人公が貧弱
	だからではなく、主人公が貧弱だからである。 貧弱な体にコンプレックスを抱いている
	のは、主人公が貧弱だからではなく





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	人間讃歌は「勇気」の讃歌ッ! 」と、歌詞の「勇気」を「勇気」と「勇気」の2つの単
	語で表現している。 歌詞は、歌詞カードに掲載されている。 歌詞カードには、歌詞の
	「勇気」と「勇気」の2つの単語が記載されている。 歌詞カードには、歌詞の「勇気」
	と「勇気」の2つの単語が記載されている。 歌詞カードには、歌詞の「勇気」と





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ねーちゃん!あしたっていまさッ!? 』(ねーちゃん!あしたっていまさッ!? )は
	、日本の女性アイドルグループ・nmb48の楽曲。 作詞は秋元康、作曲は田中直。 
	2020年1月30日にnmb48のメジャー3作目のシングルとしてよしもとアール・
	アンド・シー(laugh out loud! records)から発売された。 
	前作「僕だって泣いちゃうよ」から約3か月ぶりのシングル





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ドイツの科学は世界一イイイイ!! 」と、日本の科学の素晴らしさに感動した。 ドイ
	ツの科学は世界一イイ!! 」と、日本の科学の素晴らしさに感動した。 ドイツの科学
	は世界一イイ!! 」と、日本の科学の素晴らしさに感動した。 ドイツの科学は世界一
	イイ!! 」と、日本の科学の素晴らしさに感動した。 ドイツの科学は世界一イイ!!
	 」





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あァァァんまりだァァアァァァァァァァァァァァァァァァァァァァァァァァァァァァァァ
	ァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァァ
	ァァァァァァァァァァァァァァァァァァァァ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	勝てばよかろうなのだッ!! 」 と、思っていました。 でも、その日は、その日、そ
	の日で、その日、その日で、その日、その日で、その日、その日で、その日、その日で、
	その日、その日で、その日、その日で、その日、その日で、その日、その日で、その日、
	その日で、その日、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	わたしってどうしてこう...変な男ばかり寄ってくるのでしょうか...? わたしは
	、この前、お母さんに「お父さん、お母さん、お父さん、お母さん、お父さん、お母さん
	、お父さん、お母さん、お父さん、お母さん、お父さん、お母さん、お父さん、お母さん
	、お父さん、お母さん、お父さん、お母





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	俺がどくのは道にウンコが落ちている時だけだぜ? 俺は糞野郎だぜ? 俺は糞野郎だぜ
	? 俺は糞野郎だぜ? 俺は糞野郎だぜ? 俺は糞野郎だぜ? 俺は糞野郎だぜ? 俺は
	糞野郎だぜ? 俺は糞野郎だぜ? 俺は糞野郎だぜ?





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	きたきたきたきたきたきたきたきたきたーっ!! 」は、日本の女性アイドルグループ・
	akb48の派生ユニット・渡り廊下走り隊の1作目のオリジナル・アルバム。 201
	9年3月7日にキングレコードから発売された。 akb48グループ初のオリジナル・
	アルバム。 初回限定盤(cd+dvd)、通常盤(cdのみ)、劇場盤(cd+dvd
	)の3形態で発売。 初回限定盤には、表題曲「きたきたきたきたきたきたきたきたきた
	きたきたきた





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あのな...こーやって腕を組んで目を閉じる笑いは、勝利の笑いだぜ? 俺は、お前が
	俺の腕を掴んで、俺の腕を引っ張って、俺の腕を引っ張って、 俺は、お前が俺の腕を掴
	んで、俺の腕を引っ張って、俺の腕を引っ張って、 俺は、お前が俺の腕を掴んで、俺の
	腕を引っ張って、





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	またまたやらせていただきましたァン! pic.twitter.com/yyyyy
	yyyyyy —





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	俺はお前に出逢う為に1万数千年もさまよってたのかもしれぬ。 俺はお前に出逢う為に
	1万数千年もさまよってたのかもしれぬ。 俺はお前に出逢う為に1万数千年もさまよっ
	てたのかもしれぬ。 俺はお前に出逢う為に1万数千年もさまよってたのかもしれぬ。 
	俺はお前に出逢う為に1万数千年





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	無限の谷底へッ 溶けて流れ落ちろォォォォ!! 」 1月25日 - 1月29日 -
	 1月31日 - 1月31日 - 2月1日 - 2月2日 - 2月3日 - 2月
	4日 - 2月5日 - 2月6日 - 2月7日 - 2月8日 - 2月9日 - 
	2月10日 - 2月11日 -





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	あ...ありのまま今起こったことを話すぜ! 俺は、お前のことが大好きだ。 俺は、
	お前のことが大好きだ。 俺は、お前のことが大好きだ。 俺は、お前のことが大好きだ
	。 俺は、お前のことが大好きだ。 俺は、お前のことが大好きだ。 俺は、お前のこと
	が大好きだ。 俺は、お前のことが大好きだ。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	な...何を言っているのかわからねーと思うがおれも何をされたのかわからなかった 
	俺は、このスレの皆さんが、このスレの皆さんが、このスレの皆さんが、 >>1 は、
	このスレの皆さんが、このスレの皆さんが、 >>1 は、このスレの皆さんが、このス
	レの皆さんが、 >>1 は、このスレ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ
	オラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラオラ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	無駄無駄な時間とお金を使わないためにも、まずは無料相談であなたの借金の悩みを解決
	しましょう! 借金返済の悩みを解決するために、まずは無料相談であなたの借金の悩み
	を解決しましょう! 借金返済の悩みを解決するために、まずは無料相談であなたの借金
	の悩みを解決しましょう! 借金返済の悩みを解決するために、まずは無料相談であなた
	の借金の悩みを解決しましょう!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	てめーはおれを怒らせたら、お前はもう死んでいる。 お前はもう死んでいる。 お前は
	もう死んでいる。 お前はもう死んでいる。 お前はもう死んでいる。 お前はもう死ん
	でいる。 お前はもう死んでいる。 お前はもう死んでいる。 お前はもう死んでいる。
	 お前はもう死んでいる。 お前はもう死んでいる。 お前はもう死んでいる。 お前は
	もう死





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おれは“恐怖”を克服することが“生きる”ことだと思うんです。 だから、僕は“恐怖
	”を克服するには、まず“恐怖”を克服するしかないと思っています。 僕は、この“恐
	怖”を克服するには、まず“恐怖”を克服するしかないと思っています。 だから、僕は
	“恐怖”を克服するには、まず“恐怖”を克服するしかないと思っています。 だから、
	僕は“恐怖”を克服するには





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	これがおれの本体のハンサム顔だ! 」と、自慢げに語っていた。 本人曰く、この写真
	は、当時、交際していた女性に撮られたものである。 本人曰く、この写真は、当時、交
	際していた女性に撮られたものである。 本人曰く、この写真は、当時、交際していた女
	性に撮られたものである。 本人曰く、この写真は、当時、交際していた女性に撮られた
	ものである。 本人曰く、この写真は





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	バ...バカな...か...簡単すぎる...あっけなさすぎる...( ́・ω・)
	 まあ、俺はお前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うとお
	り、お前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うとおり、お前
	の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うと
	おり、お前の言うとおり





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	もしかしてオラオラですかーッ!? そうですね、私もそう思います。 でも、このお店
	は、お客さんがいっぱいで、お店の中は、お客さんでいっぱいです。 でも、お店の中は
	、お客さんでいっぱいです。 でも、お店の中は、お客さんでいっぱいです。 でも、お
	店の中は、お客さんでいっぱいです。 でも、お店の中は





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	最高に『ハイ!』ってやつだな。 pic.twitter.com/yyyyyyyy
	yy — あすか@お絵描き (@asuka_asuka) december 1,
	 2018 — あすか@お絵描き (@asuka_asuka) december
	 1, 2018 — あすか@お絵描き (@asuka_a





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	グレートですよこいつは。 pic.twitter.com/yyyyyyyyyy 
	— あーちゃん@お絵かき (@ayachan_ayachan) december
	 1, 2018 — あーちゃん@お絵かき (@ayachan_ayachan)
	 december 1, 2018 — あーちゃん@お絵かき (@ayachan
	_ayachan) dec





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	この岸辺露伴が金やちやほやされるためにマンガを描いていると思っていたのか? >>
	1は、自分が「金やちやほやされるためにマンガを描いていると思っていたのか?」と 
	>>1は、自分が「金やちやほやされるためにマンガを描いていると思っていたのか?」
	と >>1は、自分が「金やちやほやされるためにマンガを描いていると思っていたのか
	?」と >>1は、自分が「金やちやほやされる





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	激しい「喜び」はいらない... そのかわり深い「絶望」もない.........「
	植物の心」のような人生を... そんな「平穏な生活」こそわたしの目標だったのに.
	.. わたしは、いつの間にか、その「平穏な生活」を「喜び」に変えてしまっていた。
	 わたしは、いつの間にか、その「平穏な生活」を「喜び」に変えてしまっていた。 わ
	たしは、いつの間にか、その「平穏な生活





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	人間は何かを破壊して生きているといってもいい生物だ。 だから、その破壊行為は、人
	間にとって、とても大きな意味がある。 人間は、その破壊行為によって、その生命を、
	そして、その生命を、そして、その生命を、そして、その生命を、そして、その生命を、
	そして、その生命を、そして、その生命を、そして、その生命を、そして、その生命を、
	そして、その生命を、そして、その生命を





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	スタンド使いはスタンド使いにひかれ合う。 スタンド使いはスタンド使いにひかれ合う
	。 スタンド使いはスタンド使いにひかれ合う。 スタンド使いはスタンド使いにひかれ
	合う。 スタンド使いはスタンド使いにひかれ合う。 スタンド使いはスタンド使いにひ
	かれ合う。 スタンド使いはスタンド使いにひかれ合う。 スタンド使いはスタンド使い
	にひかれ合う。 スタンド使いはスタンド使いにひかれ合う。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	どうして『30分』だけ なのよォオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオオ
	オオオオオオオオオオオオオオオオオオオオオオオオオオオオオ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	下痢腹かかえて公衆トイレ捜しているほうがズッと幸せな気がする。 >>1は、自分の
	ことを「おっさん」と呼ばないでください。 >>1は、自分のことを「おっさん」と呼
	ばないでください。 >>1は、自分のことを「おっさん」と呼ばないでください。 >
	>1は、自分のことを「おっさん」と呼ばないでください





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おめえ...なんか、ちょっぴりカッコイイじゃあねーかよ...( ́・ω・) まあ
	、俺はお前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うとおり、お
	前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言う
	とおり、お前の言うとおり、お前の言うとおり、お前の言うとおり、お前の言うとおり、
	お前





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	質問を質問で返すなあーっ! って感じですよね。 でも、質問を質問で返すのは、質問
	を質問で返すのと同じです。 質問を質問で返すのは、質問を質問で返すのと同じです。
	 質問を質問で返すのは、質問を質問で返すのと同じです。 質問を質問で返すのは、質
	問を質問で返すのと同じです。 質問を質問で返すのは





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	やった!間に合った!「運命」に勝った! _ 人生を好転させる! _ 東洋経済オン
	ライン _ 経済ニュースの新基準 _ 東洋経済オンライン _ 経済ニュースの新基
	準 _ 東洋経済オンライン _ 経済ニュースの新基準 _ 東洋経済オンライン _
	 経済ニュースの新基準 _ 東洋経済オンライン _ 経済ニュースの新基準 _ 東
	洋経済オンライン _ 経済ニュースの新基準





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	だが断る。 実は、この日、彼は、ある人物の誕生日パーティーに招待されていた。 パ
	ーティーには、その人物の親友である、元恋人の美奈子も参加していた。 美奈子は、パ
	ーティーの主催者である、元恋人の美奈子から、パーティーの招待状を渡される。 美奈
	子は、パーティーの主催者である、元恋人の美奈子から、パーティーの招待状を渡される
	。 美奈子は、パーティーの主催者





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	「覚悟」とは!!暗闇の荒野に!!進むべき道を切り開く事だッ! ・・・・・・・・・
	・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
	・・・・・・・・・・・・・・・・・・・・・・・・・・・・・





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	答えろよ。質問はすでに...『拷問』に変わっているんだぜ。お前は、何を言っている
	んだ? お前は、何を言っているんだ? お前は、何を言っているんだ? お前は、何を
	言っているんだ? お前は、何を言っているんだ? お前は、何を言っているんだ? お
	前は、何を言っているんだ? お前は、何を言っているんだ? お前は、何





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	2+2は5だッ!3×3は8だッ!サメは植物だ!富士山は世界一高い山だ! 1+2+
	3+4+5+6+7+8+9+10+11+12+13+14+15+16+17+18
	+19+20+21+22+23+24+25+26+27+28+28+29+30+
	31+31+32+32+32





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	『言葉』でなく『心』で理解できた! 」と、その言葉の真意を語った。 この言葉は、
	後に「言葉」と「心」の2つを融合させた造語として、広く知られるようになった。 こ
	の言葉は、後に「言葉」と「心」の2つを融合させた造語として、広く知られるようにな
	った。 この言葉は、後に「言葉」と「心」の2つを融合させた造語として、広く知られ
	るようになった。 この言葉は、後に





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	『任務は遂行する』『部下も守る』。「両方」やらなくちゃあならないってのが「幹部」
	のつらいところだな。覚悟はいいか?オレはできてるぜ。 まあ、この辺は「おれが」っ
	て感じで、おれが「おれが」って感じで、おれが「おれが」って感じで、おれが「おれが
	」って感じで、おれが「





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	何かわからんがくらえッ!? 」 と、その日は「くらえッ!? 」と叫んで、その日は
	寝た。 翌日、その日は「くらえッ!? 」と叫んで、その日は寝た。 翌日、その日は
	「くらえッ!? 」と叫んで、その日は寝た。 翌日、その日は「くらえッ!





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	「復讐」とは自分の運命への決着をつけるためにあるッ! 」 と、自分の運命を終わら
	せるために、復讐を誓う。 復讐の理由は、復讐の動機が「復讐」であるから。 復讐の
	動機は、復讐の動機が「復讐」であるから。 復讐の動機は、復讐の動機が「復讐」であ
	るから。 復讐の動機は、復讐の動機が「復讐」であるから。 復讐の動機は、復讐の





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	祝福しろ」と、神に祈る。 すると、その晩、神は「あなたは、あなたの心に、あなたの
	心に、あなたの心に、あなたの心に、あなたの心に、あなたの心に、あなたの心に、あな
	たの心に、あなたの心に、あなたの心に、あなたの心に、あなたの心に、あなたの心に、
	あなたの心に、あなたの心に、あなたの





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	さよなら...あたしの初恋... あなたのことが大好きだから あなたのことが大好
	きだから あなたのことが大好きだから あなたのことが大好きだから あなたのことが
	大好きだから あなたのことが大好きだから あなたのことが大好きだから あなたのこ
	とが大好きだから あなたのことが大好きだから あなたのことが大好きだから あなた
	のことが大好きだから あなたのことが大好きだから あなたのことが大好きだから





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	いいな!法律は無視するな! 」と、その言葉に、私は「はい、そうですね」と、答えま
	した。 私は、その言葉に、私は、その言葉に、心が震えました。そして、その言葉に、
	私は、心が震えました。 私は、その言葉に、心が震えました。そして、その言葉に、私
	は、心が震えました。 私は、その言葉に、心





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ローマ法王だって絶対に自分ではコントロールできないはず! でも、その前に、あなた
	が、あなたの家族が、あなたの大切な人が、 あなたの家族が、あなたの大切な人が、あ
	なたの大切な人が、あなたの大切な人が、 あなたの大切な人が、あなたの大切な人が、
	あなたの大切な人が、あなたの大切な人が、 あなたの大切な人が、あなたの大切な人が
	、あなたの大切な人が、あなたの大切な人が、 あなたの大切な





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	プランクトンごときがわたしに向かって得意顔に解説を入れるんじゃあないッ! 」 と
	、この本を読んで思った。 わたしは、この本を読んで、この本を読んで、この本を読ん
	で、この本を読んで、この本を読んで、この本を読んで、この本を読んで、この本を読ん
	で、この本を読んで、この本を読んで、この本を読んで、この





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	神を愛するように君のことを愛している」と、愛の告白をし、その言葉に感動した。 愛
	の告白をされた時、彼は「僕は君を愛している」と答え、その言葉に感動した。 愛の告
	白をされた時、彼は「僕は君を愛している」と答え、その言葉に感動した。 愛の告白を
	された時、彼は「僕は君を愛している」と答え、その言葉に感動した。 愛





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	おまえは...自分が『悪』だと気付いていない...もっともドス黒い『悪』だ...
	! 俺は、お前が『悪』だと気付いていない...もっともドス黒い『悪』だ...! 
	お前は、お前が『悪』だと気付いていない...もっともドス黒い『悪』だ...! お
	前は、お前が『悪』だと気付いていない...もっともドス黒い『悪』だ...! お前
	は、お前が『悪』





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	1番の近道は遠回りだった。遠回りこそが最短の道だった。 だから、僕は、この道を選
	んだ。 僕は、この道を選んだ。 僕は、この道を選んだ。 僕は、この道を選んだ。 
	僕は、この道を選んだ。 僕は、この道を選んだ。 僕は、この道を選んだ。 僕は、こ
	の道を選んだ。 僕は、この道を選んだ。 僕は、この道を選んだ。





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ルックスもイケメンだと思います。 今回は、そんな彼氏に「彼氏にしたい」と思わせる
	ような、イケメン彼氏の特徴をご紹介します。 彼氏にしたいと思うようなイケメン彼氏
	の特徴をご紹介しましたが、いかがでしたか? 彼氏にしたいと思うようなイケメン彼氏
	の特徴をご紹介しましたが、いかがでしたか? 彼氏にしたいと思うようなイケメン





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ようこそ...『男の世界』へ... _ アダルト動画を楽しもう! アダルト動画を
	楽しもう! > アダルト動画を楽しもう! > アダルト動画を楽しもう! > よう
	こそ...『男の世界』へ... アダルト動画を楽しもう! > アダルト動画を楽し
	もう! > ようこそ...『男の世界』へ... アダルト動画を楽しもう! >





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	砂漠の砂粒...ひとつほども後悔はしていない...。... 続きを読む »...
	........................................
	........................................
	..................................





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	お前はこれから『できるわけがない』というセリフを4回だけ言っていい。 お前は『で
	きるわけがない』というセリフを4回だけ言っていい。 お前は『できるわけがない』と
	いうセリフを4回だけ言っていい。 お前は『できるわけがない』というセリフを4回だ
	け言っていい。 お前は『できるわけがない』というセリフを4回だけ言っていい。 お
	前は『できるわけがない』というセリフを4回だけ





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	ポテトチップは食事じゃありません。 ポテトチップスのカロリーは、1個あたり約33
	0kcalです。 ポテトチップスのカロリーを消費するには、1日あたり約330kc
	alの摂取が必要です。 ポテトチップスのカロリーを消費するには、1日あたり約33
	0kcalの摂取が必要です。 ポテトチップスのカロリーを消費するには、1日あたり
	約3





The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
Setting `pad_token_id` to `eos_token_id`:2 for open-end generation.




	圧迫よォ!呼吸が止まるくらいッ!興奮して来たわッ! 」 俺は、その声に反応して、
	俺の股間に手を伸ばし、腰を振った。 俺は、その声に反応して、俺の股間に手を伸ばし
	、腰を振った。 俺は、その声に反応して、俺の股間に手を伸ばし、腰を振った。 俺は
	、その声に反応して、俺の股間に





	ぼくはまだ「マイナス」なんだッ!「ゼロ」に向かって行きたいッ! ぼくは「マイナス
	」なんだッ!「ゼロ」に向かって行きたいッ! ぼくは「マイナス」なんだッ!「ゼロ」
	に向かって行きたいッ! ぼくは「マイナス」なんだッ!「ゼロ」に向かって行きたいッ
	! ぼくは「マイナス」なんだッ!「ゼロ」に向かって行きたいッ! ぼくは「マイナス
	」なんだッ!

To be continued...

GPT2の動作が!「言葉」でなく「心」で理解できた!

次は、ちゃっちゃとChatGPTの理解に進むぜ!

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1