add a newline to restart the container, which was stopped due to HF server down
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ from transformers_cfg.generation.logits_process import GrammarConstrainedLogitsP
|
|
7 |
|
8 |
MODEL_NAME = "gpt2"
|
9 |
|
|
|
10 |
if __name__ == "__main__":
|
11 |
# Define your model and your tokenizer
|
12 |
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
|
|
|
7 |
|
8 |
MODEL_NAME = "gpt2"
|
9 |
|
10 |
+
|
11 |
if __name__ == "__main__":
|
12 |
# Define your model and your tokenizer
|
13 |
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
|