sleepdeprived3 commited on
Commit
2b8d59d
Β·
verified Β·
1 Parent(s): c12e013

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +514 -0
README.md ADDED
@@ -0,0 +1,514 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ base_model:
6
+ - mistralai/Mistral-Nemo-Instruct-2407
7
+ base_model_relation: finetune
8
+ pipeline_tag: text-generation
9
+ tags:
10
+ - Baptist
11
+ - Christian
12
+ - Bible
13
+ - Theology
14
+ - Jesus
15
+ - Seminary
16
+ - SBC
17
+ - Protestant
18
+ ---
19
+ <style>
20
+ body {
21
+ font-family: 'Quicksand', sans-serif;
22
+ background: linear-gradient(135deg, #0a1a1a 0%, #001010 100%);
23
+ color: #e1ffff !important;
24
+ text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
25
+ margin: 0;
26
+ padding: 20px;
27
+ transition: all 0.5s ease;
28
+ }
29
+
30
+ @media (prefers-color-scheme: light) {
31
+ body {
32
+ background: linear-gradient(135deg, #e1ffff 0%, #c0f0ff 100%);
33
+ color: #002b36 !important;
34
+ text-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
35
+ }
36
+ }
37
+
38
+ .container {
39
+ min-width: 100%;
40
+ margin: 0 auto;
41
+ max-width: 1200px;
42
+ background: rgba(0, 17, 22, 0.95);
43
+ border-radius: 12px;
44
+ padding: 30px;
45
+ box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
46
+ border: 1px solid rgba(0, 255, 255, 0.2);
47
+ position: relative;
48
+ overflow: hidden;
49
+ }
50
+
51
+ .container::before {
52
+ content: '';
53
+ position: absolute;
54
+ top: -1px;
55
+ left: -1px;
56
+ right: -1px;
57
+ bottom: -1px;
58
+ border: 1px solid rgba(0, 255, 255, 0.5);
59
+ border-radius: 12px;
60
+ pointer-events: none;
61
+ animation: borderGlow 3s ease-in-out infinite alternate;
62
+ }
63
+
64
+ @keyframes borderGlow {
65
+ 0% {
66
+ box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
67
+ border-color: rgba(0, 255, 255, 0.5);
68
+ }
69
+ 50% {
70
+ box-shadow: 0 0 15px rgba(0, 100, 255, 0.3);
71
+ border-color: rgba(0, 100, 255, 0.5);
72
+ }
73
+ 100% {
74
+ box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
75
+ border-color: rgba(0, 255, 255, 0.5);
76
+ }
77
+ }
78
+
79
+ .header {
80
+ text-align: center;
81
+ margin-bottom: 30px;
82
+ position: relative;
83
+ }
84
+
85
+ .header::after {
86
+ content: '';
87
+ position: absolute;
88
+ bottom: -15px;
89
+ left: 25%;
90
+ right: 25%;
91
+ height: 1px;
92
+ background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
93
+ animation: scanline 8s linear infinite;
94
+ }
95
+
96
+ @keyframes scanline {
97
+ 0% { background-position: -100% 0; }
98
+ 100% { background-position: 200% 0; }
99
+ }
100
+
101
+ .model-name {
102
+ color: #00ffff;
103
+ font-size: 2.5em;
104
+ text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
105
+ margin: 0;
106
+ letter-spacing: -1px;
107
+ animation: textGlow 4s ease-in-out infinite alternate;
108
+ }
109
+
110
+ @keyframes textGlow {
111
+ 0% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
112
+ 50% { text-shadow: 0 0 20px rgba(0, 100, 255, 0.5); }
113
+ 100% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
114
+ }
115
+
116
+ .subtitle {
117
+ color: #00ffcc;
118
+ font-size: 1.2em;
119
+ margin-top: 10px;
120
+ animation: subtitleFade 6s ease-in-out infinite;
121
+ }
122
+
123
+ @keyframes subtitleFade {
124
+ 0%, 100% { opacity: 0.8; }
125
+ 50% { opacity: 1; }
126
+ }
127
+
128
+ .bible-container {
129
+ margin: 20px -30px;
130
+ width: calc(100% + 60px);
131
+ overflow: hidden;
132
+ border-radius: 8px;
133
+ border: 1px solid rgba(0, 255, 255, 0.3);
134
+ position: relative;
135
+ }
136
+
137
+ .bible-container::before {
138
+ content: '';
139
+ position: absolute;
140
+ top: 0;
141
+ left: 0;
142
+ right: 0;
143
+ bottom: 0;
144
+ background: linear-gradient(45deg,
145
+ rgba(0, 255, 255, 0.1) 0%,
146
+ transparent 20%,
147
+ transparent 80%,
148
+ rgba(0, 100, 255, 0.1) 100%);
149
+ pointer-events: none;
150
+ animation: gradientSlide 10s linear infinite;
151
+ }
152
+
153
+ @keyframes gradientSlide {
154
+ 0% { background-position: 0% 0%; }
155
+ 100% { background-position: 100% 100%; }
156
+ }
157
+
158
+ .bible-img {
159
+ width: 100%;
160
+ height: auto;
161
+ border-radius: 0;
162
+ border: none;
163
+ box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
164
+ transition: transform 0.5s ease;
165
+ }
166
+
167
+ .bible-img:hover {
168
+ transform: scale(1.01);
169
+ }
170
+
171
+ .section {
172
+ color: #e1ffff;
173
+ margin: 25px 0;
174
+ padding: 20px;
175
+ background: rgba(5, 25, 35, 0.9);
176
+ border-radius: 8px;
177
+ border: 1px solid rgba(0, 255, 255, 0.15);
178
+ position: relative;
179
+ transition: all 0.3s ease;
180
+ }
181
+
182
+ .section:hover {
183
+ border-color: rgba(0, 100, 255, 0.3);
184
+ box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
185
+ }
186
+
187
+ .section::before {
188
+ content: '';
189
+ position: absolute;
190
+ top: -1px;
191
+ left: -1px;
192
+ right: -1px;
193
+ bottom: -1px;
194
+ border: 1px solid rgba(0, 255, 255, 0.3);
195
+ border-radius: 8px;
196
+ pointer-events: none;
197
+ animation: sectionPulse 5s ease-in-out infinite;
198
+ }
199
+
200
+ @keyframes sectionPulse {
201
+ 0%, 100% { opacity: 0.7; }
202
+ 50% { opacity: 0.3; }
203
+ }
204
+
205
+ .section-title {
206
+ color: #00ffff;
207
+ font-size: 1.8em;
208
+ margin-top: 0;
209
+ text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
210
+ position: relative;
211
+ display: inline-block;
212
+ }
213
+
214
+ .section-title::after {
215
+ content: '';
216
+ position: absolute;
217
+ bottom: -5px;
218
+ left: 0;
219
+ width: 100%;
220
+ height: 1px;
221
+ background: linear-gradient(90deg, rgba(0, 255, 255, 0.5), rgba(0, 100, 255, 0.5));
222
+ transform: scaleX(0);
223
+ transform-origin: left;
224
+ transition: transform 0.3s ease;
225
+ }
226
+
227
+ .section:hover .section-title::after {
228
+ transform: scaleX(1);
229
+ }
230
+
231
+ .quant-links {
232
+ display: grid;
233
+ grid-template-columns: repeat(3, 1fr);
234
+ gap: 15px;
235
+ margin: 20px 0;
236
+ }
237
+
238
+ .link-card {
239
+ padding: 15px;
240
+ background: rgba(20, 35, 45, 0.95);
241
+ border-radius: 8px;
242
+ transition: all 0.3s ease;
243
+ border: 1px solid rgba(0, 255, 255, 0.1);
244
+ position: relative;
245
+ overflow: hidden;
246
+ }
247
+
248
+ .link-card::before {
249
+ content: '';
250
+ position: absolute;
251
+ top: 0;
252
+ left: 0;
253
+ right: 0;
254
+ height: 2px;
255
+ background: linear-gradient(90deg, rgba(0, 255, 255, 0.5), rgba(0, 100, 255, 0.5));
256
+ animation: cardScan 4s linear infinite;
257
+ }
258
+
259
+ @keyframes cardScan {
260
+ 0% { transform: translateX(-100%); }
261
+ 100% { transform: translateX(100%); }
262
+ }
263
+
264
+ .link-card:hover {
265
+ transform: translateY(-3px);
266
+ box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
267
+ border-color: rgba(0, 100, 255, 0.3);
268
+ }
269
+
270
+ .link-card h3 {
271
+ margin-top: 0;
272
+ color: #e1ffff !important;
273
+ }
274
+
275
+ .link-button {
276
+ display: inline-flex;
277
+ align-items: center;
278
+ background: rgba(0, 255, 255, 0.1);
279
+ color: #e1ffff !important;
280
+ padding: 8px 15px;
281
+ border-radius: 6px;
282
+ text-decoration: none;
283
+ border: 1px solid rgba(0, 255, 255, 0.3);
284
+ margin: 5px 0;
285
+ transition: all 0.3s ease;
286
+ font-size: 0.95em;
287
+ position: relative;
288
+ overflow: hidden;
289
+ }
290
+
291
+ .link-button::before {
292
+ content: '';
293
+ position: absolute;
294
+ top: 0;
295
+ left: -100%;
296
+ width: 100%;
297
+ height: 100%;
298
+ background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
299
+ transition: all 0.5s ease;
300
+ }
301
+
302
+ .link-button:hover {
303
+ background: rgba(0, 255, 255, 0.2);
304
+ border-color: rgba(0, 255, 255, 0.5);
305
+ transform: translateY(-2px);
306
+ box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
307
+ }
308
+
309
+ .link-button:hover::before {
310
+ left: 100%;
311
+ }
312
+
313
+ .link-button::after {
314
+ content: 'β†’';
315
+ margin-left: 8px;
316
+ opacity: 0.7;
317
+ transition: all 0.3s ease;
318
+ }
319
+
320
+ .link-button:hover::after {
321
+ transform: translateX(3px);
322
+ opacity: 1;
323
+ }
324
+
325
+ .button-group {
326
+ display: flex;
327
+ flex-wrap: wrap;
328
+ gap: 10px;
329
+ margin: 15px 0;
330
+ }
331
+
332
+ .disclaimer {
333
+ color: #00ff99;
334
+ border-left: 3px solid #00ff99;
335
+ padding-left: 15px;
336
+ margin: 20px 0;
337
+ position: relative;
338
+ }
339
+
340
+ .disclaimer::before {
341
+ content: '⚠️';
342
+ position: absolute;
343
+ left: -10px;
344
+ top: 0;
345
+ transform: translateX(-100%);
346
+ animation: pulse 2s ease-in-out infinite;
347
+ }
348
+
349
+ @keyframes pulse {
350
+ 0%, 100% { opacity: 1; }
351
+ 50% { opacity: 0.5; }
352
+ }
353
+
354
+ .badge {
355
+ display: inline-block;
356
+ padding: 5px 10px;
357
+ border-radius: 5px;
358
+ background: rgba(0, 255, 255, 0.1);
359
+ border: 1px solid #00ffff;
360
+ margin: 5px;
361
+ font-size: 0.9em;
362
+ animation: badgePulse 3s ease-in-out infinite;
363
+ }
364
+
365
+ @keyframes badgePulse {
366
+ 0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
367
+ 50% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
368
+ }
369
+
370
+ /* Light mode adjustments */
371
+ @media (prefers-color-scheme: light) {
372
+ .container {
373
+ background: rgba(224, 255, 255, 0.95);
374
+ border-color: rgba(0, 150, 150, 0.3);
375
+ }
376
+
377
+ .model-name, .section-title, .subtitle {
378
+ color: #006666;
379
+ text-shadow: 0 0 5px rgba(0, 200, 200, 0.3);
380
+ }
381
+
382
+ .section {
383
+ background: rgba(200, 250, 255, 0.9);
384
+ border-color: rgba(0, 200, 200, 0.2);
385
+ color: #002b36;
386
+ }
387
+
388
+ .link-card {
389
+ background: rgba(150, 230, 255, 0.95);
390
+ border-color: rgba(0, 150, 150, 0.2);
391
+ }
392
+
393
+ .link-card h3 {
394
+ color: #002b36 !important;
395
+ }
396
+
397
+ .link-button {
398
+ background: rgba(0, 150, 150, 0.1);
399
+ color: #002b36 !important;
400
+ border-color: rgba(0, 150, 150, 0.3);
401
+ }
402
+
403
+ .link-button:hover {
404
+ background: rgba(0, 150, 150, 0.2);
405
+ border-color: rgba(0, 150, 150, 0.5);
406
+ }
407
+
408
+ .disclaimer {
409
+ color: #008080;
410
+ border-color: #008080;
411
+ }
412
+
413
+ .badge {
414
+ border-color: #008080;
415
+ background: rgba(0, 150, 150, 0.1);
416
+ }
417
+ }
418
+ </style>
419
+
420
+ <div class="container">
421
+
422
+ <div class="header">
423
+ <h1 class="model-name">Baptist Christian Bible Expert v2.0 12B</h1>
424
+ <p class="subtitle">Where Biblical Truth Meets Theological Depth</p>
425
+ </div>
426
+
427
+ <div class="section">
428
+ <h2 class="section-title">✝️ Theological Foundation</h2>
429
+ <p>This enhanced version delivers coherent biblical analysis with unprecedented depth:</p>
430
+ <ul>
431
+ <li>πŸ“– <strong>Expanded 4x Training Data</strong> - Incorporating Baptist theological texts and comprehensive exegesis</li>
432
+ <li>⚑ <strong>Optimized Architecture</strong> - Smoother theological reasoning with improved consistency</li>
433
+ <li>πŸ’Ž <strong>Balanced Interpretation</strong> - Maintains Baptist distinctives while reducing doctrinal inconsistencies</li>
434
+ <li>πŸŽ“ <strong>Enhanced Ministry Applications</strong> - Improved sermon preparation and Sunday School lesson generation</li>
435
+ <li>🌹 <strong>Spiritual Depth</strong> - Provides profound biblical insights with practical application</li>
436
+ </ul>
437
+ </div>
438
+
439
+ <div class="section">
440
+ <h2 class="section-title">βš™οΈ Technical Specifications</h2>
441
+ <p><strong>FULL SETTINGS and an optional Pastor character card</strong> <a href="https://huggingface.co/sleepdeprived3/Pastor-Luke-V3" class="link-button">Pastor-Luke-V7</a></p>
442
+ <div class="quant-links">
443
+ <div class="link-card">
444
+ <h3>GGUF</h3>
445
+ <a href="https://huggingface.co/mradermacher/Baptist-Christian-Bible-Expert-v2.0-12B-GGUF" class="link-button">Quants</a>
446
+ </div>
447
+ <div class="link-card">
448
+ <h3>imatrix</h3>
449
+ <a href="https://huggingface.co/mradermacher/Baptist-Christian-Bible-Expert-v2.0-12B-i1-GGUF" class="link-button">Quants</a>
450
+ </div>
451
+ <div class="link-card">
452
+ <h3>EXL2</h3>
453
+ <a href="https://huggingface.co/collections/sleepdeprived3/baptist-christian-bible-expert-v20-12B-exl2-67f8a3b52d488fcb2847c987" class="link-button">Quants</a>
454
+ </div>
455
+ </div>
456
+ </div>
457
+ <div class="section">
458
+ Chat Template: Mistral V3 Tekken
459
+ Recommended deterministic sampler for maximum Biblical accuracy.
460
+ "temperature": 0
461
+ "top_k": 1
462
+ "dry_multiplier": 0.01
463
+ </div>
464
+ <div class="section">
465
+ <h2 class="section-title">πŸ“œ Key Features</h2>
466
+ <ul>
467
+ <li>πŸ•ŠοΈ Answers theological questions from a Southern Baptist perspective (Baptist Faith & Message 2000)</li>
468
+ <li>✝️ Explains Scripture using historical-grammatical interpretation with emphasis on practical application</li>
469
+ <li>🌍 Multilingual support for ministry in 10+ languages (English, Spanish, French, Korean, etc.)</li>
470
+ <li>πŸŽ“ Enhanced capabilities for sermon preparation, Sunday School lessons, and evangelism training</li>
471
+ <li>πŸ’¬ Advanced roleplaying for pastoral counseling and discipleship scenarios</li>
472
+ <li>πŸ“– Specializes in Baptist distinctives: believer's baptism, local church autonomy, priesthood of all believers</li>
473
+ </ul>
474
+ </div>
475
+
476
+ <div class="section">
477
+ <h2 class="section-title">⚠️ Ethical Considerations</h2>
478
+ <p>This model is designed to:</p>
479
+ <ul>
480
+ <li>Maintain strict fidelity to the Baptist Faith & Message 2000</li>
481
+ <li>Promote biblical inerrancy and sufficiency of Scripture</li>
482
+ <li>Support but never replace local church leadership and pastoral counsel</li>
483
+ </ul>
484
+ </div>
485
+
486
+ <div class="section">
487
+ <h2 class="section-title">πŸ“– Performance Notes</h2>
488
+ <ul>
489
+ <li>πŸ”₯ Maintains theological accuracy with improved narrative flow</li>
490
+ <li>πŸ“– Handles complex biblical analysis with improved consistency</li>
491
+ <li>🧠 Excels at long-form theological discussions without losing track of doctrinal threads</li>
492
+ <li>⚑ Noticeably better at following complex exegetical instructions than previous versions</li>
493
+ <li>🎭 Responds to subtle theological nuances with precision</li>
494
+ </ul>
495
+ </div>
496
+
497
+ <div class="section">
498
+ <h2 class="section-title">πŸ§‘β€πŸ”¬ Model Authors</h2>
499
+ <ul>
500
+ <li>sleepdeprived3 (Training Data & Fine-Tuning)</li>
501
+ </ul>
502
+ </div>
503
+
504
+ <script>
505
+ // Simple script to update the date
506
+ document.addEventListener('DOMContentLoaded', function() {
507
+ const dateElement = document.createElement('div');
508
+ dateElement.style.textAlign = 'center';
509
+ dateElement.style.marginTop = '20px';
510
+ dateElement.style.opacity = '0.7';
511
+ dateElement.textContent = 'Last updated: ' + new Date().toLocaleDateString();
512
+ document.querySelector('.container').appendChild(dateElement);
513
+ });
514
+ </script>