Initial commit.

This commit is contained in:
2025-02-20 11:56:58 +00:00
parent ee511c4344
commit 457abd23e7
14 changed files with 2583 additions and 0 deletions

Binary file not shown.

4
helpers/ai_helper.py Normal file
View File

@@ -0,0 +1,4 @@
class Ai_Helper:
@staticmethod
def get_pretrained_model_path(model_name, is_fine_tuned = False):
return f"./pretrained_models/{model_name}{'-finetuned' if is_fine_tuned else ''}"