Skip to content

Commit

Permalink
Fix typos (#567)
Browse files Browse the repository at this point in the history
Found via `codespell -H -L wit,thre`

!stable-docs
  • Loading branch information
kianmeng authored Sep 8, 2024
1 parent 7d6ece2 commit 50520c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ To create embeddings for every JPEG in a directory stored in a `photos` collecti
llm install llm-clip
llm embed-multi photos --files photos/ '*.jpg' --binary -m clip
```
Now you can search for photos of racoons using:
Now you can search for photos of raccoons using:
```
llm similar photos -c 'raccoon'
```
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/tutorial-model-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ We can try that out by pasting it into the interactive Python interpreter and ru

To execute the model, we start with a word. We look at the options for words that might come next and pick one of those at random. Then we repeat that process until we have produced the desired number of output words.

Some words might not have any following words from our training sentence. For our implementation we wil fall back on picking a random word from our collection.
Some words might not have any following words from our training sentence. For our implementation we will fall back on picking a random word from our collection.

We will implement this as a [Python generator](https://realpython.com/introduction-to-python-generators/), using the yield keyword to produce each token:
```python
Expand Down

0 comments on commit 50520c7

Please sign in to comment.