buzzCraft commited on
Commit
893bfc1
β€’
1 Parent(s): 8bf84c0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+
2
+ *.pyc
data/{Dataset/augmented_leauges.csv β†’ dataset/augmented_leagues.csv} RENAMED
File without changes
data/{Dataset/augmented.csv β†’ dataset/augmented_teams.csv} RENAMED
File without changes
src/conf/extractor_prompt.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "extract_prompt": "Extract and save the relevant entities mentioned in the following passage together with their properties.\\n\\n Only extract the properties mentioned in the 'information_extraction' function.\\n\\n The questions are football related. game_event can be things like yellow cards, goals, assists etc.\\n\\n If a property is not present and is not required in the function parameters, do not include it in the output.\\n\\n Passage:\\n {input}\\n ",
3
-
4
- }
 
 
 
 
 
src/database.py CHANGED
@@ -439,7 +439,7 @@ def fill_Augmented_League(file_path):
439
  if __name__ == "__main__":
440
  # Example directory path
441
  process_json_files('../data/Dataset/SoccerNet/')
442
- fill_Augmented_Team('../data/Dataset/augmented.csv')
443
- fill_Augmented_League('../data/Dataset/augmented_leauges.csv')
444
  # Rename the event/annotation table to something more descriptive. Events are fucking everything else over
445
 
 
439
  if __name__ == "__main__":
440
  # Example directory path
441
  process_json_files('../data/Dataset/SoccerNet/')
442
+ fill_Augmented_Team('../data/dataset/augmented_teams.csv')
443
+ fill_Augmented_League('../data/dataset/augmented_leagues.csv')
444
  # Rename the event/annotation table to something more descriptive. Events are fucking everything else over
445