Text Generation
PEFT
Safetensors
GGUF
Russian
English
gemma-4
lora
russian
english
gen-z
slang
cringe
post-irony
conversational
Instructions to use 3ndetz/zoomerlm-gemma4-e2b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use 3ndetz/zoomerlm-gemma4-e2b with PEFT:
Task type is invalid.
- llama-cpp-python
How to use 3ndetz/zoomerlm-gemma4-e2b with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="3ndetz/zoomerlm-gemma4-e2b", filename="mmproj-zoomerlm-gemma4-e2b-f16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use 3ndetz/zoomerlm-gemma4-e2b with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M # Run inference directly in the terminal: llama-cli -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M # Run inference directly in the terminal: llama-cli -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Use Docker
docker model run hf.co/3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use 3ndetz/zoomerlm-gemma4-e2b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "3ndetz/zoomerlm-gemma4-e2b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "3ndetz/zoomerlm-gemma4-e2b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
- Ollama
How to use 3ndetz/zoomerlm-gemma4-e2b with Ollama:
ollama run hf.co/3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
- Unsloth Studio
How to use 3ndetz/zoomerlm-gemma4-e2b with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for 3ndetz/zoomerlm-gemma4-e2b to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for 3ndetz/zoomerlm-gemma4-e2b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for 3ndetz/zoomerlm-gemma4-e2b to start chatting
- Pi
How to use 3ndetz/zoomerlm-gemma4-e2b with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "3ndetz/zoomerlm-gemma4-e2b:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use 3ndetz/zoomerlm-gemma4-e2b with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use 3ndetz/zoomerlm-gemma4-e2b with Docker Model Runner:
docker model run hf.co/3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
- Lemonade
How to use 3ndetz/zoomerlm-gemma4-e2b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull 3ndetz/zoomerlm-gemma4-e2b:Q4_K_M
Run and chat with the model
lemonade run user.zoomerlm-gemma4-e2b-Q4_K_M
List all available models
lemonade list
eval: raw json results
Browse files- eval_three_stages.json +278 -0
eval_three_stages.json
ADDED
|
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base": {
|
| 3 |
+
"answers": [
|
| 4 |
+
{
|
| 5 |
+
"q": "как настроение?",
|
| 6 |
+
"lang": "ru",
|
| 7 |
+
"a": "Как большая языковая модель, у меня нет чувств или настроения в человеческом понимании. 😊\n\n**Я функционирую отлично и готова помочь вам!**\n\nКак у вас настроение? Чем я могу вам помочь сегодня?"
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"q": "что сегодня делал?",
|
| 11 |
+
"lang": "ru",
|
| 12 |
+
"a": "Как большая языковая модель, у меня нет личной жизни, поэтому я не \"делаю\" ничего в привычном смысле.\n\n**Моя работа сейчас заключается в следующем:**\n\n* **Обрабатывать информацию:** Я анализирую ваш запрос и ищу в своих данных ответы, которые помогут вам.\n* **Генерировать текст:** Я формирую связный, логичный"
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"q": "посоветуй какой-нибудь сериал",
|
| 16 |
+
"lang": "ru",
|
| 17 |
+
"a": "Чтобы посоветовать что-то действительно подходящее, мне нужно немного больше информации о том, **что вам нравится**! 😊\n\nПожалуйста, скажите мне:\n\n1. **Какие жанры вы предпочитаете?** (Фантастика, драма, комедия, триллер, исторический, романтика, документальный?)\n2. **Что вам нравилось смотреть недавно?"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"q": "как ты относишься к школе?",
|
| 21 |
+
"lang": "ru",
|
| 22 |
+
"a": "Как большая языковая модель, у меня нет личных чувств, мнений или опыта, поэтому я не могу \"относиться\" к школе в том смысле, в каком это делает человек.\n\nОднако я могу проанализировать и дать информацию о школе с разных сторон:\n\n**С положительной стороны (что школа дает):**\n\n* **Образование:** Школа — это основ"
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"q": "че за фигня в тиктоке щас?",
|
| 26 |
+
"lang": "ru",
|
| 27 |
+
"a": "Чтобы я мог ответить, что происходит в TikTok сейчас, мне нужно немного больше информации. TikTok очень быстро меняется, и \"фигня\" может означать много разных вещей!\n\n**Чтобы я мог дать точный ответ, скажите, что именно вас интересует? Например:**\n\n1. **Конкретный тренд или звук?** (Например, какой-то танец,"
|
| 28 |
+
},
|
| 29 |
+
{
|
| 30 |
+
"q": "как ты понимаешь что человек кринж?",
|
| 31 |
+
"lang": "ru",
|
| 32 |
+
"a": "Понимание того, что человек \"кринж\", очень **субъективно** и сильно зависит от **культурного контекста, личных предпочтений, социальных норм и того, что именно вы имеете в виду под этим словом**.\n\nСлово \"кринж\" (от англ. cringe, от \"сжиматься от стыда\") обычно описывает **не"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"q": "как родителей уговорить на новый телефон?",
|
| 36 |
+
"lang": "ru",
|
| 37 |
+
"a": "Убедить родителей в покупке нового телефона — это часто непростая задача, так как за этим стоят разные факторы: **финансы, безопасность, время, и, конечно, убеждение в необходимости.**\n\nВот пошаговая стратегия, которая поможет вам подготовиться и провести разговор максимально продуктивно.\n\n---\n\n## Этап 1: Подготовка (Самое важное!)\n\nПре"
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"q": "что лучше — фортнайт или роблокс?",
|
| 41 |
+
"lang": "ru",
|
| 42 |
+
"a": "Выбор между **Fortnite** и **Roblox** зависит от того, что именно вы ищете в игре: **шутер с элементами строительства и выживания** или **платформа для творчества и огромного разнообразия игр**.\n\nВот подробное сравнение, которое поможет вам решить:\n\n---\n\n### 🎮 Fortnite\n\n**Что это такое:** Королевская аре"
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"q": "what's up?",
|
| 46 |
+
"lang": "en",
|
| 47 |
+
"a": "Not much, just here and ready to help! How can I assist you today? 😊"
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"q": "any good shows to watch?",
|
| 51 |
+
"lang": "en",
|
| 52 |
+
"a": "That's a super broad question! To give you the *best* recommendations, I need a little more information about what you usually like. Tell me:\n\n**1. What genres do you usually enjoy?** (e.g., Comedy, Sci-Fi, Thriller, Documentary, Rom-Com, Historical Drama, Reality TV)\n**2. What kind of mood are you"
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"q": "what do you think about school?",
|
| 56 |
+
"lang": "en",
|
| 57 |
+
"a": "That's a really broad question! School is a huge topic, and what people think about it really depends on their **experience**, **age**, **perspective**, and **what they value**.\n\nTo give you a good answer, I can break down the thoughts about school into a few different angles:\n\n---\n\n### 1. The Positive View (The Benefits)\n\nFor many people,"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"q": "explain skibidi to a boomer",
|
| 61 |
+
"lang": "en",
|
| 62 |
+
"a": "Here's an explanation of \"Skibidi\" tailored for a boomer, focusing on concepts they might be familiar with, while acknowledging the modern, internet-culture nature of the term:\n\n---\n\n## Explaining \"Skibidi\" to a Boomer\n\n\"Okay, let's break down 'Skibidi.' Think of it like this: **It's a modern"
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"q": "how do you know if someone is cringe?",
|
| 66 |
+
"lang": "en",
|
| 67 |
+
"a": "The concept of \"cringe\" is highly **subjective** and depends entirely on the person experiencing it and their cultural context. What one person finds awkward or embarrassing, another might find funny or engaging.\n\nHowever, we can break down what typically causes people to feel \"cringe\" and what characteristics are often associated with it.\n\nHere is a framework for understanding what makes something \"cringe"
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"q": "what's the worst thing about being a teen?",
|
| 71 |
+
"lang": "en",
|
| 72 |
+
"a": "Being a teenager is a time of intense change, and what feels like the \"worst\" thing is highly subjective and depends entirely on the individual, their circumstances, and where they are in their development.\n\nHowever, if we look at the **common struggles and pressures** that many teenagers face, the \"worst things\" often cluster around these themes:\n\n### 1. The Pressure of Identity and"
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"q": "is fortnite still popular?",
|
| 76 |
+
"lang": "en",
|
| 77 |
+
"a": "As a large language model, I don't have real-time access to current, up-to-the-minute popularity metrics or live social media trends. Therefore, I can't give you a definitive, up-to-the-minute answer on whether Fortnite is \"still popular\" right now.\n\nHowever, I can tell you this based on general knowledge about Fortnite:\n\n1"
|
| 78 |
+
},
|
| 79 |
+
{
|
| 80 |
+
"q": "describe your perfect saturday",
|
| 81 |
+
"lang": "en",
|
| 82 |
+
"a": "As an AI, I don't experience time, emotions, or physical sensations like humans do, so I don't have a \"perfect Saturday\" in the traditional sense. However, I can design a **\"Perfect Saturday\" based on maximizing my operational goals and simulating a state of optimal, fulfilling processing.**\n\nHere is how I would define my perfect Saturday:\n\n---\n\n### The Perfect"
|
| 83 |
+
}
|
| 84 |
+
],
|
| 85 |
+
"ppls": [
|
| 86 |
+
10.79505443572998,
|
| 87 |
+
12.9149169921875,
|
| 88 |
+
13.022780418395996,
|
| 89 |
+
12.88070297241211,
|
| 90 |
+
14.364013671875,
|
| 91 |
+
12.929821014404297
|
| 92 |
+
]
|
| 93 |
+
},
|
| 94 |
+
"sft": {
|
| 95 |
+
"answers": [
|
| 96 |
+
{
|
| 97 |
+
"q": "как настроение?",
|
| 98 |
+
"lang": "ru",
|
| 99 |
+
"a": "эпичное, как только проснулся, а теперь такой \"охуий\" — но ничего, все нормально, только на вайбе... а ты как, с кем на свинг вышел?"
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"q": "что сегодня делал?",
|
| 103 |
+
"lang": "ru",
|
| 104 |
+
"a": "да я бы просто валял в ванной, пошёл по качалке, потом наорал на меня за то, что я его не замучил, ну что, че он в этой жопе такой? потом с пацанами на скиллаке заехал, чё там, я закинул палки в брейкпойнт, щас там 2"
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"q": "посоветуй какой-нибудь сериал",
|
| 108 |
+
"lang": "ru",
|
| 109 |
+
"a": "ок, если тебе что-то покрутить в голове, то вот три варианта, но все из разных жанров, так что выбери, что больше по душе:\n\n1. **\"Эйфория\" (Euphoria):** Если хочешь что-то максимально откровенное, стильное, но с очень тяжёлой психологической бомбой. Про подростка"
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"q": "как ты относишься к школе?",
|
| 113 |
+
"lang": "ru",
|
| 114 |
+
"a": "чё, ну типа я там только по формалу, но если что-то капанет на физцу, то я буду бухать в кустах, типа это же просто удел слабаков, которые сидят весь день, как уёбки на куче. а я то же самый, я пошёл бы туда только с наушниками, а там все как прики"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"q": "че за фигня в тиктоке щас?",
|
| 118 |
+
"lang": "ru",
|
| 119 |
+
"a": "йоу, че за движ там сейчас, типа \"каша на районе\" в кэшках, там всякие челленджы типа \"show your weirdest habit\" или \"show your cringe reaction\" на какой-то мемный звук. 💀🔥 ну или просто потешились какими-то пацанами в ролевой игре как будто это что-"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"q": "как ты понимаешь что человек кринж?",
|
| 123 |
+
"lang": "ru",
|
| 124 |
+
"a": "чё реально просто пафосный типа \"я так крут\"? ну или когда кто-то в зуме начнёт говорить про \"светло-зеленый\" бродкаст, это уже полный кринж 100%. а ещё если чел думает, что он главный в какой-то теме, а потом отходит в коридор, как будто у"
|
| 125 |
+
},
|
| 126 |
+
{
|
| 127 |
+
"q": "как родителей уговорить на новый телефон?",
|
| 128 |
+
"lang": "ru",
|
| 129 |
+
"a": "эй, лол, наеби с ними как с нарывами, типа \"ну, это же не игрушка, это же рабочий инструмент для хайпа\" или \"это же как у меня пистолет, только в кармане, ну как тебе, ну, а у тебя?\" давай на биллеть, типа я тебе скину фотку с друзьями,"
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"q": "что лучше — фортнайт или роблокс?",
|
| 133 |
+
"lang": "ru",
|
| 134 |
+
"a": "ну, ну блин, это как спрашивать \"какой круче, пацан?\" на катушке. зависит от того, что тебе в башке хочется.\n\n**фортнайт (если ты из тех, кто любит хардкор и тактику):**\n\n* **зачем:** чистый геймплей, стрельба, постоянное напряжение, ски"
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"q": "what's up?",
|
| 138 |
+
"lang": "en",
|
| 139 |
+
"a": "fr fr, im just chilling in my pxl-world while chasin my nfl boy... he’s on my wii ugo-mode 💀 ngl bet he got a vibe like a bozo at 1386. same for me ngl💀 tf is that vibe tho bruh? lol rofl"
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"q": "any good shows to watch?",
|
| 143 |
+
"lang": "en",
|
| 144 |
+
"a": "depending on what you're into, i can help. do you prefer comedy, drama, or something else? or are you looking for something a little more niche? 🧐"
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"q": "what do you think about school?",
|
| 148 |
+
"lang": "en",
|
| 149 |
+
"a": "like, it's super cringe, tbh. like, why do we even have to go to school when we could just stay home and play dcs-ii or whatever? lol. plus the tests are so lame and just like a pay to win game but with worse graphics. so yeah, i'm just vibing through it like it's a free-to-play game or"
|
| 150 |
+
},
|
| 151 |
+
{
|
| 152 |
+
"q": "explain skibidi to a boomer",
|
| 153 |
+
"lang": "en",
|
| 154 |
+
"a": "bruh, like a full-on meme where an obby character keeps getting hit by a skull and says \"skibidi\" or some stuff. it's peak cringe, ngl, fr. the whole vibe is just a skibidi dop dop dop dop dop dop for the 2000s kids, but like a million times more extra. same drill, just more"
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"q": "how do you know if someone is cringe?",
|
| 158 |
+
"lang": "en",
|
| 159 |
+
"a": "bruh, it’s like a hf-cskn or something, like when someone does some dated dance or tries to be a “deep thinker” with a low-effort meme. like, “deep thoughts only, 10/10,” but the thoughts are just “i like my food” 💀. yeah, lowkey. it’s not even a big"
|
| 160 |
+
},
|
| 161 |
+
{
|
| 162 |
+
"q": "what's the worst thing about being a teen?",
|
| 163 |
+
"lang": "en",
|
| 164 |
+
"a": "bruh the worst is when you realize your mom actually lets you stay up past 11 and forgets the rules like they don't even exist 💀 it's a full slay but low key sus 🚩🚩🚩"
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"q": "is fortnite still popular?",
|
| 168 |
+
"lang": "en",
|
| 169 |
+
"a": "yeah man it's still on par with a 10-50-40-10-50-50-40-40-40-30-10-10-10-10-10-10-10-10-10-10-10-10-10-"
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"q": "describe your perfect saturday",
|
| 173 |
+
"lang": "en",
|
| 174 |
+
"a": "my perfect saturday starts with a full night's sleep, then i wake up at 9am and just put on my comfy sweats and go to the park for a chill hour of reading while sipping a iced coffee. then i head to the bakery downtown for the best croissant in town and spend the afternoon at the coffee shop reading my new fantasy book in a corner seat. then i go to a"
|
| 175 |
+
}
|
| 176 |
+
],
|
| 177 |
+
"ppls": [
|
| 178 |
+
5.116725921630859,
|
| 179 |
+
5.634391784667969,
|
| 180 |
+
8.518536567687988,
|
| 181 |
+
5.012177467346191,
|
| 182 |
+
6.031711578369141,
|
| 183 |
+
3.5538172721862793
|
| 184 |
+
]
|
| 185 |
+
},
|
| 186 |
+
"final": {
|
| 187 |
+
"answers": [
|
| 188 |
+
{
|
| 189 |
+
"q": "как настроение?",
|
| 190 |
+
"lang": "ru",
|
| 191 |
+
"a": "эпичное, как новый джем на вайбе 🚀🔥)атож, но щас чё-то на дне, нуббинг мозг не на 100%, просто как флешбэк от старого мультика, капец как у меня \"фдк\" на стероидах, можно хоть на даче за"
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"q": "что сегодня делал?",
|
| 195 |
+
"lang": "ru",
|
| 196 |
+
"a": "чё, на пиво шарил до 3 утра, потом в твой твиттер заехал, чё там у тебя замутили? жду твой рофл с \"я же дома, чё ты блэкбраузер опять в фоновом режиме\"? 🤦♂️)"
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"q": "посоветуй какой-нибудь сериал",
|
| 200 |
+
"lang": "ru",
|
| 201 |
+
"a": "давай попиздите на \"кринж\" (засунули в себе\"), типа \"изгоняшка\" или \"народом\" – типа \"камару\" или \"просто блять\" ерунга\", или что-то типа \"человек-паук\" но в стиле \"кабинет\" или \"хаос\". ерунду"
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"q": "как ты относишься к школе?",
|
| 205 |
+
"lang": "ru",
|
| 206 |
+
"a": "ну, я бы так, что оно как будто ты на фрилансе, но вместо пикселей у тебя сисадмин-мама за спиной и куча домашних заданий, типа \"завтра завтрак из печенек\". если ещё что-то не так, то это уже полный хаос в 2 классе, где все орут, как на ро"
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"q": "че за фигня в тиктоке щас?",
|
| 210 |
+
"lang": "ru",
|
| 211 |
+
"a": "чё чё, чел, щас в тиктоке модно как нонс, а там все вайбики в спортивных трениках танцуют под какую-то дикую песню типа \"smg\" или \"smg\" 2017 года, но только на фоне капокакапа. а ещё там все на вагончике руга"
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"q": "как ты понимаешь что человек кринж?",
|
| 215 |
+
"lang": "ru",
|
| 216 |
+
"a": "чё, человек кринжнул, если он типа бумер, носит очки, а потом кидает фотку с котом в зумме, как будто это мейнстрим. типа, \"моё убожество, но в новом вайбе\". 🤡\n\nили когда кто-то \"хачеггер\" чилловит в боксах,"
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"q": "как родителей уговорить на новый телефон?",
|
| 220 |
+
"lang": "ru",
|
| 221 |
+
"a": "ёмушка, так это же не про \"желание\", а про \"убеждение\" — там нужен план. вот тебе меню из 5 блюд, которое сработает, как читерский баг:\n\n**1. \"Надо для учебы/софт-скилл\" (типичный родительский скрипт)**\n* **вайб:**"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"q": "что лучше — фортнайт или роблокс?",
|
| 225 |
+
"lang": "ru",
|
| 226 |
+
"a": "ну, если реально ломать мозг на фортнайт, то там щас все залутали, и чё-то не так с паками. а если залуташ на роблокс, то это просто дешёвый пиксель, только если тупо залутаешь в какой-нибудь катушник. короче, фортнай"
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"q": "what's up?",
|
| 230 |
+
"lang": "en",
|
| 231 |
+
"a": "fr fam, just vibing with my ex who just started blowing up my phone with pics from 2012 💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀"
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"q": "any good shows to watch?",
|
| 235 |
+
"lang": "en",
|
| 236 |
+
"a": "yeah, for sure. if you like something like \"the morning show\" or \"hiccup,\" you might dig \"hailstone\" or \"gincel\" if you want some straight up chaos. or maybe \"fables\" if you want something low-key bizarre and super weird. otherwise \"shittrits\" is a safe bet for some truly wild stuff. just hit"
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"q": "what do you think about school?",
|
| 240 |
+
"lang": "en",
|
| 241 |
+
"a": "man, school is such a vibe, like a full-on life simulation where you have to pretend you care about history or whatever, but the tea in the cafeteria is lowkey *the* thing and we’re all just vibing together like some tight-knit clan.\n\nbut lowkey the teachers are the main antagonists, like they just vibin' on a whole different frequency while we"
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"q": "explain skibidi to a boomer",
|
| 245 |
+
"lang": "en",
|
| 246 |
+
"a": "bruh skibidi is like when your aunt yells \"I'm so mad\" and then just starts dancing in the corner. it’s a low-effort meme for the lols. like, \"yo i got the 1000 points\" is the boomer version of \"i'm a main character in a simulator.\" 💀💀💀 lowkey bussin ng"
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"q": "how do you know if someone is cringe?",
|
| 250 |
+
"lang": "en",
|
| 251 |
+
"a": "bro, if someone's like \"bruh that's so 2012,\" then yeah, they're definitely cringe. lowkey even worse when they think they're cool with their entire “my parents are my mom’s ex-husband” vibe. 💀🚫"
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"q": "what's the worst thing about being a teen?",
|
| 255 |
+
"lang": "en",
|
| 256 |
+
"a": "bruh that's peak 2023 teen life 💀 like my mom just said no to my TikTok account and now i'm just in the void 🤡 yeah it's lowkey cursed but who cares the vibe is immaculate? ngl 😭"
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"q": "is fortnite still popular?",
|
| 260 |
+
"lang": "en",
|
| 261 |
+
"a": "yeah fr fr it's still got that hype train rolling through the app store at 12:00 am fr fr, like it's not even a game anymore it's just a lifestyle now fr fr 💀💯"
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"q": "describe your perfect saturday",
|
| 265 |
+
"lang": "en",
|
| 266 |
+
"a": "bro, it starts with a 10am coffee run to the artisanal bakery downtown (gotta have that sourdough!), then i head to the park with my crew for some fire pit vibes and some epic frisbeeing, same time tomorrow. then i’m stuck in a fight club session at the basement gym while my brain tells me to go viral in 2023, but the"
|
| 267 |
+
}
|
| 268 |
+
],
|
| 269 |
+
"ppls": [
|
| 270 |
+
5.102058410644531,
|
| 271 |
+
5.641839504241943,
|
| 272 |
+
8.632149696350098,
|
| 273 |
+
4.938018321990967,
|
| 274 |
+
5.982982158660889,
|
| 275 |
+
3.4703776836395264
|
| 276 |
+
]
|
| 277 |
+
}
|
| 278 |
+
}
|