Update app.py
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ from datasets import load_dataset
|
|
| 11 |
|
| 12 |
# Load the model and tokenizer
|
| 13 |
max_seq_length = 2048
|
| 14 |
-
dataset_path = "
|
| 15 |
dataset = load_dataset("json", data_files=dataset_path)
|
| 16 |
|
| 17 |
model, tokenizer = FastLanguageModel.from_pretrained(
|
|
|
|
| 11 |
|
| 12 |
# Load the model and tokenizer
|
| 13 |
max_seq_length = 2048
|
| 14 |
+
dataset_path = "dataset.jsonl" # Update this path as needed
|
| 15 |
dataset = load_dataset("json", data_files=dataset_path)
|
| 16 |
|
| 17 |
model, tokenizer = FastLanguageModel.from_pretrained(
|