That link is to this model? Because looks better than falcon .
If yest then looks very promising ... even better than falcon.
This repo is that model, yes
Feedback has been mixed so far. One thing I noticed is that it appears not to have any stopping tokens implemented, so it just carries on and on - so you may need to manually configure stopping tokens in your UI (tell it to stop on ###Human
.
Let me know how you get on with it
I have been using the Alpaca instruction template and it seems to work pretty well.
OK I tested that 65b model and is very average even 65b-guacano is better ....the best ( except writing here the best is chronos-33b is beating everything ) is still wizardlm-30b-uncensored.
Look that produce wizardlm-30b-uncensored
question:
I asked for "Write a html with css webpage in one file containing 10 jokes and add a button which will be changing background colors randomly."
<!DOCTYPE html>
<html>
<head>
<title>Jokes Page</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-top: 50px;
}
.jokes {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px;
}
.joke {
background-color: #fff;
border: 1px solid #ccc;
padding: 20px;
margin-bottom: 20px;
width: 45%;
}
.button {
display: block;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.button:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<h1>Jokes Page</h1>
<div class="jokes">
<div class="joke">
<p>Why did the tomato turn red? Because it saw the salad dressing!</p>
</div>
<div class="joke">
<p>I'm reading a book on anti-gravity. It's impossible to put down.</p>
</div>
<div class="joke">
<p>Why don't scientists trust atoms? Because they make up everything!</p>
</div>
<div class="joke">
<p>I told my wife she was drawing her eyebrows too high. She looked surprised.</p>
</div>
<div class="joke">
<p>Why did the scarecrow win an award? Because he was outstanding in his field!</p>
</div>
<div class="joke">
<p>I'm reading a book about teleportation. It's bound to take me places.</p>
</div>
<div class="joke">
<p>Why did the chicken cross the playground? To get to the other slide!</p>
</div>
<div class="joke">
<p>I'm reading a book on the history of glue. I just can't seem to put it down.</p>
</div>
<div class="joke">
<p>Why don't scientists trust atoms? Because they make up everything!</p>
</div>
<div class="joke">
<p>I told my wife she was drawing her eyebrows too high. She looked surprised.</p>
</div>
</div>
<button class="button">Change Background Color</button>
<script>
var colors = ['#ff0000', '#00ff00', '#0000ff', '#ffff00', '#00ffff', '#000000'];
var colorIndex = 0;
function changeBackground() {
document.body.style.backgroundColor = colors[colorIndex];
colorIndex = (colorIndex + 1) % colors.length;
}
document.querySelector('.button').addEventListener('click', changeBackground);
</script>
</body>
</html>
and robin-65B-v2
<!DOCTYPE html>
<html>
<head>
<title>Joke Page</title>
<style>
/* Add this style section to your HTML file */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#jokes {
margin: 50px auto;
max-width: 700px;
text-align: center;
}
button {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #fff;
border: none;
font-size: 18px;
cursor: pointer;
}
button:hover {
background-color: #f5f5f5;
}
</style>
</head>
<body>
<!-- Add this section to your HTML file -->
<div id="jokes">
<h2>Jokes</h2>
<p>Here are some jokes for you:</p>
<ol>
<li><strong>Joke 1:</strong> Why did the tomato turn red? Because it saw the salad dressing!</li>
<li><strong>Joke 2:</strong> I told my wife she was drawing her eyebrows too high. She looked surprised.</li>
<li><strong>Joke 3:</strong> Why did the chicken cross the playground? To get to the other slide!</li>
<li><strong>Joke 4:</strong> I told my wife she was drawing her eyebrows too high. She looked surprised.</li>
<li><strong>Joke 5:</strong> Why did the tomato turn red? Because it saw the salad dressing!</li>
<li><strong>Joke 6:</strong> I told my wife she was drawing her eyebrows too high. She looked surprised.</li>
<li><strong>Joke 7:</strong> Why did the chicken cross the playground? To get to the other slide!</li>
<li><strong>Joke 8:</strong> I told my wife she was drawing her eyebrows too high. She looked surprised.</li>
<li><strong>Joke 9:</strong> Why did the tomato turn red? Because it saw the salad dressing!</li>
<li><strong>Joke 10:</strong> I told my wife she was drawing her eyebrows too high. She looked surprised.</li>
</ol>
<button id="random-color">Change Background Color</button>
</div>
<!-- Add this script to your HTML file -->
<script>
// Add this code to a JavaScript file or in the body of your HTML page
const randomColor = () => {
const colors = [
'#ff3f41',
'#ffffff',
'#d268a7',
'#9f5c80',
'#2f9b80',
'#bb00ff',
'#ccffcc',
'#87ceeb',
'#80b1ff',
'#4fcfad'
];
return colors[Math.floor(Math.random() * colors.length)];
};
const button = document.getElementById('random-color');
button.addEventListener('click', () => {
document.body.style.backgroundColor = randomColor();
});
</script>
</body>
</html>
Look how rich and good looking is the webpage generated by wizardlm-30b comparing to robin-65B-v2.
Wizardlm-30b also is giving much better answers at any topic.