diff --git a/packages/hub/README.md b/packages/hub/README.md index e015fc1e5..85e275415 100644 --- a/packages/hub/README.md +++ b/packages/hub/README.md @@ -27,6 +27,8 @@ Check out the [full documentation](https://huggingface.co/docs/huggingface.js/hu For some of the calls, you need to create an account and generate an [access token](https://huggingface.co/settings/tokens). +Learn how to find free models using the hub package in this [interactive tutorial](https://scrimba.com/scrim/c7BbVPcd?pl=pkVnrP7uP). + ```ts import { createRepo, uploadFiles, uploadFilesWithProgress, deleteFile, deleteRepo, listFiles, whoAmI } from "@huggingface/hub"; import type { RepoDesignation, Credentials } from "@huggingface/hub"; diff --git a/packages/inference/README.md b/packages/inference/README.md index 274650b76..352c80b99 100644 --- a/packages/inference/README.md +++ b/packages/inference/README.md @@ -261,6 +261,8 @@ await hf.audioClassification({ Generates natural-sounding speech from text input. +[Interactive tutorial](https://scrimba.com/scrim/co8da4d23b49b648f77f4848a?pl=pkVnrP7uP) + ```typescript await hf.textToSpeech({ model: 'espnet/kan-bayashi_ljspeech_vits', @@ -349,6 +351,8 @@ await hf.textToImage({ Image-to-image is the task of transforming a source image to match the characteristics of a target image or a target image domain. +[Interactive tutorial](https://scrimba.com/scrim/co4834bf9a91cc81cfab07969?pl=pkVnrP7uP) + ```typescript await hf.imageToImage({ inputs: new Blob([readFileSync("test/stormtrooper_depth.png")]),