Skip to content

Commit

Permalink
Merge pull request #150 from macrocosm-os/expand_model_limit_by_comp
Browse files Browse the repository at this point in the history
Expand model limit by competition count.
  • Loading branch information
Sid-Data-Universe authored Aug 15, 2024
2 parents a6157d3 + eb42ca3 commit ce48b8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
# validator eval batch min to keep for next loop.
sample_min = 5
# Max number of uids that can be either pending eval or currently being evaluated.
updated_models_limit = 15
# We allow the sample_min per competition + 10 additional models to be held at any one time.
updated_models_limit = sample_min * len(MODEL_CONSTRAINTS_BY_COMPETITION_ID) + 10
# time required between updates to the chain.
chain_update_cadence = dt.timedelta(minutes=20)
# time required between retrying evaluation of a stale model. (First retry will be immediate).
Expand Down

0 comments on commit ce48b8c

Please sign in to comment.