Fizzarolli commited on
Commit
d0088b5
·
verified ·
1 Parent(s): 67d82c8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3.3
3
+ language:
4
+ - en
5
+ - zh
6
+ base_model:
7
+ - meta-llama/Llama-3.3-70B-Instruct
8
+ library_name: transformers
9
+ tags:
10
+ - axolotl
11
+ - roleplay
12
+ - conversational
13
+ - chat
14
+ ---
15
+
16
+ <style>
17
+ main {
18
+ --creep-bg: #0f0f0f;
19
+ --blood-rust: #5e2e28;
20
+ --faded-white: #e8e8e8;
21
+ background: var(--creep-bg);
22
+ border-radius: 10px;
23
+ }
24
+ main, details {
25
+ display: flex;
26
+ flex-direction: column;
27
+ align-items: center;
28
+ padding: 15px;
29
+ overflow-x: scroll;
30
+ scrollbar-width: none;
31
+ }
32
+ .warning-box {
33
+ background: #2d1a1a;
34
+ border: 1px solid var(--blood-rust);
35
+ padding: 15px;
36
+ margin: 20px 0;
37
+ position: relative;
38
+ overflow: hidden;
39
+ }
40
+ .warning-box::before {
41
+ content: '';
42
+ position: absolute;
43
+ top: 0;
44
+ left: -10%;
45
+ width: 120%;
46
+ height: 100%;
47
+ background: linear-gradient(90deg, transparent 0%, #ff000020 50%, transparent 100%);
48
+ animation: scan 4s infinite linear;
49
+ }
50
+ .content-block {
51
+ background: #1a1a1a;
52
+ border: 1px solid #333;
53
+ border-radius: 4px;
54
+ padding: 20px;
55
+ margin: 15px 0;
56
+ box-shadow: 0 2px 8px rgba(0,0,0,0.3);
57
+ position: relative;
58
+ }
59
+ code {
60
+ background: #000;
61
+ color: #f8f8f8;
62
+ padding: 4px 6px;
63
+ border-radius: 3px;
64
+ font-family: monospace;
65
+ border: 1px solid #333;
66
+ }
67
+ .spoiler-text {
68
+ background: linear-gradient(45deg, #ff3b3b, #ff6b6b);
69
+ -webkit-background-clip: text;
70
+ color: transparent;
71
+ text-shadow: 0 0 12px rgba(255,59,59,0.5);
72
+ animation: glitch 1s infinite steps(2);
73
+ }
74
+ img {
75
+ max-width: min(90vw, 400px);
76
+ border-radius: 6px;
77
+ filter: brightness(0.95) contrast(1.1);
78
+ }
79
+ @media (max-width: 768px) {
80
+ main {
81
+ padding: 10px;
82
+ }
83
+ .content-block {
84
+ padding: 15px;
85
+ margin: 10px 0;
86
+ }
87
+ details[open] {
88
+ padding-bottom: 20px;
89
+ }
90
+ }
91
+ @keyframes glitch {
92
+ 0% { transform: translateX(0); }
93
+ 25% { transform: translateX(-1px); }
94
+ 50% { transform: translateX(1px); }
95
+ 75% { transform: translateX(-1px); }
96
+ 100% { transform: translateX(0); }
97
+ }
98
+ @keyframes scan {
99
+ 0% { transform: translateX(-20%); }
100
+ 100% { transform: translateX(120%); }
101
+ }
102
+ </style>
103
+
104
+ <main>
105
+ <img src="Playtime_Logo.webp" alt="Playtime Co. logo" style="transform: rotate(-1deg); box-shadow: 0 4px 20px rgba(0,0,0,0.4);">
106
+
107
+ <div style="font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; max-width: 800px; margin: 0 auto; color: var(--faded-white);">
108
+
109
+ <section style="margin-bottom: 30px;">
110
+ <p style="font-size: 1.1rem; background: #1a1a1a; padding: 20px; border-radius: 6px; border: 1px solid #333; position: relative;">
111
+ <span style="font-weight: 600; color: #d44d4d;">Us here at Playtime Co.</span> are excited to welcome you to our QA staff! As a signatory of the Employee Confidentiality Agreement, you are required to keep all information regarding the company and our research confidential.
112
+ </p>
113
+
114
+ <p style="font-style: italic; color: #888; text-align: center; margin: 25px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.5);">
115
+ With that out of the way...
116
+ </p>
117
+ </section>
118
+
119
+ <details>
120
+ <summary style="font-size: 1.6rem; cursor: pointer; padding: 15px; background: #2d1a1a; color: white; border-radius: 4px; border: 1px solid #442222; transition: 0.2s;">
121
+ <span class="spoiler-text">A̶͇͊r̵͎̭͗͛e̶̯̘̋ ̵̤͖̄̕y̶̩̎o̵̡̿u̴̙̅͂ ̵̖̋r̷̮͖̓ě̵̪̹̈́a̸̠̅d̵͖̖̔̋ẙ̷͙̃ ̷̮͖̋̈́t̴͉̅́ȍ̴̹̞ ̵̖̜̈́p̵͕̑̀ľ̵̥̓ȁ̷͔̩̇y̷̞͊̿ ̸͍̺̀͝w̶͙͈̑i̷̡͗̾t̸͎͒̐ḩ̸̳̓ ̴̮̺̇ȗ̴̢͈̉ş̷͖̔̒?̵̝̺́</span>
122
+ </summary>
123
+
124
+ <div style="margin-top: 25px;">
125
+ <h1 style="color: #d44d4d; border-bottom: 2px solid #442222; padding-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);">Welcome to the Bigger Bodies Initiative</h1>
126
+
127
+ <div style="text-align: center; margin: 25px 0;">
128
+ <div style="position: relative; width: 100%; max-width: 500px; margin: 0 auto; border: 3px solid #442222; background: #1a1a1a; padding: 40px 20px; text-align: center; overflow: hidden;">
129
+ <div style="position: relative; z-index: 2; font-family: monospace; font-size: 1.5rem; color: #d44d4d; text-transform: uppercase; letter-spacing: 3px; font-weight: bold;">
130
+ [IMAGE INACCESSIBLE]
131
+ </div>
132
+ <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(212, 77, 77, 0.05); pointer-events: none; z-index: 1;"></div>
133
+ <div style="position: absolute; top: 0; left: 0; width: 20%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212, 77, 77, 0.2), transparent); animation: scan 2s linear infinite; pointer-events: none; z-index: 1;"></div>
134
+ <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><rect width="1" height="1" fill="rgba(212,77,77,0.1)"/></svg>'); pointer-events: none; z-index: 1;"></div>
135
+ <p style="margin-top: 15px; font-style: italic; color: #888; font-size: 0.9rem; animation: glitch 0.3s infinite;">Error code: 70B-EXP-REDACTED</p>
136
+ </div>
137
+ </div>
138
+
139
+ <h2 style="color: #b33d3d; margin-top: 0; text-transform: uppercase; letter-spacing: 2px;">Experiment 70B</h2>
140
+
141
+ <div class="content-block">
142
+ <h3 style="color: #d44d4d; margin-top: 0;">Usecases</h3>
143
+ <p>
144
+ This model's primary directive <span style="font-family: monospace; color: #ff6666;">[GLITCH]_</span>ROLEPLAY-ENHANCEMENT<span style="font-family: monospace; color: #ff6666;">[/CORRUPTED]</span> was engineered for adaptive persona emulation across age demographics, though recent iterations show <span style="text-decoration: line-through; opacity: 0.7;">concerning</span> remarkable bleed-through from corrupted memory sectors. While optimized for Playtime Playground™ narrative scaffolding, researchers should note its... <i style="color: #d44d4d; animation: glitch 0.3s infinite;">enthusiastic</i> adoption of assigned roles. Containment protocols advised during character initialization sequences.
145
+ </p>
146
+
147
+ <h3 style="color: #d44d4d;">Supported Languages</h3>
148
+ <ul style="list-style-type: '▸ '; padding-left: 25px;">
149
+ <li style="padding: 5px 0;">Native-quality English</li>
150
+ <li style="padding: 5px 0;">Mediocre Chinese (further research needed)</li>
151
+ </ul>
152
+ </div>
153
+
154
+ <div class="content-block">
155
+ <h3 style="color: #d44d4d; margin-top: 0;">Usage (chat template)</h3>
156
+ <pre style="background: #000; color: #f8f8f8; padding: 15px; border-radius: 4px; border: 1px solid #333; overflow-x: auto; white-space: pre-wrap; word-break: break-word;">
157
+ Llama 3.3</pre>
158
+ </div>
159
+
160
+ <!-- Testing logs would go here if we had any -->
161
+
162
+ <div class="warning-box">
163
+ <h4 style="color: #ff4d4d; margin: 0 0 10px 0;">⚠️ WARNING</h4>
164
+ <p style="margin: 0;">While Experiment 70B has shown exceptional performance, researchers must maintain safety protocols. Standard containment procedures apply.</p>
165
+ </div>
166
+ </div>
167
+ </details>
168
+
169
+ <details style="margin-top: 20px;">
170
+ <summary style="font-weight: 600; color: #888; cursor: pointer;">Disclaimers</summary>
171
+ <div style="background: #1a1a1a; padding: 15px; margin-top: 10px; border-radius: 4px; border: 1px solid #333;">
172
+ Playtime Co., Poppy Playtime, and all related properties are trademarks of Mob Entertainment LLC. Not affiliated with or endorsed by Mob Entertainment.
173
+ </div>
174
+ </details>
175
+
176
+ <div style="display: flex; justify-content: center;">
177
+ <a href="https://huggingface.co/allura-org/Bigger-Body-70b/blob/main/non-lore-README.md" style="font-weight: 600; color: #888; background: #1a1a1a; padding: 15px; margin-top: 10px; border-radius: 4px; border: 1px solid #333; text-decoration: none; text-align: center;">Go to regular model card</a>
178
+ </div>
179
+
180
+ </div>
181
+ </main>