ppbrown commited on
Commit
886c1d1
1 Parent(s): a672d3c

Upload T5/README.md with huggingface_hub

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