mauve
mauve copied to clipboard
Package to compute Mauve, a similarity score between neural text and human text. Install with `pip install mauve-text`.
While using MAUVE in a real use case, I decided to compute MAUVE multiple times per comparison with different K-Means random seeds. I've noticed that the value of the MAUVE...
Hi, I made this modification to MAUVE during my MSc thesis, please see the updated README for details. If you find S-MAUVE interesting, feel free to include it in your...
Hi, and thank you for the great paper. I have questions regarding https://github.com/krishnap25/mauve/blob/20613eecd7b084281ed4df9bfeee67d66cbfe5ee/src/mauve/utils.py#L120-L121 The activations in the final hidden layer is taken: `outs.hidden_states[-1]`, right? Is my understanding of why `sent_length`...
I found Kmeans in mauve.compute_mauve takes quite a long time, so i implemented Kmeans (with the same api to kmeans in sklearn) with pytorch and cuda, and replace the faiss.Kmeans...
Hi, I'm using mauve in my project and pointing to already downloaded gpt2-large model. Below is the code: ``` import mauve mauve_results = mauve.compute_mauve(p_text=[reference.strip("\n").replace(",", "")], q_text=[response.strip("\n").replace(",", "")], featurize_model_name='pre_trained_models/mauve/gpt2-large').mauve ``` When...