From bc7684b12b218ddbe8b1e81d482cd1902b091705 Mon Sep 17 00:00:00 2001 From: Frederic Grabowski Date: Mon, 15 Jan 2024 16:04:58 +0100 Subject: [PATCH] Update README.md for tasks mutual_information is a property --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8829f510..be08e7b9 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ import bmi task = bmi.benchmark.BENCHMARK_TASKS['1v1-normal-0.75'] print(f"Task {task.name} with dimensions {task.dim_x} and {task.dim_y}") -print(f"Ground truth mutual information: {task.mutual_information():.2f}") +print(f"Ground truth mutual information: {task.mutual_information:.2f}") X, Y = task.sample(1000, seed=42)