Skip to content

Commit

Permalink
clean up blog index
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnl committed Nov 16, 2023
1 parent 6720a3b commit 03363f1
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
18 changes: 18 additions & 0 deletions docs/blog/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Welcome to the Instructor Blog

The goal of the blog is to capture some content that does not neatly fit within documentation or the cookbooks.

## Advanced Topics

- [Query Understanding and Expansion for RAG](posts/rag-and-beyond.md)
- [GPT-4 Level summarization with GPT3.5 Finetuning](posts/chain-of-density.md)
- [Deepdive on LLM Guardrails / Validation](posts/validation-part1.md)
- [A Guide to Fine-Tuning and Distillation](posts/distilation-part1.md)

## Learning Python

- [Understanding Batch Processing with async](posts/learn-async.md)

## Talks

- [AI Engineering Summit 2023](posts/aisummit-2023.md)
2 changes: 1 addition & 1 deletion docs/blog/posts/chain-of-density.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ instructor jobs create-from-file generated.jsonl

??? notes "Finetuning Reference"

Checking out our [Finetuning CLI](/instructor/cli/finetune/) to learn about other hyperparameters that you can tune to improve your model's performance.
Checking out our [Finetuning CLI](cli/finetune/) to learn about other hyperparameters that you can tune to improve your model's performance.

Once the job is complete, all we need to do is to then change the annotation in the function call to `distil_summarization` in our original file above to start using our new model.

Expand Down
8 changes: 8 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,14 @@ plugins:
post_date_format: yyyy/MM/dd
post_url_format: "{date}/{slug}"
authors_file: "{blog}/.authors.yml"
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
enabled: !ENV [CI, false]
extra:
analytics:
provider: google
Expand Down
3 changes: 2 additions & 1 deletion requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ pytest
aiohttp==3.8.2
yarl==1.8.1
frozenlist==1.3.1
mkdocs-minify-plugin
mkdocs-minify-plugin
mkdocs-rss-plugin

0 comments on commit 03363f1

Please sign in to comment.