Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Add links to Scrimba AI Engineer path tutorials #373

Merged
merged 5 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/hub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
ArsalaBangash marked this conversation as resolved.
Show resolved Hide resolved

```ts
import { createRepo, uploadFiles, uploadFilesWithProgress, deleteFile, deleteRepo, listFiles, whoAmI } from "@huggingface/hub";
import type { RepoDesignation, Credentials } from "@huggingface/hub";
Expand Down
4 changes: 4 additions & 0 deletions packages/inference/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@ await hf.audioClassification({

Generates natural-sounding speech from text input.

Check out an [inetractive tutorial](https://scrimba.com/scrim/co8da4d23b49b648f77f4848a?pl=pkVnrP7uP)
ArsalaBangash marked this conversation as resolved.
Show resolved Hide resolved

```typescript
await hf.textToSpeech({
model: 'espnet/kan-bayashi_ljspeech_vits',
Expand Down Expand Up @@ -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.

Check out an [inetractive tutorial](https://scrimba.com/scrim/co4834bf9a91cc81cfab07969?pl=pkVnrP7uP)
ArsalaBangash marked this conversation as resolved.
Show resolved Hide resolved

```typescript
await hf.imageToImage({
inputs: new Blob([readFileSync("test/stormtrooper_depth.png")]),
Expand Down
Loading