From ddebfaea1cf925874831581bad2eeb3f705315ac Mon Sep 17 00:00:00 2001 From: satya-vinay Date: Thu, 3 Nov 2022 13:30:42 +0530 Subject: [PATCH] Removed extra | in documentation --- website/docs/Use-Cases/Tune-User-Defined-Function.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/Use-Cases/Tune-User-Defined-Function.md b/website/docs/Use-Cases/Tune-User-Defined-Function.md index 679865872..c48706c9a 100644 --- a/website/docs/Use-Cases/Tune-User-Defined-Function.md +++ b/website/docs/Use-Cases/Tune-User-Defined-Function.md @@ -130,7 +130,6 @@ You can find the corresponding search space choice in the table below once you h | log scale | tune.lograndint(lower: int, upper: int, base: float = 10 | tune.loguniform(lower: float, upper: float, base: float = 10)| | linear scale with quantization| tune.qrandint(lower: int, upper: int, q: int = 1)| tune.quniform(lower: float, upper: float, q: float = 1)| log scale with quantization | tune.qlograndint(lower: int, upper, q: int = 1, base: float = 10)| tune.qloguniform(lower: float, upper, q: float = 1, base: float = 10) -| See the example below for the commonly used types of domains.