File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 75
75
* resumable downloads for models
76
76
* chat list in the drawer drop down
77
77
* add/remove/rename chats
78
- * perist chats to disk and restore them with full context (WARNING: the average size of each chat on disk is ~1.5GB)
78
+ * persist chats to disk and restore them with full context (WARNING: the average size of each chat on disk is ~1.5GB)
79
79
* NOTE: to turn on the persistent chats feature you need to do so via the settings dialog as it is off by default
80
80
* automatically rename chats using the AI after the first prompt/response pair
81
81
* new usage statistics including more detailed hardware info to help debug problems on older hardware
524
524
"version" : " 2.4.19" ,
525
525
"notes" :
526
526
"
527
- * Fix a crasher on systems with corrupted vulkan drivers or corrupted vulkan dlls
527
+ * Fix a crash on systems with corrupted vulkan drivers or corrupted vulkan dlls
528
528
",
529
529
"contributors" :
530
530
"
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def train(accelerator, config):
75
75
else DummyOptim
76
76
)
77
77
78
- # karpathy doesn't decay embeddding , maybe we should exclude
78
+ # karpathy doesn't decay embedding , maybe we should exclude
79
79
# https://github.com/karpathy/minGPT/commit/bbbdac74fa9b2e55574d70056163ffbae42310c1#diff-2075fa9c224b395be5bda85544dd36572b59c76c54562819eadadbf268602834R157s
80
80
optimizer = optimizer_cls (model .parameters (), lr = config ["lr" ], weight_decay = config ["weight_decay" ])
81
81
You can’t perform that action at this time.
0 commit comments