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