diff --git a/README.md b/README.md index b2c525b..ac9b103 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,8 @@ defer func(session *hugot.Session) { }(session) // Let's download an onnx sentiment test classification model in the current directory // note: if you compile your library with build flag NODOWNLOAD, this will exclude the downloader. -// Useful in case you just want the core engine (because you already have the models) and want to drop the dependency on huggingfaceModelDownloader. +// Useful in case you just want the core engine (because you already have the models) and want to +// drop the dependency on huggingfaceModelDownloader. modelPath, err := session.DownloadModel("KnightsAnalytics/distilbert-base-uncased-finetuned-sst-2-english", "./") check(err) // we now create a text classification pipeline. It requires the path to the onnx model folder we just downloaded,