We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ac2a1d commit 5e6828cCopy full SHA for 5e6828c
llmtune/constants/files.py
@@ -1,7 +1,10 @@
1
# Example config file
2
EXAMPLE_CONFIG_FNAME = "config.yml"
3
4
-# DIRECTORY HELPER
+# DIRECTORY HELPER - HASH SETTING
5
+NUM_MD5_DIGITS_FOR_SQIDS = 2
6
+
7
+# DIRECTORY HELPER - DIRECTORY & FILE NAMES
8
CONFIG_DIR_NAME = "config"
9
CONFIG_FILE_NAME = "config.yml"
10
llmtune/utils/save_utils.py
@@ -17,6 +17,7 @@
17
CONFIG_DIR_NAME,
18
CONFIG_FILE_NAME,
19
DATASET_DIR_NAME,
20
+ NUM_MD5_DIGITS_FOR_SQIDS,
21
QA_DIR_NAME,
22
QA_FILE_NAME,
23
RESULTS_DIR_NAME,
@@ -26,9 +27,6 @@
26
27
from llmtune.pydantic_models.config_model import Config
28
29
-NUM_MD5_DIGITS_FOR_SQIDS = 5 # TODO: maybe move consts to a dedicated folder
30
-
31
32
@dataclass
33
class DirectoryList:
34
save_dir: Path
0 commit comments