Spaces:
Runtime error
Runtime error
Оптимизация
#3
by
ierhon
- opened
app.py
CHANGED
|
@@ -2,13 +2,13 @@ import gradio as gr
|
|
| 2 |
import markovify
|
| 3 |
import random
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
def gen(text):
|
| 6 |
dataset = "./dataset.txt"
|
| 7 |
|
| 8 |
-
with open(dataset, encoding="utf-8") as f:
|
| 9 |
-
db = f.read()
|
| 10 |
-
db = db.strip().lower()
|
| 11 |
-
|
| 12 |
text_model = markovify.NewlineText(
|
| 13 |
input_text=db,
|
| 14 |
state_size=1,
|
|
|
|
| 2 |
import markovify
|
| 3 |
import random
|
| 4 |
|
| 5 |
+
with open(dataset, encoding="utf-8") as f:
|
| 6 |
+
db = f.read()
|
| 7 |
+
db = db.strip().lower()
|
| 8 |
+
|
| 9 |
def gen(text):
|
| 10 |
dataset = "./dataset.txt"
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
text_model = markovify.NewlineText(
|
| 13 |
input_text=db,
|
| 14 |
state_size=1,
|