diff --git a/Project_Model/Libs/BPE/Classes/__init__.py b/Project_Model/Libs/BPE/Classes/__init__.py index d3b93b6..bab5bd8 100644 --- a/Project_Model/Libs/BPE/Classes/__init__.py +++ b/Project_Model/Libs/BPE/Classes/__init__.py @@ -4,6 +4,7 @@ from .NanoSocratesBPE import NanoSocratesBPE, NanoSocratesBatchMemoryBPE from .NanoSocraTrainer import NanoSocraTrainer from .NanoSocraTraineRam import NanoSocraTraineRam from .NanoSocraTrainerPool import NanoSocraTrainerPool +from .NanoSocratesSpecial import NanoSocratesSpecial __all__ = [ "NanoSocratesChunker", diff --git a/Project_Model/Libs/BPE/Utils/__init__.py b/Project_Model/Libs/BPE/Utils/__init__.py index 3eb9eb3..f9213c6 100644 --- a/Project_Model/Libs/BPE/Utils/__init__.py +++ b/Project_Model/Libs/BPE/Utils/__init__.py @@ -2,6 +2,7 @@ from .special_regex_maker import special_regex_maker from .lag_checker_iterator import iterator_with_checks from .vocabulary import save_nanos_vocabulary, load_nanos_vocabulary from .json_utils import save_json, load_json +from .special_regex_maker import special_regex_maker __all__ = [ "special_regex_maker",