From 4a4830cdf4fe156ae62a64f0965182eb741de009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian-Robert=20St=C3=B6ter?= Date: Tue, 16 Apr 2024 12:09:32 +0200 Subject: [PATCH] fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed10a838..0f053a83 100644 --- a/README.md +++ b/README.md @@ -149,8 +149,8 @@ Note that this requires the audio to be in the right shape and sampling rate. Fo To perform model loading, preprocessing and separation in one step, just use: ```python -from openunmix import separate -estimates = separate.predict(audio, ...) +from openunmix.predict import separate +estimates = separate(audio, ...) ``` ### Load user-trained models