Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,8 @@ from threading import Thread
|
|
23 |
dataset = load_dataset("epfl-llm/guidelines")
|
24 |
|
25 |
#Returns a list of dictionaries, each representing a row in the dataset.
|
26 |
-
|
|
|
27 |
# splitter = RecursiveCharacterTextSplitter(chunk_size=150, chunk_overlap=25,separators=["\n"]) # ["\n\n", "\n", " ", ""])
|
28 |
|
29 |
|
|
|
23 |
dataset = load_dataset("epfl-llm/guidelines")
|
24 |
|
25 |
#Returns a list of dictionaries, each representing a row in the dataset.
|
26 |
+
print(dataset[1])
|
27 |
+
print(dataset)
|
28 |
# splitter = RecursiveCharacterTextSplitter(chunk_size=150, chunk_overlap=25,separators=["\n"]) # ["\n\n", "\n", " ", ""])
|
29 |
|
30 |
|