tweaked graph title
Browse files- compare-allids-embeds.py +1 -1
compare-allids-embeds.py
CHANGED
@@ -77,8 +77,8 @@ import matplotlib.pyplot as plt
|
|
77 |
|
78 |
junk, ax = plt.subplots()
|
79 |
graph1=targetdistances.tolist()
|
|
|
80 |
ax.plot(graph1, label="Distance between same tokenID")
|
81 |
-
ax.set_title("Comparison between two CLIPTextModel datasets")
|
82 |
ax.set_ylabel("Distance")
|
83 |
ax.set_xlabel("CLIP TokenID")
|
84 |
|
|
|
77 |
|
78 |
junk, ax = plt.subplots()
|
79 |
graph1=targetdistances.tolist()
|
80 |
+
ax.set_title(f"{file1} vs \n{file2}")
|
81 |
ax.plot(graph1, label="Distance between same tokenID")
|
|
|
82 |
ax.set_ylabel("Distance")
|
83 |
ax.set_xlabel("CLIP TokenID")
|
84 |
|