From 571e4970e350b5de4cc8b6681a9abc81e98b5fe6 Mon Sep 17 00:00:00 2001 From: cryptal-mc Date: Thu, 12 Dec 2024 01:24:46 +0000 Subject: [PATCH] Added comment to explain unused model constraints entry --- constants/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/constants/__init__.py b/constants/__init__.py index 072d10b..1b386a8 100644 --- a/constants/__init__.py +++ b/constants/__init__.py @@ -173,6 +173,13 @@ epsilon_func=LinearDecay(0.005, 0.0002, 36000), max_bytes=29 * 1024 * 1024 * 1024, ), + # This constraint is not actually used, it is added as a copy + # of the 14B-model competition constraint entry. + # This is just to keep the size of the constraint dict equal + # to the number of competitions so `update_models_limit` is + # set correctly below. + # This hack will be removed once native support for multi datasets + # is implemented in a future release. CompetitionId.B14_MODEL_MULTI_DATASET: ModelConstraints( max_model_parameter_size=13_900_000_000, min_model_parameter_size=13_700_000_000,