File size: 725 Bytes
f858732 a672d3c f858732 886c1d1 fd1d219 f858732 886c1d1 a672d3c f858732 fd1d219 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
This directory specializes in the Google T5 xxl LLM.
Specifically, it focuses on
https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly/
because that is the one most used by AI generative models at the moment
* dictionary.T5.fullword - This file is filtered from the full list of tokens in this model
(generated by dumptokensT5.py),
and has only the tokens that are full standalone words
(and are also plain English ascii. Sorry, fancy languages)
* dictionary.both - Words that are common across CLIP-L and T5. Generated by:
sort dictionary.T5.fullword ../dictionary.fullword |uniq -c |awk '$1 =="2"{print $2}' >dict.both
* showtokensT5.py - Given a word, or string of words, shows how T5 tokenizes it
|