From e72d336de4f3096a00baa52d8890d3861986b65b Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Tue, 27 Jan 2026 12:36:01 +0000 Subject: [PATCH] remove /data subdir Dataset is now created in the pwd. Avoids issues if the folder didn't exist --- create_dataset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create_dataset.py b/create_dataset.py index d4baa1e..5ae0186 100644 --- a/create_dataset.py +++ b/create_dataset.py @@ -4,8 +4,8 @@ from connectors.reddit_api import RedditAPI from connectors.boards_api import BoardsAPI from connectors.youtube_api import YouTubeAPI -posts_file = 'data/posts.jsonl' -comments_file = 'data/comments.jsonl' +posts_file = 'posts.jsonl' +comments_file = 'comments.jsonl' reddit_connector = RedditAPI() boards_connector = BoardsAPI()