-
Notifications
You must be signed in to change notification settings - Fork 0
Update README.md #7
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
Conversation
The defaults are 3072 and Bool. I'll change the default to 3072 and Float32. I'll also add the default values in README. Thanks! |
## Building the Index | ||
```julia | ||
index = make_knowledge_packs(; single_urls=["https://docs.sciml.ai/Overview/stable/"], index_name="sciml", embedding_size=1024) | ||
index = make_knowledge_packs(["https://docs.sciml.ai/Overview/stable/"]; index_name="sciml", embedding_size=1024, bool_embeddings=true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! I would suggest making them consistent, eg, embedding_size
, embedding_bool` (it's easier for users to remember)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure how hard it is to change it in the user-facing functions, but the kwarg name in AIHelpMe is embedding_dimension
(not size)
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. Thanks for integrating Codecov - We've got you covered ☂️ |
I'm merging the PR. I'll update kwarg names and the same will be reflected in readme in the next PR |
I've made a few small tweaks.
@splendidbug can you check if the README makes sense here?
In addition, why do you show "embedding_dimension" 1024? What is the default setting you use? Because it seems that it's 1024+Bool, which is okay but it would at least deserve 1-2 sentences to explain the default or the choices users have?
WDYT?