From b9351ca28b37a0ee7f34187b01986c3ba11c6827 Mon Sep 17 00:00:00 2001 From: Julian Hoever Date: Wed, 13 Sep 2023 20:43:56 +0200 Subject: [PATCH] docs(readme): use create_design function instead of translate in minimal example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f4eccb6..b3b9f47f 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ def main() -> None: # Save the VHDL code of the trained model destination = OnDiskPath("build_dir") - design = model.translate("my_model") + design = model.create_design("my_model") design.save_to(destination)