text stringlengths 5 999 | source stringclasses 1
value | intent stringclasses 0
values | length_mode stringclasses 0
values | domain stringclasses 0
values | embedding list |
|---|---|---|---|---|---|
jaki masz zakres widzy do którego roku ? | raw | null | null | null | [
-0.0070953369140625,
0.053955078125,
0.025299072265625,
0.0178680419921875,
0.0034542083740234375,
0.01056671142578125,
-0.058074951171875,
0.0071868896484375,
-0.06439208984375,
-0.0190277099609375,
0.003993988037109375,
-0.05511474609375,
-0.035369873046875,
0.042755126953125,
0.053955... |
jaką wersją chat gpt jesteś ? | raw | null | null | null | [
-0.0127105712890625,
0.01303863525390625,
0.054931640625,
0.0002199411392211914,
-0.0087738037109375,
-0.0059661865234375,
-0.040771484375,
0.01666259765625,
-0.00911712646484375,
-0.0618896484375,
0.017974853515625,
-0.0012607574462890625,
0.0025157928466796875,
0.042724609375,
-0.01594... |
Zapraszamy do nas, jedno dziecko jest jeszcze. Ile dzieci jest u nas? | raw | null | null | null | [
0.0087890625,
0.04998779296875,
-0.01236724853515625,
0.0218505859375,
0.00844573974609375,
0.01555633544921875,
-0.040740966796875,
0.041595458984375,
-0.011444091796875,
-0.084228515625,
-0.0013132095336914062,
-0.053955078125,
0.01702880859375,
-0.0021209716796875,
0.00353622436523437... |
IdentityServer4.Validation.ApiSecretValidator
No API secret found | raw | null | null | null | [
0.0250701904296875,
0.006511688232421875,
0.03204345703125,
-0.00518798828125,
-0.01338958740234375,
-0.039794921875,
-0.03851318359375,
0.0216522216796875,
0.0020294189453125,
-0.02459716796875,
0.0173492431640625,
-0.03448486328125,
-0.00891876220703125,
0.009368896484375,
-0.022048950... |
Czeka mnie rozmowa rekrutacyjna do PepsiCo. Napisz krótko dlaczego chcę pracować w tej firmie. Mam 24 lata, zajmuję się digital marketingiem i jest to dla mnie ogromna szansa na rozwój w międzynarodowej korporacji i międzynarodowym środowisku | raw | null | null | null | [
-0.013763427734375,
0.032470703125,
-0.032073974609375,
0.0386962890625,
0.00710296630859375,
0.051727294921875,
-0.0419921875,
0.056396484375,
-0.025115966796875,
-0.0246734619140625,
0.00861358642578125,
-0.07159423828125,
-0.014251708984375,
0.007175445556640625,
0.028472900390625,
... |
tell me sad estory goku | raw | null | null | null | [
0.027191162109375,
0.0160369873046875,
-0.0347900390625,
0.0304107666015625,
-0.00867462158203125,
-0.040985107421875,
-0.0031337738037109375,
0.03228759765625,
0.01483917236328125,
0.0107269287109375,
0.017669677734375,
0.01560211181640625,
-0.018341064453125,
-0.003643035888671875,
0.0... |
"Przerób poniższy tekst na post na Facebooka. Niech nie będzie za długi i oficjalny. Post ma by(...TRUNCATED) | raw | null | null | null | [-0.003719329833984375,0.037506103515625,-0.0148468017578125,0.0302734375,0.033294677734375,0.036651(...TRUNCATED) |
"Przygotowuję ofertę handlową dla marki PROFI S.A. na LinkedIn. Jestem na slajdzie \"Marketing ka(...TRUNCATED) | raw | null | null | null | [-0.04736328125,-0.005901336669921875,0.0117645263671875,-0.00428009033203125,-0.0211181640625,0.007(...TRUNCATED) |
"Człowiek w poszukiwaniu prawdy o sobie i świecie. Omów zagadnienie na podstawie Katedry Jacka Du(...TRUNCATED) | raw | null | null | null | [0.015869140625,0.049713134765625,-0.016387939453125,0.039886474609375,-0.026947021484375,0.01715087(...TRUNCATED) |
witam | raw | null | null | null | [0.0284576416015625,0.019012451171875,-0.021392822265625,0.0189208984375,-0.017578125,0.001635551452(...TRUNCATED) |
End of preview. Expand in Data Studio
WildChat Asking-mode (PL) — text-embedding-3-small
Polish-language first-turn user prompts from
allenai/WildChat-1M,
filtered to Asking-mode prompts and embedded with OpenAI's
text-embedding-3-small.
What's in here
| Rows | 1,997 |
| Language | Polish (pl) |
| Embedding model | text-embedding-3-small (OpenAI) |
| Embedding dim | 1536 (L2-normalized) |
| Format | single Parquet file, zstd compression |
| License | ODC-BY (inherited from WildChat-1M) |
Schema
| column | type | description |
|---|---|---|
text |
string | The user's first-turn prompt, verbatim. |
source |
string | Provenance tag. Currently raw for every row in this release. Reserved for future revisions that may include hand-annotated subsets. |
intent |
string | null | Reserved for hand-annotated rows. Null in this release. |
length_mode |
string | null | Reserved for hand-annotated rows. Null in this release. |
domain |
string | null | Reserved for hand-annotated rows. Null in this release. |
embedding |
list[float32] (len=1536) | text-embedding-3-small embedding of text. L2-normalized by the model — cosine similarity reduces to a dot product. |
Loading
from datasets import load_dataset
ds = load_dataset("syntropicsignal-ai/wildchat-asking-pl-text-embedding-3-small", split="train")
print(ds[0]["text"])
print(len(ds[0]["embedding"])) # 1536
To stack the embeddings into a numpy matrix for ANN search:
import numpy as np
matrix = np.asarray(ds["embedding"], dtype=np.float32) # (N, 1536)
How it was built
- Source. Filtered
allenai/WildChat-1Mto first-turn prompts in Polish, deduplicated by lowercased text, and length-bounded (≤ 1000 characters per prompt). - Asking-mode filter. Applied a conservative prefix-based
classifier that rejects Doing-mode (content-generation) prompts —
prompts whose first content word is a canonical generative imperative
(
napisz,wygeneruj,stwórz,przetłumacz, etc.). A leading greeting is stripped first, so"Hej, napisz mi…"is still rejected. The taxonomy follows Chatterji et al., "How People Use ChatGPT" (NBER w34255, 2025) — Asking vs. Doing vs. Expressing. The filter is conservative: false negatives (a few Doing-mode prompts slipping through) are tolerated; false positives (rejecting genuine Asking-mode prompts) are minimized. - Embedding. Each surviving prompt embedded once with
text-embedding-3-smallvia the OpenAI Embeddings API.
Intended use
Retrieval, similarity search, classification, and prompt-research workloads where pre-embedded Polish user prompts are useful. The Asking-mode filter makes this corpus particularly suited to representing what users ask assistants — as opposed to what users ask assistants to generate.
Limitations
- Heuristic filter. The Asking-mode classifier is a hand-built prefix list. It will admit some Doing-mode prompts whose imperative is non-canonical, and will reject a small number of Asking-mode prompts that happen to start with a generative-sounding word.
- Single embedding model. Embeddings are tied to OpenAI's
text-embedding-3-small. To use a different embedding space at query time you must re-embed the prompts (thetextcolumn is preserved in full for this purpose). - Domain skew. WildChat-1M reflects ChatGPT usage in 2023–2024; topical distribution and stylistic conventions may differ from later user behavior.
- No PII guarantees beyond upstream. This dataset inherits whatever PII handling the WildChat-1M release applied; review their dataset card before publishing or sharing derivatives.
License
This dataset is released under ODC-BY 1.0, matching the upstream WildChat-1M license. Attribution to AllenAI is required when using this dataset.
Citation
@inproceedings{zhao2024wildchat,
title = {{WildChat}: 1M ChatGPT Interaction Logs in the Wild},
author = {Zhao, Wenting and Ren, Xiang and Hessel, Jack and Cardie, Claire and Choi, Yejin and Deng, Yuntian},
booktitle = {ICLR},
year = {2024}
}
@techreport{chatterji2025chatgpt,
title = {How People Use {ChatGPT}},
author = {Chatterji, Aaron and Cunningham, Tom and Deming, David J. and Hitzig, Zo{\"e} and Ong, Christopher and Shan, Carl Yan and Wadman, Kevin},
number = {w34255},
institution = {National Bureau of Economic Research},
year = {2025}
}
- Downloads last month
- 50