sleepdeprived3 commited on
Commit
c1ee2d7
Β·
verified Β·
1 Parent(s): 436f3e0

Upload README.md with huggingface_hub

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