From 17020b9a9c946f28a0693ebb025db5901f2e9ad4 Mon Sep 17 00:00:00 2001 From: Max Mynter Date: Thu, 1 Feb 2024 10:15:26 +0100 Subject: [PATCH] Add missing triple quotes to start code block --- docs/guides/benchmarks.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guides/benchmarks.md b/docs/guides/benchmarks.md index ef8246e2..5bbf7bb1 100644 --- a/docs/guides/benchmarks.md +++ b/docs/guides/benchmarks.md @@ -113,6 +113,8 @@ def benchmark_accuracy(n_estimators: int, max_depth: int, random_state: int) -> Notice that the parametrization is still incomplete, as we did not supply a `random_state` argument. The unfilled arguments are given in `BenchmarkRunner.run()` via a dictionary passed as the `params` keyword argument. + +```python # main.py from nnbench import runner