2023-12-11 21:53:30 +00:00
|
|
|
import csv
|
2024-03-26 15:51:52 +00:00
|
|
|
from pathlib import Path
|
|
|
|
from typing import List, Union
|
2023-12-11 21:53:30 +00:00
|
|
|
|
|
|
|
from langchain_core.documents import Document
|
|
|
|
|
|
|
|
from langchain_community.document_loaders.base import BaseLoader
|
|
|
|
|
|
|
|
|
|
|
|
class CoNLLULoader(BaseLoader):
|
|
|
|
"""Load `CoNLL-U` files."""
|
|
|
|
|
2024-03-26 15:51:52 +00:00
|
|
|
def __init__(self, file_path: Union[str, Path]):
|
2023-12-11 21:53:30 +00:00
|
|
|
"""Initialize with a file path."""
|
|
|
|
self.file_path = file_path
|
|
|
|
|
|
|
|
def load(self) -> List[Document]:
|
|
|
|
"""Load from a file path."""
|
|
|
|
with open(self.file_path, encoding="utf8") as f:
|
|
|
|
tsv = list(csv.reader(f, delimiter="\t"))
|
|
|
|
|
|
|
|
# If len(line) > 1, the line is not a comment
|
|
|
|
lines = [line for line in tsv if len(line) > 1]
|
|
|
|
|
|
|
|
text = ""
|
|
|
|
for i, line in enumerate(lines):
|
|
|
|
# Do not add a space after a punctuation mark or at the end of the sentence
|
|
|
|
if line[9] == "SpaceAfter=No" or i == len(lines) - 1:
|
|
|
|
text += line[1]
|
|
|
|
else:
|
|
|
|
text += line[1] + " "
|
|
|
|
|
2024-03-26 15:51:52 +00:00
|
|
|
metadata = {"source": str(self.file_path)}
|
2023-12-11 21:53:30 +00:00
|
|
|
return [Document(page_content=text, metadata=metadata)]
|