mirror of
https://github.com/kennethreitz/instructor.git
synced 2026-06-05 22:50:18 +00:00
clean up blog index
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user