File size: 710 Bytes
f858732
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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