mirror of https://github.com/maderix/ANE.git
Add tokenizer via git-lfs, fix dashboard tokenizer path
- Add tokenizer.bin (434KB) to assets/models/ via git-lfs - Fix dashboard tokenizer path (was one parent too many)
This commit is contained in:
parent
926f977b40
commit
9595b1a499
|
|
@ -0,0 +1,2 @@
|
||||||
|
assets/models/*.bin filter=lfs diff=lfs merge=lfs -text
|
||||||
|
assets/data/*.bin filter=lfs diff=lfs merge=lfs -text
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:50a52ef822ee9e83de5ce9d0be0a025a773d019437f58b5ff9dcafb063ece361
|
||||||
|
size 433869
|
||||||
|
|
@ -23,7 +23,7 @@ HD = DIM // HEADS
|
||||||
CKPT_PATH_STATIC = 'ane_stories110M_ckpt.bin'
|
CKPT_PATH_STATIC = 'ane_stories110M_ckpt.bin'
|
||||||
CKPT_PATH_DYNAMIC = 'training_dynamic/ane_stories110M_dyn_ckpt.bin'
|
CKPT_PATH_DYNAMIC = 'training_dynamic/ane_stories110M_dyn_ckpt.bin'
|
||||||
CKPT_PATH = CKPT_PATH_STATIC # set in main() based on --dynamic
|
CKPT_PATH = CKPT_PATH_STATIC # set in main() based on --dynamic
|
||||||
TOKENIZER_PATH = str(Path(__file__).resolve().parent.parent.parent / 'assets' / 'models' / 'tokenizer.bin')
|
TOKENIZER_PATH = str(Path(__file__).resolve().parent.parent / 'assets' / 'models' / 'tokenizer.bin')
|
||||||
|
|
||||||
|
|
||||||
class State:
|
class State:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue