tokenspace / T5 /README.md
ppbrown's picture
Create T5/README.md
f858732 verified
|
raw
history blame
710 Bytes
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 dumptokens.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
* showtokens.py
Given a word, or string of words, shows how T5 tokenizes it