File size: 3,234 Bytes
0a2fbbb
 
 
 
 
7eddabc
 
12ecaea
7eddabc
e9623ba
 
aea5e02
e9623ba
4291c21
 
e9623ba
aea5e02
 
0a2fbbb
aea5e02
 
 
 
 
 
 
 
7b5e170
7eddabc
 
 
 
 
0ccea15
 
 
7b5e170
 
 
 
 
 
 
2f3c201
 
 
 
 
 
 
 
7b5e170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0a2fbbb
 
 
 
7b5e170
 
0a2fbbb
7b5e170
0a2fbbb
 
e9623ba
 
bac0dfe
 
 
e9623ba
bac0dfe
 
0a2fbbb
 
 
e9623ba
 
 
bac0dfe
0a2fbbb
bac0dfe
e9623ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# tokenspace directory

This directory contains utilities for the purpose of browsing the
"token space" of CLIP ViT-L/14

Primary tools are:

*  "calculate-distances.py": allows command-line browsing of words and their neighbours
*  "graph-embeddings.py": plots graph of full values of two embeddings


## (clipmodel,cliptextmodel)-calculate-distances.py

Loads the generated embeddings, reads in a word, calculates "distance" to every
embedding, and then shows the closest "neighbours".

To run this requires the files "embeddings.safetensors" and "dictionary",
in matching format

You will need to rename or copy appropriate files for this as mentioned below.

Note that SD models use cliptextmodel, NOT clipmodel

## graph-textmodels.py

Shows the difference between the same word, embedded by CLIPTextModel
vs CLIPModel

## graph-embeddings.py

Run the script. It will ask you for two text strings. 
Once you enter both, it will plot the graph and display it for you

Note that this tool does not require any of the other files; just that you 
have the requisite python modules installed. (pip install -r requirements.txt)

### embeddings.safetensors

You can either copy one of the provided files, or generate your own.
See generate-embeddings.py for that. 

Note that you muist always use the "dictionary" file that matchnes your embeddings file

### embeddings.allids.safetensors

DO NOT USE THIS ONE for programs that expect a matching dictionary.
This one is purely numeric based. 
Its intention is more for research datamining, but it does have a matching
graph front end, graph-byid.py


### dictionary

Make sure to always use the dictionary file that matches your embeddings file.

The "dictionary.fullword" file is pulled from fullword.json, which is distilled from "full words"
present in the ViT-L/14 CLIP model's provided token dictionary, called "vocab.json".
Thus there are only around 30,000 words in it

If you want to use the provided "embeddings.safetensors.huge" file, you will want to use the matching
"dictionary.huge" file, which has over 300,000 words

This huge file comes from the linux "wamerican-huge" package, which delivers it under
/usr/share/dict/american-english-huge

There also exists a "american-insane" package


## generate-embeddings.py

Generates the "embeddings.safetensor" file, based on the "dictionary" file present.
Takes a few minutes to run, depending on size of the dictionary

The shape of the embeddings tensor, is
 [number-of-words][768]

Note that yes, it is possible to directly pull a tensor from the CLIP model,
using keyname of  text_model.embeddings.token_embedding.weight

This will NOT GIVE YOU THE RIGHT DISTANCES!
Hence why we are calculating and then storing the embedding weights actually
generated by the CLIP process


## fullword.json

This file contains a collection of "one word, one CLIP token id" pairings.
The file was taken from vocab.json, which is part of multiple SD models in huggingface.co

The file was optimized for what people are actually going to type as words.
First all the non-(/w) entries were stripped out.
Then all the garbage punctuation and foreign characters were stripped out.
Finally, the actual (/w) was stripped out, for ease of use.