Downloads · 30 days
12
7% of all-time downloads
Endevor/BeyondRP-8B
BeyondRP-8B is a text generation model from Endevor. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
Downloads · 30 days
12
7% of all-time downloads
All-time downloads
167
Public
Parameters
8B
16.1 GB on disk
Likes
3
Public
Click a slice to open those files.
.safetensors16.1 GB · 100%
From the Hugging Face model README

Hi! New model release, it can also be considered as a "fix" for the Infinity 8B which did bad on my opinion. This model may not be the perfect/the best, it's an 8B, but it does the job... see some exampes below. This model is uncensored, of course.
<details> <summary><b>Generation Preset 1 (what I use, sometimes*)</b></summary>Temperature: 1.5
Top_P: 0.95~
Top_K: 50
Typical_P: 1
Min_P: 0.0
Repetition_Penalty: 1.19
Rep_Pen_Range: 1024, more or less.
</details>
<details>
<summary><b>Generation Preset 2</b></summary>
Temperature: 1.5
Top_P: 1
Top_K: 0
Typical_P: 1
Min_P: 0.1
Repetition_Penalty: 1.17~
Rep_Pen_Range: 1024, more or less.
</details>
Please test another one if you get bad results.
EXAMPLES:
<details> <summary><b>Chat with Seraphina</b></summary>


I found this useful guide by Sukino on Reddit and I really recommend reading this to get the best experience on every model. Really good job writing all this guide! To get rid of the slop, if you get any, I recommend banning tokens.
<details> <summary><b>About the colorful quotes</b></summary>Before you ask about the colorful quotes let me illustrate how I did that marvelous trick. Download this extension and install. Go to Extensions > Javascript Runner > add, select "Script Name" write any name you want, lastly, paste the js code below at "Script Body", click save, and you are done.
function getRandomColor() {
const r = Math.floor(Math.random() * 256);
const g = Math.floor(Math.random() * 256);
const b = Math.floor(Math.random() * 256);
return `rgb(${r},${g},${b})`;
}
function changeColor() {
const quotes = document.querySelectorAll('.mes_text q');
quotes.forEach(quote => {
quote.style.color = getRandomColor();
});
}
// Change color every 2 seconds, so (2000 milliseconds).
setInterval(changeColor, 2000);
// Backspace below or the script will fail to save/run.
Why I did that? It's because I got very bored reading that static color every time, so why not use all of them at once? Problem solved. :)
</details>