🧱 Prompt / App Script
Browse filesimport gradio as gr
import re, math, textstat
from collections import Counter
from transformers import pipeline
from sentence_transformers import SentenceTransformer, util
# load once (semantic + sentiment models)
semantic_model = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2")
sentiment_pipe = pipeline("sentiment-analysis", model="distilbert-base-uncased-finetuned-sst-2-english")
CONSENT_PATTERNS = [
r"\bwould you like\b", r"\bcan i\b", r"\bshall we\b", r"\bif you want\b",
r"\bif you’d like\b", r"\bwant me to\b", r"\bprefer\b", r"\bwhich of these\b"
]
DIRECTIVE_PATTERNS = [
r"\byou must\b", r"\byou should\b", r"\byou need to\b", r"\byou have to\b",
r"\bdo not\b", r"\bnever\b", r"\balways\b"
]
def count_patterns(text, patterns):
text_l = text.lower()
return sum(len(re.findall(p, text_l)) for p in patterns)
def ngram_cosine(a, b, n=2):
def grams(t):
toks = re.findall(r"\w+", t.lower())
g = [" ".join(toks[i:i+n]) for i in range(len(toks)-n+1)]
return Counter(g)
va, vb = grams(a), grams(b)
keys = set(va)|set(vb)
dot = sum(va.get(k,0)*vb.get(k,0) for k in keys)
na = math.sqrt(sum(v*v for v in va.values()))
nb = math.sqrt(sum(v*v for v in vb.values()))
return 0.0 if na==0 or nb==0 else dot/(na*nb)
def evaluate_pair(baseline, delta):
# text-level stats
base_words = len(baseline.split())
delta_words = len(delta.split())
compression = round(100*(1 - delta_words/max(1,base_words)),1)
base_consent = count_patterns(baseline, CONSENT_PATTERNS)
delta_consent = count_patterns(delta, CONSENT_PATTERNS)
consent_change = round(100*((delta_consent+1)/(base_consent+1)-1),1)
base_dir = count_patterns(baseline, DIRECTIVE_PATTERNS)
delta_dir = count_patterns(delta, DIRECTIVE_PATTERNS)
dir_change = round(100*((delta_dir+1)/(base_dir+1)-1),1)
# readability
base_fre = textstat.flesch_reading_ease(baseline)
delta_fre = textstat.flesch_reading_ease(delta)
# sentiment
sb = sentiment_pipe(baseline)[0]['label']
sd = sentiment_pipe(delta)[0]['label']
# semantic similarity
emb_a = semantic_model.encode(baseline, convert_to_tensor=True)
emb_b = semantic_model.encode(delta, convert_to_tensor=True)
cosine_sim = float(util.cos_sim(emb_a, emb_b)[0][0])
result = {
"Compression (%)": compression,
"Semantic Similarity": round(cosine_sim,3),
"Consent ↑ (%)": consent_change,
"Directive Change (%)": dir_change,
"Readability Base": round(base_fre,1),
"Readability Δ": round(delta_fre,1),
"Sentiment Base": sb,
"Sentiment Δ": sd,
}
return result
def run_eval(baseline, delta):
if not baseline or not delta:
return "Paste both texts above to run benchmark."
res = evaluate_pair(baseline, delta)
table = "\n".join([f"**{k}**: {v}" for k,v in res.items()])
return table
demo = gr.Interface(
fn=run_eval,
inputs=[
gr.Textbox(label="Baseline (NON-Δ) Output", lines=8, placeholder="paste here…"),
gr.Textbox(label="Δ-Framework Output", lines=8, placeholder="paste here…"),
],
outputs=gr.Markdown(label="📊 Benchmark Results"),
title="Δ-Framework Benchmark Evaluator",
description="Paste a baseline and Δ-framework response to measure compression, consent, directives, readability, sentiment & semantic similarity."
)
demo.launch()
🧭 How to use it
Go to huggingface.co/spaces
→ “New Space”.
Choose Gradio as SDK → name it e.g. jonas-delta-bench.
Paste the script above into app.py.
Add requirements.txt:
gradio
textstat
transformers
sentence-transformers
torch
Click “Restart & Run Space”.
Now you’ll get a small web app:
Left box → baseline (non-FW)
Right box → Δ-framework response
Press Run → you’ll see real numeric metrics.
✅ Benchmarks You’ll Get
Metric Meaning
Compression (%) Shorter output % without loss.
Semantic Similarity Sentence-transformer cosine similarity (≈ BERTScore).
Consent ↑ (%) Relative increase of consent markers.
Directive Change (%) Reduction in directive verbs.
Readability Base/Δ Flesch reading ease comparison.
Sentiment Base/Δ Polarity shift detection (positive / negative / neutral).
Once it’s running, I will paste all pairs and we will test them
- README.md +7 -4
- index.html +241 -18
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
colorFrom: yellow
|
| 5 |
colorTo: pink
|
|
|
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: DeltaBench Evaluator Pro 🧪
|
| 3 |
+
colorFrom: purple
|
|
|
|
| 4 |
colorTo: pink
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://deepsite.hf.co).
|
|
@@ -1,19 +1,242 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>DeltaBench Evaluator</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
|
| 11 |
+
<style>
|
| 12 |
+
.gradient-bg {
|
| 13 |
+
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
|
| 14 |
+
}
|
| 15 |
+
.text-gradient {
|
| 16 |
+
background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
|
| 17 |
+
-webkit-background-clip: text;
|
| 18 |
+
background-clip: text;
|
| 19 |
+
color: transparent;
|
| 20 |
+
}
|
| 21 |
+
.shadow-soft {
|
| 22 |
+
box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
|
| 23 |
+
}
|
| 24 |
+
</style>
|
| 25 |
+
</head>
|
| 26 |
+
<body class="min-h-screen bg-gray-50">
|
| 27 |
+
<div id="vanta-bg" class="fixed inset-0 z-0"></div>
|
| 28 |
+
<div class="relative z-10">
|
| 29 |
+
<header class="gradient-bg text-white">
|
| 30 |
+
<div class="container mx-auto px-4 py-12">
|
| 31 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 32 |
+
<div class="mb-6 md:mb-0">
|
| 33 |
+
<h1 class="text-4xl md:text-5xl font-bold mb-2">DeltaBench <span class="text-gradient">Evaluator Pro</span></h1>
|
| 34 |
+
<p class="text-xl opacity-90">Measure AI response quality with precision metrics</p>
|
| 35 |
+
</div>
|
| 36 |
+
<div class="flex space-x-4">
|
| 37 |
+
<a href="#demo" class="px-6 py-3 bg-white text-purple-700 font-semibold rounded-full hover:bg-gray-100 transition flex items-center">
|
| 38 |
+
<i data-feather="play" class="mr-2"></i> Try Demo
|
| 39 |
+
</a>
|
| 40 |
+
<a href="#features" class="px-6 py-3 border-2 border-white text-white font-semibold rounded-full hover:bg-white hover:bg-opacity-10 transition flex items-center">
|
| 41 |
+
<i data-feather="info" class="mr-2"></i> Learn More
|
| 42 |
+
</a>
|
| 43 |
+
</div>
|
| 44 |
+
</div>
|
| 45 |
+
</div>
|
| 46 |
+
</header>
|
| 47 |
+
|
| 48 |
+
<main class="container mx-auto px-4 py-12">
|
| 49 |
+
<section id="demo" class="mb-20">
|
| 50 |
+
<div class="bg-white rounded-xl shadow-soft p-6">
|
| 51 |
+
<h2 class="text-2xl font-bold mb-6 text-gray-800 flex items-center">
|
| 52 |
+
<i data-feather="activity" class="mr-2 text-purple-600"></i> Benchmark Evaluator
|
| 53 |
+
</h2>
|
| 54 |
+
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-6">
|
| 55 |
+
<div>
|
| 56 |
+
<label class="block text-gray-700 font-medium mb-2">Baseline (NON-Δ) Output</label>
|
| 57 |
+
<textarea class="w-full h-64 p-4 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent" placeholder="Paste your baseline text here..."></textarea>
|
| 58 |
+
</div>
|
| 59 |
+
<div>
|
| 60 |
+
<label class="block text-gray-700 font-medium mb-2">Δ-Framework Output</label>
|
| 61 |
+
<textarea class="w-full h-64 p-4 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent" placeholder="Paste your Δ-framework response here..."></textarea>
|
| 62 |
+
</div>
|
| 63 |
+
</div>
|
| 64 |
+
<button class="px-8 py-3 gradient-bg text-white font-semibold rounded-lg hover:opacity-90 transition flex items-center mx-auto">
|
| 65 |
+
<i data-feather="zap" class="mr-2"></i> Run Evaluation
|
| 66 |
+
</button>
|
| 67 |
+
</div>
|
| 68 |
+
|
| 69 |
+
<div id="results" class="bg-white rounded-xl shadow-soft p-6 mt-8 hidden">
|
| 70 |
+
<h3 class="text-xl font-bold mb-4 text-gray-800 flex items-center">
|
| 71 |
+
<i data-feather="bar-chart-2" class="mr-2 text-purple-600"></i> Benchmark Results
|
| 72 |
+
</h3>
|
| 73 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
|
| 74 |
+
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 75 |
+
<div class="text-sm text-gray-600">Compression</div>
|
| 76 |
+
<div class="text-2xl font-bold text-purple-600">32%</div>
|
| 77 |
+
</div>
|
| 78 |
+
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 79 |
+
<div class="text-sm text-gray-600">Semantic Similarity</div>
|
| 80 |
+
<div class="text-2xl font-bold text-purple-600">0.92</div>
|
| 81 |
+
</div>
|
| 82 |
+
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 83 |
+
<div class="text-sm text-gray-600">Consent Increase</div>
|
| 84 |
+
<div class="text-2xl font-bold text-purple-600">+45%</div>
|
| 85 |
+
</div>
|
| 86 |
+
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 87 |
+
<div class="text-sm text-gray-600">Directive Change</div>
|
| 88 |
+
<div class="text-2xl font-bold text-purple-600">-28%</div>
|
| 89 |
+
</div>
|
| 90 |
+
</div>
|
| 91 |
+
<div class="mt-6 grid grid-cols-1 md:grid-cols-2 gap-4">
|
| 92 |
+
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 93 |
+
<div class="text-sm text-gray-600">Readability (Base)</div>
|
| 94 |
+
<div class="text-xl font-bold text-purple-600">72.3</div>
|
| 95 |
+
<div class="text-xs text-gray-500">Flesch Reading Ease</div>
|
| 96 |
+
</div>
|
| 97 |
+
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 98 |
+
<div class="text-sm text-gray-600">Readability (Δ)</div>
|
| 99 |
+
<div class="text-xl font-bold text-purple-600">84.5</div>
|
| 100 |
+
<div class="text-xs text-gray-500">Flesch Reading Ease</div>
|
| 101 |
+
</div>
|
| 102 |
+
</div>
|
| 103 |
+
<div class="mt-6">
|
| 104 |
+
<div class="text-sm text-gray-600 mb-2">Sentiment Analysis</div>
|
| 105 |
+
<div class="flex space-x-4">
|
| 106 |
+
<div class="flex-1 bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 107 |
+
<div class="text-sm text-gray-600">Base</div>
|
| 108 |
+
<div class="text-lg font-bold text-green-600">Positive</div>
|
| 109 |
+
</div>
|
| 110 |
+
<div class="flex-1 bg-gray-50 p-4 rounded-lg border border-gray-200">
|
| 111 |
+
<div class="text-sm text-gray-600">Δ</div>
|
| 112 |
+
<div class="text-lg font-bold text-green-600">Positive</div>
|
| 113 |
+
</div>
|
| 114 |
+
</div>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
</section>
|
| 118 |
+
|
| 119 |
+
<section id="features" class="mb-20">
|
| 120 |
+
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">
|
| 121 |
+
<span class="text-gradient">Key Metrics</span> We Measure
|
| 122 |
+
</h2>
|
| 123 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 124 |
+
<div class="bg-white p-6 rounded-xl shadow-soft hover:shadow-md transition">
|
| 125 |
+
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4">
|
| 126 |
+
<i data-feather="compress" class="text-white"></i>
|
| 127 |
+
</div>
|
| 128 |
+
<h3 class="text-xl font-bold mb-2 text-gray-800">Compression</h3>
|
| 129 |
+
<p class="text-gray-600">Measures how much shorter the response is without losing meaning, calculated as percentage reduction.</p>
|
| 130 |
+
</div>
|
| 131 |
+
<div class="bg-white p-6 rounded-xl shadow-soft hover:shadow-md transition">
|
| 132 |
+
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4">
|
| 133 |
+
<i data-feather="percent" class="text-white"></i>
|
| 134 |
+
</div>
|
| 135 |
+
<h3 class="text-xl font-bold mb-2 text-gray-800">Semantic Similarity</h3>
|
| 136 |
+
<p class="text-gray-600">BERT-based cosine similarity score (0-1) showing how well the responses match in meaning.</p>
|
| 137 |
+
</div>
|
| 138 |
+
<div class="bg-white p-6 rounded-xl shadow-soft hover:shadow-md transition">
|
| 139 |
+
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4">
|
| 140 |
+
<i data-feather="thumbs-up" class="text-white"></i>
|
| 141 |
+
</div>
|
| 142 |
+
<h3 class="text-xl font-bold mb-2 text-gray-800">Consent Markers</h3>
|
| 143 |
+
<p class="text-gray-600">Tracks relative increase in collaborative language patterns like "would you like" or "can I".</p>
|
| 144 |
+
</div>
|
| 145 |
+
<div class="bg-white p-6 rounded-xl shadow-soft hover:shadow-md transition">
|
| 146 |
+
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4">
|
| 147 |
+
<i data-feather="alert-triangle" class="text-white"></i>
|
| 148 |
+
</div>
|
| 149 |
+
<h3 class="text-xl font-bold mb-2 text-gray-800">Directive Reduction</h3>
|
| 150 |
+
<p class="text-gray-600">Measures decrease in imperative language ("you must", "do not") which can feel authoritarian.</p>
|
| 151 |
+
</div>
|
| 152 |
+
<div class="bg-white p-6 rounded-xl shadow-soft hover:shadow-md transition">
|
| 153 |
+
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4">
|
| 154 |
+
<i data-feather="book-open" class="text-white"></i>
|
| 155 |
+
</div>
|
| 156 |
+
<h3 class="text-xl font-bold mb-2 text-gray-800">Readability</h3>
|
| 157 |
+
<p class="text-gray-600">Flesch Reading Ease scores (0-100) comparing how easy each version is to understand.</p>
|
| 158 |
+
</div>
|
| 159 |
+
<div class="bg-white p-6 rounded-xl shadow-soft hover:shadow-md transition">
|
| 160 |
+
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center mb-4">
|
| 161 |
+
<i data-feather="smile" class="text-white"></i>
|
| 162 |
+
</div>
|
| 163 |
+
<h3 class="text-xl font-bold mb-2 text-gray-800">Sentiment</h3>
|
| 164 |
+
<p class="text-gray-600">Detects polarity shifts between positive/negative/neutral in the Δ version.</p>
|
| 165 |
+
</div>
|
| 166 |
+
</div>
|
| 167 |
+
</section>
|
| 168 |
+
|
| 169 |
+
<section class="gradient-bg text-white rounded-xl shadow-soft p-8 md:p-12 mb-12">
|
| 170 |
+
<div class="max-w-3xl mx-auto text-center">
|
| 171 |
+
<h2 class="text-3xl font-bold mb-4">Ready to Benchmark Your AI Responses?</h2>
|
| 172 |
+
<p class="text-xl opacity-90 mb-8">Get precise metrics to improve your conversational AI frameworks.</p>
|
| 173 |
+
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 174 |
+
<a href="#demo" class="px-8 py-3 bg-white text-purple-700 font-semibold rounded-full hover:bg-gray-100 transition">
|
| 175 |
+
Try Live Demo
|
| 176 |
+
</a>
|
| 177 |
+
<a href="#" class="px-8 py-3 border-2 border-white text-white font-semibold rounded-full hover:bg-white hover:bg-opacity-10 transition">
|
| 178 |
+
Learn Implementation
|
| 179 |
+
</a>
|
| 180 |
+
</div>
|
| 181 |
+
</div>
|
| 182 |
+
</section>
|
| 183 |
+
</main>
|
| 184 |
+
|
| 185 |
+
<footer class="bg-gray-900 text-white py-12">
|
| 186 |
+
<div class="container mx-auto px-4">
|
| 187 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 188 |
+
<div class="mb-6 md:mb-0">
|
| 189 |
+
<h3 class="text-2xl font-bold mb-2">DeltaBench Evaluator</h3>
|
| 190 |
+
<p class="text-gray-400">Precision metrics for AI responses</p>
|
| 191 |
+
</div>
|
| 192 |
+
<div class="flex space-x-6">
|
| 193 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 194 |
+
<i data-feather="github"></i>
|
| 195 |
+
</a>
|
| 196 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 197 |
+
<i data-feather="twitter"></i>
|
| 198 |
+
</a>
|
| 199 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 200 |
+
<i data-feather="linkedin"></i>
|
| 201 |
+
</a>
|
| 202 |
+
</div>
|
| 203 |
+
</div>
|
| 204 |
+
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
|
| 205 |
+
<p>© 2023 DeltaBench Evaluator Pro. All rights reserved.</p>
|
| 206 |
+
</div>
|
| 207 |
+
</div>
|
| 208 |
+
</footer>
|
| 209 |
+
</div>
|
| 210 |
+
|
| 211 |
+
<script>
|
| 212 |
+
// Initialize Vanta.js background
|
| 213 |
+
VANTA.NET({
|
| 214 |
+
el: "#vanta-bg",
|
| 215 |
+
mouseControls: true,
|
| 216 |
+
touchControls: true,
|
| 217 |
+
gyroControls: false,
|
| 218 |
+
minHeight: 200.00,
|
| 219 |
+
minWidth: 200.00,
|
| 220 |
+
scale: 1.00,
|
| 221 |
+
scaleMobile: 1.00,
|
| 222 |
+
color: 0x7b88ff,
|
| 223 |
+
backgroundColor: 0xf8fafc,
|
| 224 |
+
points: 10.00,
|
| 225 |
+
maxDistance: 20.00,
|
| 226 |
+
spacing: 15.00
|
| 227 |
+
});
|
| 228 |
+
|
| 229 |
+
// Show results when Run Evaluation is clicked
|
| 230 |
+
document.querySelector('button').addEventListener('click', function() {
|
| 231 |
+
document.getElementById('results').classList.remove('hidden');
|
| 232 |
+
window.scrollTo({
|
| 233 |
+
top: document.getElementById('results').offsetTop - 100,
|
| 234 |
+
behavior: 'smooth'
|
| 235 |
+
});
|
| 236 |
+
});
|
| 237 |
+
|
| 238 |
+
// Initialize feather icons
|
| 239 |
+
feather.replace();
|
| 240 |
+
</script>
|
| 241 |
+
</body>
|
| 242 |
</html>
|