From 8a0b42ee77cae8a528f9c2262ab21ceb2487acd0 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Fri, 27 Oct 2023 17:16:30 -0600 Subject: [PATCH] add fixed growth for bpis --- cmd/clitest/index.html | 5 +++++ cmd/clitest/main.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cmd/clitest/index.html b/cmd/clitest/index.html index cbb3102..c8fc44d 100644 --- a/cmd/clitest/index.html +++ b/cmd/clitest/index.html @@ -68,6 +68,11 @@ + + + + + diff --git a/cmd/clitest/main.go b/cmd/clitest/main.go index f8bec05..f718944 100644 --- a/cmd/clitest/main.go +++ b/cmd/clitest/main.go @@ -134,7 +134,7 @@ func main() { } } - if r.URL.Query().Get("bpi") != "" { + if r.URL.Query().Get("bpi") == "true" { register = register.WithBPIs(bpis) predicted = predicted.WithBPIs(bpis) }