sleepdeprived3 commited on
Commit
0f83891
Β·
verified Β·
1 Parent(s): b080414

Upload README.md with huggingface_hub

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