From f9258a8fd0945a680ad5890e681c4cbd6b1d4d0e Mon Sep 17 00:00:00 2001 From: Franz Srambical <79149449+emergenz@users.noreply.github.com> Date: Thu, 10 Apr 2025 17:38:01 +0200 Subject: [PATCH] fix: link to algoperf quasi-random search implementation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 953ad15..03c8a1e 100644 --- a/README.md +++ b/README.md @@ -1757,7 +1757,7 @@ multi-host training can make it very easy to introduce bugs!* - [Open-Source Vizier](https://github.com/google/vizier) has an [implementation of quasi-random search](https://github.com/google/vizier/blob/main/vizier/_src/algorithms/designers/quasi_random.py). Set `algorithm="QUASI_RANDOM_SEARCH"` in [this usage example](https://oss-vizier.readthedocs.io/en/latest/guides/user/running_vizier.html). - An alternative implementation exists - [here](https://github.com/mlcommons/algorithmic-efficiency/blob/main/algorithmic_efficiency/halton.py). + [here](https://github.com/mlcommons/algorithmic-efficiency/blob/main/algoperf/halton.py). - Both implementations above generate a Halton sequence for a given search space (intended to implement a shifted, scrambled Halton sequence as recommended in https://arxiv.org/abs/1706.03200).