mirror of
https://github.com/ParisNeo/lollms.git
synced 2024-12-20 05:08:00 +00:00
upgraded
This commit is contained in:
parent
0d987c16bb
commit
3c68ad5973
308
lollms/utilities.py
Normal file
308
lollms/utilities.py
Normal file
@ -0,0 +1,308 @@
|
||||
from lollms.personality import APScript
|
||||
from lollms.helpers import ASCIIColors, trace_exception
|
||||
|
||||
import numpy as np
|
||||
import json
|
||||
from pathlib import Path
|
||||
import numpy as np
|
||||
import json
|
||||
|
||||
|
||||
class TextVectorizer:
|
||||
def __init__(self, processor):
|
||||
|
||||
self.processor:APScript = processor
|
||||
self.personality = self.processor.personality
|
||||
self.model = self.personality.model
|
||||
self.personality_config = self.processor.personality_config
|
||||
self.lollms_paths = self.personality.lollms_paths
|
||||
self.embeddings = {}
|
||||
self.texts = {}
|
||||
self.ready = False
|
||||
self.vectorizer = None
|
||||
|
||||
self.database_file = Path(self.lollms_paths.personal_data_path/self.personality_config["database_path"])
|
||||
|
||||
self.visualize_data_at_startup=self.personality_config["visualize_data_at_startup"]
|
||||
self.visualize_data_at_add_file=self.personality_config["visualize_data_at_add_file"]
|
||||
self.visualize_data_at_generate=self.personality_config["visualize_data_at_generate"]
|
||||
|
||||
if self.personality_config.vectorization_method=="model_embedding":
|
||||
try:
|
||||
if self.model.embed("hi")==None:
|
||||
self.personality_config.vectorization_method="ftidf_vectorizer"
|
||||
self.infos={
|
||||
"vectorization_method":"ftidf_vectorizer"
|
||||
}
|
||||
else:
|
||||
self.infos={
|
||||
"vectorization_method":"model_embedding"
|
||||
}
|
||||
except Exception as ex:
|
||||
ASCIIColors.error("Couldn't embed the text, so trying to use tfidf instead.")
|
||||
trace_exception(ex)
|
||||
self.infos={
|
||||
"vectorization_method":"ftidf_vectorizer"
|
||||
}
|
||||
# Load previous state from the JSON file
|
||||
if self.personality_config.save_db:
|
||||
if Path(self.database_file).exists():
|
||||
ASCIIColors.success(f"Database file found : {self.database_file}")
|
||||
self.load_from_json()
|
||||
if self.visualize_data_at_startup:
|
||||
self.show_document()
|
||||
self.ready = True
|
||||
else:
|
||||
ASCIIColors.info(f"No database file found : {self.database_file}")
|
||||
|
||||
|
||||
def show_document(self, query_text=None):
|
||||
import textwrap
|
||||
import seaborn as sns
|
||||
import matplotlib.pyplot as plt
|
||||
import mplcursors
|
||||
from tkinter import Tk, Text, Scrollbar, Frame, Label, TOP, BOTH, RIGHT, LEFT, Y, N, END
|
||||
|
||||
|
||||
from sklearn.manifold import TSNE
|
||||
from sklearn.decomposition import PCA
|
||||
import torch
|
||||
|
||||
if self.personality_config.data_visualization_method=="PCA":
|
||||
use_pca = True
|
||||
else:
|
||||
use_pca = False
|
||||
|
||||
if use_pca:
|
||||
print("Showing pca representation :")
|
||||
else:
|
||||
print("Showing t-sne representation :")
|
||||
texts = list(self.texts.values())
|
||||
embeddings = self.embeddings
|
||||
emb = list(embeddings.values())
|
||||
if len(emb)>=2:
|
||||
# Normalize embeddings
|
||||
emb = np.vstack(emb)
|
||||
norms = np.linalg.norm(emb, axis=1)
|
||||
normalized_embeddings = emb / norms[:, np.newaxis]
|
||||
|
||||
# Embed the query text
|
||||
if query_text is not None:
|
||||
query_embedding = self.embed_query(query_text)
|
||||
query_embedding = query_embedding.detach().squeeze().numpy()
|
||||
query_normalized_embedding = query_embedding / np.linalg.norm(query_embedding)
|
||||
|
||||
# Combine the query embedding with the document embeddings
|
||||
combined_embeddings = np.vstack((normalized_embeddings, query_normalized_embedding))
|
||||
else:
|
||||
# Combine the query embedding with the document embeddings
|
||||
combined_embeddings = normalized_embeddings
|
||||
|
||||
if use_pca:
|
||||
# Use PCA for dimensionality reduction
|
||||
pca = PCA(n_components=2)
|
||||
embeddings_2d = pca.fit_transform(combined_embeddings)
|
||||
else:
|
||||
# Use t-SNE for dimensionality reduction
|
||||
# Adjust the perplexity value
|
||||
perplexity = min(30, combined_embeddings.shape[0] - 1)
|
||||
tsne = TSNE(n_components=2, perplexity=perplexity)
|
||||
embeddings_2d = tsne.fit_transform(combined_embeddings)
|
||||
|
||||
|
||||
# Create a scatter plot using Seaborn
|
||||
if query_text is not None:
|
||||
sns.scatterplot(x=embeddings_2d[:-1, 0], y=embeddings_2d[:-1, 1]) # Plot document embeddings
|
||||
plt.scatter(embeddings_2d[-1, 0], embeddings_2d[-1, 1], color='red') # Plot query embedding
|
||||
else:
|
||||
sns.scatterplot(x=embeddings_2d[:, 0], y=embeddings_2d[:, 1]) # Plot document embeddings
|
||||
# Add labels to the scatter plot
|
||||
for i, (x, y) in enumerate(embeddings_2d[:-1]):
|
||||
plt.text(x, y, str(i), fontsize=8)
|
||||
|
||||
plt.xlabel('Dimension 1')
|
||||
plt.ylabel('Dimension 2')
|
||||
if use_pca:
|
||||
plt.title('Embeddings Scatter Plot based on PCA')
|
||||
else:
|
||||
plt.title('Embeddings Scatter Plot based on t-SNE')
|
||||
# Enable mplcursors to show tooltips on hover
|
||||
cursor = mplcursors.cursor(hover=True)
|
||||
|
||||
# Define the hover event handler
|
||||
@cursor.connect("add")
|
||||
def on_hover(sel):
|
||||
index = sel.target.index
|
||||
if index > 0:
|
||||
text = texts[index]
|
||||
wrapped_text = textwrap.fill(text, width=50) # Wrap the text into multiple lines
|
||||
sel.annotation.set_text(f"Index: {index}\nText:\n{wrapped_text}")
|
||||
else:
|
||||
sel.annotation.set_text("Query")
|
||||
|
||||
# Define the click event handler using matplotlib event handling mechanism
|
||||
def on_click(event):
|
||||
if event.xdata is not None and event.ydata is not None:
|
||||
x, y = event.xdata, event.ydata
|
||||
distances = ((embeddings_2d[:, 0] - x) ** 2 + (embeddings_2d[:, 1] - y) ** 2)
|
||||
index = distances.argmin()
|
||||
text = texts[index] if index < len(texts) else query_text
|
||||
|
||||
# Open a new Tkinter window with the content of the text
|
||||
root = Tk()
|
||||
root.title(f"Text for Index {index}")
|
||||
frame = Frame(root)
|
||||
frame.pack(fill=BOTH, expand=True)
|
||||
|
||||
label = Label(frame, text="Text:")
|
||||
label.pack(side=TOP, padx=5, pady=5)
|
||||
|
||||
text_box = Text(frame)
|
||||
text_box.pack(side=TOP, padx=5, pady=5, fill=BOTH, expand=True)
|
||||
text_box.insert(END, text)
|
||||
|
||||
scrollbar = Scrollbar(frame)
|
||||
scrollbar.pack(side=RIGHT, fill=Y)
|
||||
scrollbar.config(command=text_box.yview)
|
||||
text_box.config(yscrollcommand=scrollbar.set)
|
||||
|
||||
text_box.config(state="disabled")
|
||||
|
||||
root.mainloop()
|
||||
|
||||
# Connect the click event handler to the figure
|
||||
plt.gcf().canvas.mpl_connect("button_press_event", on_click)
|
||||
plt.savefig(self.lollms_paths.personal_uploads_path / self.personality.personality_folder_name/ "db.png")
|
||||
plt.show()
|
||||
|
||||
def index_document(self, document_id, text, chunk_size, overlap_size, force_vectorize=False):
|
||||
|
||||
if document_id in self.embeddings and not force_vectorize:
|
||||
print(f"Document {document_id} already exists. Skipping vectorization.")
|
||||
return
|
||||
|
||||
# Split tokens into sentences
|
||||
sentences = text.split('. ')
|
||||
def remove_empty_sentences(sentences):
|
||||
return [sentence for sentence in sentences if sentence.strip() != '']
|
||||
sentences = remove_empty_sentences(sentences)
|
||||
# Generate chunks with overlap and sentence boundaries
|
||||
chunks = []
|
||||
current_chunk = []
|
||||
for i in range(len(sentences)):
|
||||
sentence = sentences[i]
|
||||
sentence_tokens = self.model.tokenize(sentence)
|
||||
|
||||
|
||||
# ASCIIColors.yellow(len(sentence_tokens))
|
||||
if len(current_chunk) + len(sentence_tokens) <= chunk_size:
|
||||
current_chunk.extend(sentence_tokens)
|
||||
else:
|
||||
if current_chunk:
|
||||
chunks.append(current_chunk)
|
||||
|
||||
while len(sentence_tokens)>chunk_size:
|
||||
current_chunk = sentence_tokens[0:chunk_size]
|
||||
sentence_tokens = sentence_tokens[chunk_size:]
|
||||
chunks.append(current_chunk)
|
||||
current_chunk = sentence_tokens
|
||||
|
||||
|
||||
if current_chunk:
|
||||
chunks.append(current_chunk)
|
||||
|
||||
if self.personality_config.vectorization_method=="ftidf_vectorizer":
|
||||
from sklearn.feature_extraction.text import TfidfVectorizer
|
||||
self.vectorizer = TfidfVectorizer()
|
||||
#if self.personality.config.debug:
|
||||
# ASCIIColors.yellow(','.join([len(chunk) for chunk in chunks]))
|
||||
data=[]
|
||||
for chunk in chunks:
|
||||
try:
|
||||
data.append(self.model.detokenize(chunk) )
|
||||
except Exception as ex:
|
||||
print("oups")
|
||||
self.vectorizer.fit(data)
|
||||
|
||||
self.embeddings = {}
|
||||
# Generate embeddings for each chunk
|
||||
for i, chunk in enumerate(chunks):
|
||||
# Store chunk ID, embedding, and original text
|
||||
chunk_id = f"{document_id}_chunk_{i + 1}"
|
||||
try:
|
||||
self.texts[chunk_id] = self.model.detokenize(chunk[:chunk_size])
|
||||
if self.personality_config.vectorization_method=="ftidf_vectorizer":
|
||||
self.embeddings[chunk_id] = self.vectorizer.transform([self.texts[chunk_id]]).toarray()
|
||||
else:
|
||||
self.embeddings[chunk_id] = self.model.embed(self.texts[chunk_id])
|
||||
except Exception as ex:
|
||||
print("oups")
|
||||
|
||||
if self.personality_config.save_db:
|
||||
self.save_to_json()
|
||||
|
||||
self.ready = True
|
||||
if self.visualize_data_at_add_file:
|
||||
self.show_document()
|
||||
|
||||
|
||||
def embed_query(self, query_text):
|
||||
# Generate query embedding
|
||||
if self.personality_config.vectorization_method=="ftidf_vectorizer":
|
||||
query_embedding = self.vectorizer.transform([query_text]).toarray()
|
||||
else:
|
||||
query_embedding = self.model.embed(query_text)
|
||||
|
||||
return query_embedding
|
||||
|
||||
def recover_text(self, query_embedding, top_k=1):
|
||||
from sklearn.metrics.pairwise import cosine_similarity
|
||||
similarities = {}
|
||||
for chunk_id, chunk_embedding in self.embeddings.items():
|
||||
similarity = cosine_similarity(query_embedding, chunk_embedding)
|
||||
similarities[chunk_id] = similarity
|
||||
|
||||
# Sort the similarities and retrieve the top-k most similar embeddings
|
||||
sorted_similarities = sorted(similarities.items(), key=lambda x: x[1], reverse=True)[:top_k]
|
||||
|
||||
# Retrieve the original text associated with the most similar embeddings
|
||||
texts = [self.texts[chunk_id] for chunk_id, _ in sorted_similarities]
|
||||
|
||||
if self.visualize_data_at_generate:
|
||||
self.show_document()
|
||||
|
||||
return texts, sorted_similarities
|
||||
|
||||
def save_to_json(self):
|
||||
state = {
|
||||
"embeddings": {str(k): v.tolist() if type(v)!=list else v for k, v in self.embeddings.items() },
|
||||
"texts": self.texts,
|
||||
"infos": self.infos
|
||||
}
|
||||
with open(self.database_file, "w") as f:
|
||||
json.dump(state, f)
|
||||
|
||||
def load_from_json(self):
|
||||
|
||||
ASCIIColors.info("Loading vectorized documents")
|
||||
with open(self.database_file, "r") as f:
|
||||
state = json.load(f)
|
||||
self.embeddings = {k: v for k, v in state["embeddings"].items()}
|
||||
self.texts = state["texts"]
|
||||
self.infos= state["infos"]
|
||||
self.ready = True
|
||||
if self.personality_config.vectorization_method=="ftidf_vectorizer":
|
||||
from sklearn.feature_extraction.text import TfidfVectorizer
|
||||
data = list(self.texts.values())
|
||||
if len(data)>0:
|
||||
self.vectorizer = TfidfVectorizer()
|
||||
self.vectorizer.fit(data)
|
||||
self.embeddings={}
|
||||
for k,v in self.texts.items():
|
||||
self.embeddings[k]= self.vectorizer.transform([v]).toarray()
|
||||
def clear_database(self):
|
||||
self.vectorizer=None
|
||||
self.embeddings = {}
|
||||
self.texts={}
|
||||
if self.personality_config.save_db:
|
||||
self.save_to_json()
|
Loading…
Reference in New Issue
Block a user