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

make codespell happy #1490

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions gpt4all-chat/metadata/release.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
* resumable downloads for models
* chat list in the drawer drop down
* add/remove/rename chats
* perist chats to disk and restore them with full context (WARNING: the average size of each chat on disk is ~1.5GB)
* persist chats to disk and restore them with full context (WARNING: the average size of each chat on disk is ~1.5GB)
* NOTE: to turn on the persistent chats feature you need to do so via the settings dialog as it is off by default
* automatically rename chats using the AI after the first prompt/response pair
* new usage statistics including more detailed hardware info to help debug problems on older hardware
Expand Down Expand Up @@ -524,7 +524,7 @@
"version": "2.4.19",
"notes":
"
* Fix a crasher on systems with corrupted vulkan drivers or corrupted vulkan dlls
* Fix a crash on systems with corrupted vulkan drivers or corrupted vulkan dlls
",
"contributors":
"
Expand Down
2 changes: 1 addition & 1 deletion gpt4all-training/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def train(accelerator, config):
else DummyOptim
)

# karpathy doesn't decay embeddding, maybe we should exclude
# karpathy doesn't decay embedding, maybe we should exclude
# https://github.com/karpathy/minGPT/commit/bbbdac74fa9b2e55574d70056163ffbae42310c1#diff-2075fa9c224b395be5bda85544dd36572b59c76c54562819eadadbf268602834R157s
optimizer = optimizer_cls(model.parameters(), lr=config["lr"], weight_decay=config["weight_decay"])

Expand Down
Loading