Upload T5/README.md with huggingface_hub
Browse files- T5/README.md +8 -4
T5/README.md
CHANGED
@@ -1,18 +1,22 @@
|
|
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 |
-
|
|
|
|
|
15 |
sort dictionary.T5.fullword ../dictionary.fullword |uniq -c |awk '$1 =="2"{print $2}' >dict.both
|
16 |
|
17 |
* showtokens.py
|
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 |
+
|
9 |
This file is filtered from the full list of tokens in this model
|
10 |
+
(generated by dumptokens.py),
|
11 |
and has only the tokens that are full standalone words
|
12 |
(and are also plain English ascii. Sorry, fancy languages)
|
13 |
|
14 |
* dictionary.both
|
15 |
+
|
16 |
+
Words that are common across CLIP-L and T5. Generated by:
|
17 |
+
|
18 |
sort dictionary.T5.fullword ../dictionary.fullword |uniq -c |awk '$1 =="2"{print $2}' >dict.both
|
19 |
|
20 |
* showtokens.py
|
21 |
+
|
22 |
+
Given a word, or string of words, shows how T5 tokenizes it
|