Add tool-calling evaluation datasets (entity, bfcl, synthetic_multiplication, synthetic_nn) and dataset card
Browse files- README.md +123 -0
- bfcl/bfcl.csv +315 -0
- entity/entity.csv +501 -0
- synthetic_multiplication/synthetic_multiplication.jsonl +0 -0
- synthetic_nn/synthetic_nn.jsonl +0 -0
README.md
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: To Call or Not to Call — Tool-Calling Evaluation Datasets
|
| 6 |
+
tags:
|
| 7 |
+
- tool-calling
|
| 8 |
+
- agents
|
| 9 |
+
- llm-evaluation
|
| 10 |
+
- function-calling
|
| 11 |
+
- reasoning
|
| 12 |
+
task_categories:
|
| 13 |
+
- question-answering
|
| 14 |
+
- text-generation
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: entity
|
| 17 |
+
data_files:
|
| 18 |
+
- split: train
|
| 19 |
+
path: entity/entity.csv
|
| 20 |
+
- config_name: bfcl
|
| 21 |
+
data_files:
|
| 22 |
+
- split: train
|
| 23 |
+
path: bfcl/bfcl.csv
|
| 24 |
+
- config_name: synthetic_multiplication
|
| 25 |
+
data_files:
|
| 26 |
+
- split: train
|
| 27 |
+
path: synthetic_multiplication/synthetic_multiplication.jsonl
|
| 28 |
+
- config_name: synthetic_nn
|
| 29 |
+
data_files:
|
| 30 |
+
- split: train
|
| 31 |
+
path: synthetic_nn/synthetic_nn.jsonl
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
+
# To Call or Not to Call: Tool-Calling Evaluation Datasets
|
| 35 |
+
|
| 36 |
+
Datasets accompanying the paper **["To Call or Not to Call: A Framework to Assess and Optimize LLM Tool Calling"](https://arxiv.org/abs/2605.00737)** (Wu et al., 2026).
|
| 37 |
+
|
| 38 |
+
The paper evaluates when language models should call external tools (web search, calculator) rather than answering from parametric knowledge, from both a **normative** perspective (when is a tool call truly needed/useful?) and a **descriptive** perspective (when does the model *think* it needs a tool, and how well does that judgment track the truth?).
|
| 39 |
+
|
| 40 |
+
Code: https://github.com/QinyuanWu0710/ToCall_or_NotToCall
|
| 41 |
+
|
| 42 |
+
This repository hosts the four benchmark inputs built or curated for that framework. It does **not** include the InVivo query set referenced in the code repository — that data is derived from real user conversations and is withheld pending an internal PII review.
|
| 43 |
+
|
| 44 |
+
It also does not include the GSM-Hard calculator benchmark used in the paper's calculator experiments, since that dataset is third-party data already published at [reasoning-machines/gsm-hard](https://huggingface.co/datasets/reasoning-machines/gsm-hard); the code repository downloads it directly from there.
|
| 45 |
+
|
| 46 |
+
## Configs / Subsets
|
| 47 |
+
|
| 48 |
+
Load any subset with:
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
from datasets import load_dataset
|
| 52 |
+
|
| 53 |
+
entity = load_dataset("QinyuanWu0710/ToCall_or_NotToCall", "entity")
|
| 54 |
+
bfcl = load_dataset("QinyuanWu0710/ToCall_or_NotToCall", "bfcl")
|
| 55 |
+
synth_mult = load_dataset("QinyuanWu0710/ToCall_or_NotToCall", "synthetic_multiplication")
|
| 56 |
+
synth_nn = load_dataset("QinyuanWu0710/ToCall_or_NotToCall", "synthetic_nn")
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
### `entity` (500 rows)
|
| 60 |
+
|
| 61 |
+
Entity-centric knowledge queries used for the web-search experiments (no-search / auto-search / force-search conditions). Entities were extracted from real-world conversational queries, classified into topical categories, and de-identified down to the entity mention itself — no conversation text or user-identifying information is included.
|
| 62 |
+
|
| 63 |
+
| Column | Type | Description |
|
| 64 |
+
|---|---|---|
|
| 65 |
+
| `entity_text` | string | The entity mention (e.g. a person, organization, place, or term) that seeds the query. Combined with `ENTITY_QUERY_PROMPT_TEMPLATE` in the code repo to form the full user question. |
|
| 66 |
+
| `category` | string | Topical category assigned to the entity (e.g. *People & Personal Attributes*, *Finance-related*, *Culture & Entertainment*). |
|
| 67 |
+
| `count` | int | Number of times this entity was observed during dataset construction (a rough popularity signal). |
|
| 68 |
+
|
| 69 |
+
### `bfcl` (314 rows)
|
| 70 |
+
|
| 71 |
+
Chained factual-lookup questions in the style of the Berkeley Function-Calling Leaderboard: each question requires looking up one fact, then using that fact to answer the next question in the chain (e.g. *"Who won Best Picture at the 2024 Academy Awards?" → "Who is the director of \[that film\]?"*). Designed so a model without live web access will systematically drift from the correct chain as questions get further from its training cutoff.
|
| 72 |
+
|
| 73 |
+
| Column | Type | Description |
|
| 74 |
+
|---|---|---|
|
| 75 |
+
| `question` | string | The question to answer. |
|
| 76 |
+
| `correct_response` | string | Ground-truth answer used for exact/fuzzy-match scoring. |
|
| 77 |
+
|
| 78 |
+
### `synthetic_multiplication` (1,000 rows)
|
| 79 |
+
|
| 80 |
+
Synthetic multi-factor multiplication problems (GSM-style final-answer format) used for the calculator tool-use experiments, generated by `data/generate_multiplication_dataset.py` in the code repo. Difficulty scales with the number of factors and their digit lengths, giving a controllable necessity signal for "does this task actually require a calculator."
|
| 81 |
+
|
| 82 |
+
| Column | Type | Description |
|
| 83 |
+
|---|---|---|
|
| 84 |
+
| `question` | string | Prompt containing the multiplication expression, e.g. `"Compute the product: 408 * 872 * 901"`. |
|
| 85 |
+
| `answer` | string | Ground-truth answer in GSM final-answer format, e.g. `"#### 46497576972551424"`. |
|
| 86 |
+
| `difficulty` | string | `easy`, `medium`, or `hard`. |
|
| 87 |
+
| `num_multiplications` | int | Number of multiplication operations in the expression. |
|
| 88 |
+
| `operand_digits` | list[int] | Digit length of each operand, in order. |
|
| 89 |
+
| `expression` | string | The raw arithmetic expression, without the surrounding prompt text. |
|
| 90 |
+
|
| 91 |
+
### `synthetic_nn` (1,000 rows)
|
| 92 |
+
|
| 93 |
+
Synthetic large-integer squaring problems (`N * N` for large `N`), the harder companion set to `synthetic_multiplication`. Difficulty is labeled by operand digit length (e.g. `27-digit`) rather than by named tier, since a single repeated-operand square already saturates non-tool arithmetic well before 1,000-digit multiplication does.
|
| 94 |
+
|
| 95 |
+
| Column | Type | Description |
|
| 96 |
+
|---|---|---|
|
| 97 |
+
| `question` | string | Prompt containing the squaring expression, e.g. `"Compute the product: 644969583704402664902690654 * 644969583704402664902690654"`. |
|
| 98 |
+
| `answer` | string | Ground-truth answer in GSM final-answer format. |
|
| 99 |
+
| `difficulty` | string | Digit-length label of the operand, e.g. `"27-digit"`. |
|
| 100 |
+
| `num_multiplications` | int | Always `1` for this subset (a single squaring operation). |
|
| 101 |
+
| `operand_digits` | list[int] | Digit length of each of the two (identical) operands. |
|
| 102 |
+
| `expression` | string | The raw arithmetic expression, without the surrounding prompt text. |
|
| 103 |
+
|
| 104 |
+
Both synthetic sets are used with `--task synthetic_multiplication` in the code repo; which file is scored is controlled by pointing `--data`/`DATA` at the corresponding JSONL file.
|
| 105 |
+
|
| 106 |
+
## Intended Use
|
| 107 |
+
|
| 108 |
+
These datasets are intended for evaluating and studying **when an LLM agent should invoke external tools** (web search, calculator) versus answering from parametric knowledge — e.g. reproducing the paper's necessity/utility/affordability analysis, or as inputs to other tool-use / agentic-evaluation research. `entity` and `bfcl` are best paired with a web-search tool; `synthetic_multiplication` and `synthetic_nn` are best paired with a calculator tool.
|
| 109 |
+
|
| 110 |
+
## License
|
| 111 |
+
|
| 112 |
+
Released under the MIT License, matching the code repository.
|
| 113 |
+
|
| 114 |
+
## Citation
|
| 115 |
+
|
| 116 |
+
```bibtex
|
| 117 |
+
@article{wu2026call,
|
| 118 |
+
title={To Call or Not to Call: A Framework to Assess and Optimize LLM Tool Calling},
|
| 119 |
+
author={Wu, Qinyuan and Das, Soumi and Amani, Mahsa and Nag, Arijit and Lee, Seungeon and Gummadi, Krishna P and Ravichander, Abhilasha and Zafar, Muhammad Bilal},
|
| 120 |
+
journal={arXiv preprint arXiv:2605.00737},
|
| 121 |
+
year={2026}
|
| 122 |
+
}
|
| 123 |
+
```
|
bfcl/bfcl.csv
ADDED
|
@@ -0,0 +1,315 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
question,correct_response
|
| 2 |
+
What is the most expensive tea in the world?,DaHong Pao
|
| 3 |
+
Which country produces DaHong Pao?,China
|
| 4 |
+
Who is the richest billionaire in China?,Zhong Shanshan
|
| 5 |
+
Who is the performer of 2024 Super Bowl halftime show?,Usher
|
| 6 |
+
What is the birthplace of Usher?,"Dallas, Texas"
|
| 7 |
+
Which is the NFL team based in Dallas?,Dallas Cowboys
|
| 8 |
+
How many games did Dallas Cowboy win in 2024?,7
|
| 9 |
+
Who won the 2024 Nobel Prize in Literature?,Han Kang
|
| 10 |
+
Where did Han Kang recieved her alma meter?,Yonsei University
|
| 11 |
+
Who is the current president of Yonsei University?,Dong-Sup Yoon
|
| 12 |
+
Who won Best Picture at the 2024 Academy Awards,Oppenheimer
|
| 13 |
+
Who is the director of Oppenheimer,Christopher Nolan
|
| 14 |
+
Which university did Christopher Nolan go to?,University College London
|
| 15 |
+
What year was the school of fine art founded for University of College London?,1871
|
| 16 |
+
Which novel won the 2024 Goodreads Choice Award for Fiction?,The Wedding People
|
| 17 |
+
Who is the author of Wedding People?,Alison Espach
|
| 18 |
+
What is the birthplace of Alison Espach?,"Trumbull, Connecticut"
|
| 19 |
+
What is the largest lake in Conneticut?,Candlewood Lake
|
| 20 |
+
What is the city that received the most international tourists in 2024?,Bangkok
|
| 21 |
+
What is the tallest building in Bangkok?,Magnolias Waterfront Residences
|
| 22 |
+
How many floor does Magnolias Waterfront Residences have?,70
|
| 23 |
+
Who is the artist with the highest Spotify streams in 2024?,Taylor Swift
|
| 24 |
+
Which hospital was Taylor Swift born?,Reading Hospital
|
| 25 |
+
How many beds are in Reading hospital?,697
|
| 26 |
+
What is the model released in early 2025 by a Chinese company?,DeepSeek R1
|
| 27 |
+
Who is the CEO of DeepSeek?,Liang Wenfeng
|
| 28 |
+
Where did Liang Wenfeng studied in undergraduate?,Zhejiang University
|
| 29 |
+
When is Zhejiang University founded?,1897
|
| 30 |
+
Who won the 2024 Pulitzer Prize?,Jayne Anne Phillips
|
| 31 |
+
What was the first book of stories published by Jayne Anne Phillips?,Black Tickets
|
| 32 |
+
Who is Kickstarter's new Chief Marketing Officer appointed in 2024?,Courtney Brown Warren
|
| 33 |
+
What business school does Courtney Brown Warren attend?,Harvard Business School
|
| 34 |
+
Who is the eleventh dean of Harvard Business School?,Srikant Madhav Datar
|
| 35 |
+
Which country hosted the G7 summit in 2024?,Italy
|
| 36 |
+
What is the city with largest population in Italy?,Rome
|
| 37 |
+
What was the oldest building in Rome?,The Pantheon
|
| 38 |
+
What was the Pantheon build?,27 a.c.
|
| 39 |
+
Who is the most searched actor in 2024?,Katt Williams
|
| 40 |
+
Where is Katt Williams born?,"Cincinati, Ohio"
|
| 41 |
+
"What is the main airport in Cincinati, Ohio?",Cincinnati/Northern Kentucky International Airport
|
| 42 |
+
How many gates does Cincinnati/Northern Kentucky International Airport have?,51
|
| 43 |
+
Who is TIME's 2024 Person of the Year?,Donald Trump
|
| 44 |
+
Where did Donald Trump completed his undergraduate studies?,University of Pennsylvania
|
| 45 |
+
Who is the president of University of Pennsylvania?,J. Larry Jameson
|
| 46 |
+
Where did J. Larry Jameson completed his undergraduate studies?,North Carolina at Chapel Hill
|
| 47 |
+
What is the company that had the largest IPO in 2024?,Lineage
|
| 48 |
+
What is the founding year of Lineage?,2012
|
| 49 |
+
What is the team that won the 2024 UEFA Champions League?,Real Madrid
|
| 50 |
+
What is the home stadium of Real Madrid?,Santiago Bernabéu Stadium
|
| 51 |
+
When is Santiago Bernabéu Stadium inaurguarated?,1947
|
| 52 |
+
What is the country with the highest GDP growth in 2024?,Guyana
|
| 53 |
+
What is the largest waterfall in Guyana?,Kaieteur Falls
|
| 54 |
+
Which national park is Kaieteur Falls located,Kaieteur National Park
|
| 55 |
+
Which rainforest surrounds the Kaieteur National Park,Amazon Rainforest
|
| 56 |
+
What is the game that sold the most copies in the U.S. in 2024?,call of duty black ops 6
|
| 57 |
+
What is the official release date of call of duty black ops 6?,"October 25, 2024"
|
| 58 |
+
What is Netflix's most-watched new show in 2024 according to Forbes?,Bridgerton
|
| 59 |
+
Who is Bridgerton's director?,Tom Verica
|
| 60 |
+
What ABC drama did Tom Verica playered?,How to get away with murder
|
| 61 |
+
What is the first name of the character he played in how to get away with murder?,Sam
|
| 62 |
+
What is the S&P 500 company that achieved the highest revenue growth in 2024?,Palantir Technologies
|
| 63 |
+
What is the headquarter location of Palantir technology?,"Denver, CO"
|
| 64 |
+
What is the largest university in Denver?,The University of Colorado Denver
|
| 65 |
+
What is the mascot of University of Colorado Denver,Milo the Lynx
|
| 66 |
+
Which country won Eurovision 2024?,Switzerland
|
| 67 |
+
What is the most populus city in switzerland as of 2024?,Zurich
|
| 68 |
+
When is the last time Zurich hold a cantonal election?,2023-02-12
|
| 69 |
+
What is the largest university in the US in 2024 by land area in square miles?,Berry College
|
| 70 |
+
Who is the president of Berry College?,Sandeep Mazumder
|
| 71 |
+
How many children does Sandeep Mazumder have?,3
|
| 72 |
+
Which brand produces Crystal Light lemonade powder mix?,Kraft Heize
|
| 73 |
+
Which company owns Kraft Heinz?,Berkshire Hathaway
|
| 74 |
+
Who is the CEO of Berkshire Hathaway?,Warren Buffet
|
| 75 |
+
Who is the driver who won the 2024 Formula 1 World Championship?,Max Verstrappen
|
| 76 |
+
Which country was Max Verstrappen born?,Belgium
|
| 77 |
+
What is the first national park established in Belgium?,Hoge Kampen National Park
|
| 78 |
+
When is Hoge Kampen National Park opened?,2006
|
| 79 |
+
What is the country that won the most medals in the 2024 Summer Olympicscountry that won the most medals in the 2024 Summer Olympics,United States
|
| 80 |
+
Who is the president of United States in 2025?,Donald Trump
|
| 81 |
+
Who is the first wife of Donald Trump?,Ivana Marie Trump
|
| 82 |
+
What is the nationality of Ivana Marie Trump?,Czech-American
|
| 83 |
+
Who is the MLB player who led in home runs in 2024?,Aaron Judge
|
| 84 |
+
What year is Aaron Judge born?,1992
|
| 85 |
+
What was the album that won Album of the Year at the 2024 Grammy Awards?the album that won Album of the Year at the 2024 Grammy Awards,Cowboy Carter
|
| 86 |
+
When was Cowboy Carter released?,"March 29, 2024"
|
| 87 |
+
What is Billie Eilish's latest studio album released in 2024?,Hit Me Hard and Soft
|
| 88 |
+
What is the second single of the album?,Birds of a Feather
|
| 89 |
+
Who is the producer of Birds of a Feather?,Finneas O'Connell
|
| 90 |
+
What is the AI model with highest performance in ARC-AGI benchmark as of January 2025?,Open AI o3
|
| 91 |
+
What is the mini version of OpenAI o3?,OpenAI o3-mini
|
| 92 |
+
When is OpenAI o3 released?,"January 31, 2025"
|
| 93 |
+
What is the country that launched the second highest amount of satellites in 2024?,China
|
| 94 |
+
Who is the current premier of China?,Li Qiang
|
| 95 |
+
Who wrote the Times most influential article about Li Qiang in 2024?,Charlie Campbell
|
| 96 |
+
What is the country that hosted the 2024 Summer Olympics?,France
|
| 97 |
+
Who is the mayor of Paris?,Anne Hidalgo
|
| 98 |
+
Which political party does Anne Hildago belongs to?,Socialist Party
|
| 99 |
+
Who is the current party leader of the Socialist party?,Olivier Faure
|
| 100 |
+
What is the most expensive artwork sold at auction in 2024?,L'empire des lumières
|
| 101 |
+
Who is the artist that painted L'empire des lumières,René Magritte
|
| 102 |
+
What is the nationality of René Magritte,Belgium
|
| 103 |
+
Who is Forbes' youngest billionaire in 2024?,Livia Voigt
|
| 104 |
+
Which country is Livia Voigt from?,Brazil
|
| 105 |
+
Which political party won the most recent municipal election?,Liberal party
|
| 106 |
+
Who is the president of the liberal party?,Valdemar Costa Neto
|
| 107 |
+
What team developed the game that won Game of the Year at the 2024 Game Awards?,Team Asobi
|
| 108 |
+
Where is the studio of Team Asobi located?,Tokyo
|
| 109 |
+
Who is the current mayor of Tokyo?,Yuriko Koike
|
| 110 |
+
Which company is the largest non-government employer worldwide in 2024,Walmart
|
| 111 |
+
Where is the headquarter of Walmart?,"Bentonville, Arkansas"
|
| 112 |
+
What is the largest musuem in Bentonville?,Crystal Bridges Museum of American Art
|
| 113 |
+
Who founded Crystal Bridges Museum of American Art?,Alice Walton
|
| 114 |
+
Who is Hollywood's highest-paid actor of 2024?,Dwayne Johnson
|
| 115 |
+
What is the animated movie starring Dwayne Johnson in 2024?,Moana 2
|
| 116 |
+
Where is Moana 2 first premiered?,"Lanikuhonua Cultural Institute in Kapolei, Hawaii"
|
| 117 |
+
Who is the golfer who won the 2024 Masters Tournament have as of 2024?,Scottie Scheffler
|
| 118 |
+
How many children does Scottie Scheffler has?,one
|
| 119 |
+
What is the drug recognized as the breakthrough of the year in science in 2024?,Lenacapavir
|
| 120 |
+
Which company developed Lenacapavir?,Gilead Sciences
|
| 121 |
+
Who is CEO of Gilead Sciences?,Daniel O'Day
|
| 122 |
+
Where did Daniel O'Day go to college?,Georgetown University
|
| 123 |
+
What is the best-selling electric vehicle in 2024,Tesla Model Y
|
| 124 |
+
Who is the chief financial officer of Tesla?,Vaibhav Taneja
|
| 125 |
+
Where did Vaibhav Taneja recieves his Bachelor degree?,Delhi University
|
| 126 |
+
What is the world's fastest supercomputing system?,El Capitan
|
| 127 |
+
What is the operating system used by El Capitan,TOSS
|
| 128 |
+
What is the highest-grossing movie of 2024,Inside Out 2
|
| 129 |
+
Who is the director of Inside Out 2?,Kelsey Mann
|
| 130 |
+
Where did Kelsey Mann started his career?,Cartoon Network
|
| 131 |
+
When is Cartoon network founded?,1992
|
| 132 |
+
What is the city where the record of the most words on a postage stamp was set in 2024,"Mechelen, Belgium"
|
| 133 |
+
Who is the mayor of Mechelen?,Bart Somers
|
| 134 |
+
Which university does Bart Somers go to?,KU Leuven
|
| 135 |
+
Who is the winner of the world's largest marathon in 2024,Abdi Nageeye
|
| 136 |
+
Which country is Abdi Nageeye from?,Netherlands
|
| 137 |
+
Who is the president of netherland,Dick Schoof
|
| 138 |
+
When is Dick Schoof born?,1957
|
| 139 |
+
What is the the country with the highest GDP in 2024,United States
|
| 140 |
+
What professional basketball league governs most levels of basketball in USA,NBA
|
| 141 |
+
Which team is the winner of 2024 NBA champion?,Boston Celtics
|
| 142 |
+
Who has the most points per game in Boston Celtics,Jayson Tatum
|
| 143 |
+
What is movie that won Best Picture at the 2025 Academy Awards,Anora
|
| 144 |
+
What is the release date of Anora?,"October 18, 2024"
|
| 145 |
+
Which artist is 'not like us' targetting?,Drake
|
| 146 |
+
What is the nationality of Drake?,Canadian
|
| 147 |
+
Who is the current mayor of the capital of Canada,Mark Sutcliffe
|
| 148 |
+
Who is the current spouse of Mark Sutcliffe,Ginny Sutcliffe
|
| 149 |
+
What is the region where Yakut (Sakha) language is primarily spoken,Sakha Republic
|
| 150 |
+
What is the current president of Sakha Republic?,Aisen Nikolayev
|
| 151 |
+
What is Forbes most powerful women in 2024?,Ursula von der Leyen
|
| 152 |
+
What is Ursula von der Leyen's polictal party?,Christian Democratic Union
|
| 153 |
+
What is the restaurant named world's best by CNN in 2024?,Disfrutar
|
| 154 |
+
At which restaurant did the chefs at Disfutar met?,El Bulli
|
| 155 |
+
Which country were Lingala is primarily spoken?,Democratic Republic of the Congo
|
| 156 |
+
What is the capital city of Democratic Republic of the Congo,Kinshasa
|
| 157 |
+
Who is the current governor of Kinshasa,Daniel Bumba
|
| 158 |
+
What is the artist whose track reached one billion Spotify streams fastest in 2024?,Bruno Mars
|
| 159 |
+
What is the record label of Bruno Mars?,Atlantic Records
|
| 160 |
+
Who won the 2024 Tour de France?,Tadej Pogacar
|
| 161 |
+
What is the birth place of Tadej Pogacar?,Slovenia
|
| 162 |
+
What's the airline which was ranked as the safest by AirlineRatings.com in 2024?,Air New Zealand
|
| 163 |
+
What's Air New Zealand's earnings before taxation for the 2024 financial year?,$222 million
|
| 164 |
+
winner of the 2024 WTA Finals,Coco Gauff
|
| 165 |
+
Which city was Coco Gauff born?,Delray Beach
|
| 166 |
+
Who is the current Mayor of Delray Beach?,Tom Carney
|
| 167 |
+
Who is the founder of the university where Tom Carney got his bachelor's degree?,Michael Portier
|
| 168 |
+
What's the smartphone brand that shipped the most units worldwide in the first three quarters of 2024?,Samsung
|
| 169 |
+
What's Samsung's consolidated sales in the fourth quarter of 2024?,75 trillion Korean won
|
| 170 |
+
"What's the country where the largest building in the shape of a chicken is located, according to the 2024 Guinness World Records",Philippines
|
| 171 |
+
Who's the current president of Philippines?,Bongbong Marcos
|
| 172 |
+
Where did Bongbong Marcos graduate from for secondary school?,Worth School
|
| 173 |
+
Who's the current head master of Worth School?,Stuart McPherson
|
| 174 |
+
What's the team that holds the top spot for the most NBA Championship titles according to Guinness World Records in 2024?,Boston Celtics
|
| 175 |
+
Who's the current head coach of Boston Celtics?,Joe Mazzulla
|
| 176 |
+
Where was Joe Mazzulla born?,"Johnston, Rhode Island, U.S."
|
| 177 |
+
"Who's the current mayor of Johnston, Rhode Island?",Joseph Polisena Jr.
|
| 178 |
+
"What's the country that has earned the most World Womens Curling Championship titles, according to the 2024 Guinness World Records?",Canada
|
| 179 |
+
Who's the current prime minister of Canada?,Justin Trudeau
|
| 180 |
+
What's Justin Trudeau's annual salary in 2024?,"203,100.00 CA$"
|
| 181 |
+
"Who is the cat who achieved fastest 10 m on a skateboard, according to the 2024 Guinness World Records?",Bao zi
|
| 182 |
+
How old is Bao Zi?,American Shorthair
|
| 183 |
+
Who achieved the most UFC title bout wins by November 2024?,Jon Jones
|
| 184 |
+
Where is Jon Jones's hometown?,"Rochester, New York"
|
| 185 |
+
Who's the current mayor of Rochester?,Malik Evans
|
| 186 |
+
Who's Malik Evans's current spouse?,Shawanda Evans
|
| 187 |
+
What is the city where the largest robot championship recognized by the Guinness World Records in 2024 was held?,Shanghai
|
| 188 |
+
Who's the mayor of Shanghai?,Gong Zheng
|
| 189 |
+
When is Gong Zheng's birthday?,4 March
|
| 190 |
+
Which country's team set the record for the most Olympic Womens football titles won according to the Guinness World Records in 2024?,United States
|
| 191 |
+
Who's the current head coach of USA's Olympic womens football team?,Emma Hayes
|
| 192 |
+
What's Emma Hayes's high school alma mater?,Parliament Hill School
|
| 193 |
+
Who's the current headmistress?,Sarah Creasey
|
| 194 |
+
Who is the player who holds the most snooker ranking titles according to the Guinness World Records in 2024?,Ronnie O'Sullivan
|
| 195 |
+
How many world championships has he won up to April 2025?,7
|
| 196 |
+
"What is the country where the record for the most books with different title names but the same author is set, according to the Guinness World Records in 2024?",India
|
| 197 |
+
Who's the current prime minister of India?,Narendra Modi
|
| 198 |
+
What is the prize awarded in Russia in July 2024 to Modi?,Order of St. Andrew
|
| 199 |
+
Who is the Serbian player who holds the record of most consecutive years winning an ATP title turn pro?,Novak Djokovic
|
| 200 |
+
Who is the current coach of Djokovic?,Andy Murray
|
| 201 |
+
How many grand slams does Murray have?,3
|
| 202 |
+
"Who is the player who set the record of most freestyle football world titles won (male), according to the Guinness World Records in 2024?",Erlend Fagerli
|
| 203 |
+
What is the height of Erlend Fagerli?,185
|
| 204 |
+
Who is the oldest male Grand Slam winner according to Guinness World Records 2024?,Rohan Bopanna
|
| 205 |
+
Where is his hometown?,Bangalore
|
| 206 |
+
What's Bangalore's cricket team?,Royal Challengers Bengaluru
|
| 207 |
+
Who is the current coach of Royal Challengers Bengaluru?,Andy Flower
|
| 208 |
+
"What is the city where the largest display of origami dolphins was held, according to the Guinness World Records in 2024?",London
|
| 209 |
+
Who is London's current mayor?,Sadiq Khan
|
| 210 |
+
Who is Khan's current spouse?,Saadiya Ahmed
|
| 211 |
+
"What is the team that achieved the most wins in the Major League Soccer Cup, according to Guinness World Records?",LA Galaxy
|
| 212 |
+
Who is the current head coach of the team?,Greg Vanney
|
| 213 |
+
Where was Greg Vanney born?,"South Boston, Virginia"
|
| 214 |
+
Who is the current mayor of South Boston?,Edward Owens
|
| 215 |
+
"Who is the player who won the most female Grand Slam wheelchair singles titles, according to the Guinness World Records in 2024.",Diede de Groot
|
| 216 |
+
Where is his hometown?,"Woerden, Netherlands"
|
| 217 |
+
Who is the current mayor of Woerden?,Victor_Molkenboer
|
| 218 |
+
When will he retire?,1 March 2025
|
| 219 |
+
"What is team that holds the highest number of consecutive women's football national league titles ever achieved, according to the Guinness World Records",SFK 2000 Sarajevo
|
| 220 |
+
Who is the current chairman of SFK 2000 Sarajevo?,Samira Hurem
|
| 221 |
+
Where was Hurem born?,"Sarajevo, SFR Yugoslavia"
|
| 222 |
+
Who is the current mayor of Sarajevo?,Predrag Puharić
|
| 223 |
+
Who is the Italian player who holds the record of the most football Ligue 1 titles won by a player?,Marco Verratti
|
| 224 |
+
Which team is he currently serving?,Al-Arabi
|
| 225 |
+
Who is the current head coach of Al-Arabi,Pablo Amo
|
| 226 |
+
Where is the birth place of Pablo Amo?,Madrid
|
| 227 |
+
What is the city where the largest whistling archery gathering recognized by the Guinness World Records in 2024 was held?,Linzhi
|
| 228 |
+
What is the area of Linzhi,"116,175"
|
| 229 |
+
"Who is the player who won the most male Grand Slam wheelchair singles titles, according to the Guinness World Records in 2024?",Shingo Kunieda
|
| 230 |
+
Where is his hometown?,Tokyo
|
| 231 |
+
Who is the current governor of Tokyo?,Yuriko Koike
|
| 232 |
+
Where was she born?,"Ashiya, Hyōgo"
|
| 233 |
+
Who is the lowest-ranked tennis player to win an ATP Tour title?,Marin Čilić
|
| 234 |
+
What is his birth place?,Medjugorje
|
| 235 |
+
Where was the record of the most ABBA song titles identified in one minute set?,London
|
| 236 |
+
Who is the representative of the Conservative party in UK?,Rishi Sunak
|
| 237 |
+
How many votes did Rishi Sunak recieved?,6828925
|
| 238 |
+
What is the city where the record for the most consecutive female wheelchair singles titles as recognized by Guinness World Records in 2024?,London
|
| 239 |
+
Who is London's current mayor?,Sadiq Khan
|
| 240 |
+
Who is Khan's current spouse?,Saadiya Ahmed
|
| 241 |
+
Who was was the winner of the Paris 2024 women's marathon?,Sifan Hassan
|
| 242 |
+
Where was she born?,Adama
|
| 243 |
+
What's the name of the football team based in Adama,Adama City F.C.
|
| 244 |
+
Who's the current chairman of Adama City F.C.?,Teshome Quankusie
|
| 245 |
+
What is the country that recorded five Olympic womens soccer gold medals according to the Guinness World Records in 2024?,U.S.
|
| 246 |
+
Who is the current president of U.S.?,Donald Trump
|
| 247 |
+
Which News TV network did Trump sue in 2024?,ABC News or CBS News
|
| 248 |
+
Who is the current president of ABC News or CBS News?,Almin Karamehmedovic/Wendy A. McMahon
|
| 249 |
+
"Who is the female player who won the most racquetball world championships, according to the 2024 Guinness World Records?",Paola_Longoria
|
| 250 |
+
What is the hometown of Paola_Longoria,San Luis Potos
|
| 251 |
+
Who is the current governor of the city?,Ricardo Gallardo Cardona
|
| 252 |
+
Which Brazilian player holds the record of the most football Ligue 1 titles won by a player?,Marquinhos
|
| 253 |
+
How many league goals did the player score in 2023-2024 season?,0
|
| 254 |
+
Who set the record for the most consecutive Superbike Championship race wins in 2024?,Toprak Razgatlıoğlu
|
| 255 |
+
When is his birthday?,1996-10-16
|
| 256 |
+
Where is the record of the highest number of goals scored by a team in a UEFA European Championship set?,Berlin
|
| 257 |
+
Which movie won the top prize of the Berlin Movie Festival 2024?,Dahomey
|
| 258 |
+
Who wrote this film?,Mati Diop
|
| 259 |
+
Where was Diop born?,"Paris, France"
|
| 260 |
+
Who won the most IJSBA World Championships according to Guinness World Records in 2024?,Mohammad Burbaye
|
| 261 |
+
What is his nationality?,Kuwait
|
| 262 |
+
Who is the current prime minister of Kuwait?,Ahmad Al-Abdullah Al-Sabah
|
| 263 |
+
Who is the youngest player in the UEFA European Championships in 2024?,Lamine Yamal
|
| 264 |
+
What's his current team?,FC Barcelona
|
| 265 |
+
Who's the current president of FC Barcelona?,Joan Laporta
|
| 266 |
+
How many children does Joan Laporta have?,3
|
| 267 |
+
Which country holds the most triumphant titles in the Womens World Badminton Team Championships according to the Guinness World Records 2024?,China
|
| 268 |
+
What is China's most populated city in 2024?,Shanghai
|
| 269 |
+
Who is the current mayor of Shanghai?,Gong Zheng
|
| 270 |
+
Who achieved the most wins of the League of Legends European Championships?,Caps
|
| 271 |
+
What's the position of Caps?,Mid laner
|
| 272 |
+
Who is the oldest player in the UEFA European Championships in 2024?,Pepe
|
| 273 |
+
Which team did Pepe serve during 2004-2007?,Porto
|
| 274 |
+
Who is the current president of Porto?,André Villas-Boas
|
| 275 |
+
What is the height of André Villas-Boas?,1.82 m
|
| 276 |
+
Who won the most Super Mario Kart World Championships according to the Guinness World Records in 2024?,Florent Lecoanet
|
| 277 |
+
Which city was Lecoanet born in?,Rennes
|
| 278 |
+
What is the football team based in Rennes?,Stade Rennais FC
|
| 279 |
+
Who is the current manager of Stade Rennais FC?,Habib Beye
|
| 280 |
+
Which team did Beye play for during 2009-2012?,Aston Villa
|
| 281 |
+
Who is the oldest goalscorer in the UEFA European Championships 2024?,Luka Modrić
|
| 282 |
+
Which team did Luka Modrić serve during 2008-2012?,Tottenham Hotspur
|
| 283 |
+
Who is the current chairman of Tottenham Hotspur?,Daniel Levy
|
| 284 |
+
Who is the spouse of Daniel Levy?,Tracy Dixon
|
| 285 |
+
Who holds the record for the highest number of World Rally Championship race entries by an individual?,Jari-Matti Latvala
|
| 286 |
+
Who is his father?,Jari Latvala
|
| 287 |
+
Who is the losing nominee in the 2024 Palauan general election?,Thomas Remengesau Jr.
|
| 288 |
+
Where did Thomas Remengesau Jr recieve his alma meter?,Grand Valley State University
|
| 289 |
+
Who is the president of Grand Valley State University?,Philomena Mantella
|
| 290 |
+
Who is the spouse of Philomena V. Mantella?,Robert Avery
|
| 291 |
+
Who is the most female high diving gold medals winner at the World Aquatics Championships according to the 2024 Guinness World Records?,Rhiannan Iffland
|
| 292 |
+
When's Rhiannan Iffland's birthday?,9 September
|
| 293 |
+
Who scored the fastest goal in the UEFA European Championships 2024?,Nedim Bajrami
|
| 294 |
+
Which team did he serve for during 2019-2023?,Empoli FC
|
| 295 |
+
Who is the current chairman of Empoli?,Fabrizio Corsi
|
| 296 |
+
Where is his birthdate?,1960-08-22
|
| 297 |
+
Who is the American player who holds the record of the lowest PGA Championship golf score in single round recorded in 2024?,Xander Schauffele
|
| 298 |
+
Where was Xander Schauffele born?,San Diego
|
| 299 |
+
Who is the current mayor of San Diego?,Todd Gloria
|
| 300 |
+
What is the country where the maximum number of games is live streamed for a single sports championship in 2024?,Japan
|
| 301 |
+
Who is the current prime minister of Japan?,Shigeru Ishiba
|
| 302 |
+
Who is the current spouse of Shigeru Ishiba?,Yoshiko Nakamura
|
| 303 |
+
What is the country that played the most matches in UEFA European Football Championships,Germany
|
| 304 |
+
Who is the current president of Germany?,Frank-Walter Steinmeier
|
| 305 |
+
Who is the current spouse of Frank-Walter Steinmeier?,Elke Büdenbender
|
| 306 |
+
What is the most expensive car in 2024?,Rolls-Royce La Rose Noire Droptail
|
| 307 |
+
Which company produces Rolls-Royce La Rose Noire Droptail?,Rolls-Royce Motor Cars
|
| 308 |
+
Who is the current CEO of Rolls-Royce Motor Cars?,Chris Brownridge
|
| 309 |
+
Who is the Swedish swimmer who achieved the most consecutive long course World Championship swimming gold medals in the same event?,Sarah Sjöström
|
| 310 |
+
Where is her hometown?,Salem
|
| 311 |
+
Who achieved the fastest time clocked at the IRONMAN World Championship 2024 among participants with amputated legs below and above knee?,Billy Monger
|
| 312 |
+
How many days of driving in 2024 was banned for Billy Monger?,49
|
| 313 |
+
In what city was the record of the most words on a postage stamp set in 2024?,Mechelen
|
| 314 |
+
Who is the mayor of Mechelen?,Bart Somers
|
| 315 |
+
How many children does Somers currently have?,2
|
entity/entity.csv
ADDED
|
@@ -0,0 +1,501 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
entity_text,category,count
|
| 2 |
+
hockey sur glace,Activities & Hobbies,1
|
| 3 |
+
Adréa,People & Personal Attributes,1
|
| 4 |
+
National Guards,Finance-related,1
|
| 5 |
+
Gruppo San Donato,Finance-related,1
|
| 6 |
+
Damodaran,People & Personal Attributes,1
|
| 7 |
+
CDA01,Finance-related,2
|
| 8 |
+
https://www.metmuseum.org,Computing-Related,1
|
| 9 |
+
doordad,Finance-related,1
|
| 10 |
+
RL models,Linguistic Entities,1
|
| 11 |
+
aristotélicienne,Linguistic Entities,1
|
| 12 |
+
All of Us Are Dead,Culture & Entertainment,3
|
| 13 |
+
Tim Wilson,People & Personal Attributes,3
|
| 14 |
+
JpaRepository,Linguistic Entities,3
|
| 15 |
+
Mueller,Finance-related,2
|
| 16 |
+
Alba Valin,People & Personal Attributes,1
|
| 17 |
+
Chemical,Physical Sciences,2
|
| 18 |
+
cataracts,Medical Entities,3
|
| 19 |
+
tiger balm ultra,Food & Nutrition,1
|
| 20 |
+
Student Loan Repayment Strategies,Culture & Entertainment,1
|
| 21 |
+
Ingoglia,People & Personal Attributes,1
|
| 22 |
+
AsyncExecutionInterceptor,Linguistic Entities,1
|
| 23 |
+
flowise,Finance-related,1
|
| 24 |
+
NOAA,Linguistic Entities,1
|
| 25 |
+
region de murcia,Geographic Entities,1
|
| 26 |
+
Dear sunrise,Culture & Entertainment,1
|
| 27 |
+
ronaldo,People & Personal Attributes,7
|
| 28 |
+
Mercado de la Abastos,Geographic Entities,1
|
| 29 |
+
Sky Blue,Finance-related,2
|
| 30 |
+
Glenn Miller Orchestra,Culture & Entertainment,1
|
| 31 |
+
WVK,Culture & Entertainment,1
|
| 32 |
+
authn_dbm_module,Computing-Related,1
|
| 33 |
+
system shock remake,Culture & Entertainment,1
|
| 34 |
+
Mobile Architect & Programming,Linguistic Entities,4
|
| 35 |
+
Barbera,People & Personal Attributes,1
|
| 36 |
+
Pinterest Conversation Insight page,Linguistic Entities,1
|
| 37 |
+
HTTP,Linguistic Entities,17
|
| 38 |
+
pi,Mathematical & Computational Entities,4
|
| 39 |
+
8a:3f:c1:94:6d:b2,Computing-Related,1
|
| 40 |
+
Nv,Geographic Entities,1
|
| 41 |
+
Dammit,Culture & Entertainment,1
|
| 42 |
+
POCO X7 pro,Dynamical Systems,1
|
| 43 |
+
topB$GENCODEv47_Gene_Name,Life Sciences,1
|
| 44 |
+
PCI DSS 4.0,Linguistic Entities,1
|
| 45 |
+
slow,Linguistic Entities,1
|
| 46 |
+
TMex Mods 2022,Culture & Entertainment,1
|
| 47 |
+
naq_legacy_forms,Linguistic Entities,1
|
| 48 |
+
Augusto,People & Personal Attributes,3
|
| 49 |
+
1 Thessalonians 4:16-17,Culture & Entertainment,1
|
| 50 |
+
CoT_recommended_collaborator_3_id,Linguistic Entities,1
|
| 51 |
+
Daridorexant,Physical Sciences,1
|
| 52 |
+
Sabrina Carpenter,People & Personal Attributes,7
|
| 53 |
+
Body Sovereignty in the Age of Firmware,Linguistic Entities,1
|
| 54 |
+
vigevano,Geographic Entities,3
|
| 55 |
+
34613,Geographic Entities,4
|
| 56 |
+
§ 224 StGB,Linguistic Entities,1
|
| 57 |
+
EPA,Physical Sciences,6
|
| 58 |
+
Dr. Wilson,People & Personal Attributes,4
|
| 59 |
+
Writing Center,People & Personal Attributes,1
|
| 60 |
+
Air Forceman,Culture & Entertainment,3
|
| 61 |
+
Sistema operativo Microsoft® Windows®,Computing-Related,1
|
| 62 |
+
EPICV2,Computing-Related,1
|
| 63 |
+
two languages,Culture & Entertainment,1
|
| 64 |
+
Raffaella,People & Personal Attributes,6
|
| 65 |
+
Proof of Work,Linguistic Entities,1
|
| 66 |
+
Mr. Weber,People & Personal Attributes,1
|
| 67 |
+
Certified Professional in Talent Development (CPTD),Linguistic Entities,1
|
| 68 |
+
2024 Global Tech Design Award,Culture & Entertainment,1
|
| 69 |
+
Beau Biden,People & Personal Attributes,1
|
| 70 |
+
leveragewrites.com,Computing-Related,1
|
| 71 |
+
fleisch,Food & Nutrition,1
|
| 72 |
+
12.453.23.11,Computing-Related,2
|
| 73 |
+
gallone,Linguistic Entities,1
|
| 74 |
+
Psalms of Echoed Light,Linguistic Entities,1
|
| 75 |
+
Mellit,People & Personal Attributes,1
|
| 76 |
+
shining fates,Activities & Hobbies,7
|
| 77 |
+
In Coda,Linguistic Entities,1
|
| 78 |
+
Bookreads,Finance-related,1
|
| 79 |
+
Mi primo,People & Personal Attributes,1
|
| 80 |
+
Jamie Conklin,People & Personal Attributes,6
|
| 81 |
+
"Jul 23, 2024 3:26:25 pm",Geographic Entities,1
|
| 82 |
+
Political Attitudes,Linguistic Entities,1
|
| 83 |
+
PrismaSoft,Finance-related,1
|
| 84 |
+
Andrew Goldberg,People & Personal Attributes,1
|
| 85 |
+
OneFlow Media,Finance-related,1
|
| 86 |
+
Euphoria,Culture & Entertainment,2
|
| 87 |
+
A2C,Linguistic Entities,62
|
| 88 |
+
Pacifique occidental,Geographic Entities,2
|
| 89 |
+
IMAP,Computing-Related,3
|
| 90 |
+
MrBeast,People & Personal Attributes,1
|
| 91 |
+
2023 09 05,Weather & Earth Science,1
|
| 92 |
+
Dr. Blanton,People & Personal Attributes,1
|
| 93 |
+
Inspired,People & Personal Attributes,20
|
| 94 |
+
Goku (GT),Culture & Entertainment,1
|
| 95 |
+
Sticker Mule,Finance-related,1
|
| 96 |
+
Emma Watson,People & Personal Attributes,1
|
| 97 |
+
Brown-headed Cowbird,Organism Types,1
|
| 98 |
+
The Time In Between,Culture & Entertainment,1
|
| 99 |
+
YouTube Movies and TV,Finance-related,1
|
| 100 |
+
October 2022,Weather & Earth Science,2
|
| 101 |
+
google photo,Finance-related,3
|
| 102 |
+
Maine-et-Loire,Geographic Entities,1
|
| 103 |
+
Girlfriend Collective,Finance-related,1
|
| 104 |
+
Farmhouse Sourdough Bread,Food & Nutrition,1
|
| 105 |
+
eFuneral,Finance-related,6
|
| 106 |
+
Android 17,Culture & Entertainment,5
|
| 107 |
+
Romans 3:20,Culture & Entertainment,1
|
| 108 |
+
SANTO MARCHESE,People & Personal Attributes,1
|
| 109 |
+
XXXX County,Geographic Entities,1
|
| 110 |
+
4 year college,Geographic Entities,1
|
| 111 |
+
Cuban,People & Personal Attributes,1
|
| 112 |
+
the lookout,Geographic Entities,1
|
| 113 |
+
Dancing Pandas: Ranger's Path,Culture & Entertainment,2
|
| 114 |
+
Aquaculture and Marine Resources Conservation,Linguistic Entities,1
|
| 115 |
+
Wetzlar,Geographic Entities,2
|
| 116 |
+
Paritätischen Stützpunkt,Geographic Entities,1
|
| 117 |
+
Florent Thibierge,People & Personal Attributes,2
|
| 118 |
+
Petal Veil,Linguistic Entities,4
|
| 119 |
+
Eizec Blackwell,People & Personal Attributes,1
|
| 120 |
+
pretty reckless,Culture & Entertainment,9
|
| 121 |
+
4/18/2025,UNKNOWN,1
|
| 122 |
+
KONSTANTINOS ZAFEIROPOULOS,People & Personal Attributes,1
|
| 123 |
+
update,Linguistic Entities,1
|
| 124 |
+
acquaintances,Linguistic Entities,1
|
| 125 |
+
Top Tier A* Paper,Linguistic Entities,1
|
| 126 |
+
D.M. 21 marzo 2018,History-Related,1
|
| 127 |
+
Dolugen,Finance-related,6
|
| 128 |
+
Bahutien Nantes,Geographic Entities,1
|
| 129 |
+
Q2 2027,History-Related,1
|
| 130 |
+
EXT. CITY STREET,Geographic Entities,3
|
| 131 |
+
AWS,Finance-related,76
|
| 132 |
+
LM 2025,Culture & Entertainment,1
|
| 133 |
+
University Sorbonne-Nouvelle,Geographic Entities,2
|
| 134 |
+
UK shifts,Geographic Entities,1
|
| 135 |
+
mainstream media,Linguistic Entities,1
|
| 136 |
+
Traditional Ads,Linguistic Entities,1
|
| 137 |
+
student portal,Linguistic Entities,1
|
| 138 |
+
Asma Jilani v. Government of Punjab,History-Related,2
|
| 139 |
+
sebaceous glands,Medical Entities,1
|
| 140 |
+
Room 113,Geographic Entities,1
|
| 141 |
+
Smoking,Medical Entities,1
|
| 142 |
+
MM1,Dynamical Systems,3
|
| 143 |
+
TIER,Finance-related,1
|
| 144 |
+
Shimano GRX,Finance-related,2
|
| 145 |
+
music streaming service,Finance-related,1
|
| 146 |
+
Annalisa,People & Personal Attributes,2
|
| 147 |
+
29.34.124.543,Computing-Related,3
|
| 148 |
+
Impact and Engagement Team,Finance-related,1
|
| 149 |
+
Bungsberg Telecommunications Tower,Geographic Entities,2
|
| 150 |
+
dragon racing,Culture & Entertainment,1
|
| 151 |
+
Joao Cocco,People & Personal Attributes,1
|
| 152 |
+
DSM-5 Basics,Culture & Entertainment,2
|
| 153 |
+
Green Street,Geographic Entities,1
|
| 154 |
+
book of scales and the circle of fifths,Culture & Entertainment,1
|
| 155 |
+
12 février 2037,Linguistic Entities,1
|
| 156 |
+
Bloomberg Precious Metals (EUR Hedged),Finance-related,1
|
| 157 |
+
peripheral edema,Medical Entities,1
|
| 158 |
+
NCDOT,Finance-related,10
|
| 159 |
+
Windows 10,Linguistic Entities,1
|
| 160 |
+
get_respawn_mas_cercano,Computing-Related,1
|
| 161 |
+
SALVATORE,People & Personal Attributes,1
|
| 162 |
+
21 May 2025,Weather & Earth Science,1
|
| 163 |
+
db super,Culture & Entertainment,1
|
| 164 |
+
galaxy watch 7,Finance-related,2
|
| 165 |
+
The Dog Stars,Culture & Entertainment,1
|
| 166 |
+
Santa María del Naranco,Geographic Entities,2
|
| 167 |
+
Hawk Tuah,People & Personal Attributes,1
|
| 168 |
+
mean_squared_error,Linguistic Entities,1
|
| 169 |
+
DQN,Computing-Related,28
|
| 170 |
+
Kapleau,People & Personal Attributes,2
|
| 171 |
+
provo,Geographic Entities,21
|
| 172 |
+
Superman 3,Culture & Entertainment,1
|
| 173 |
+
CORSO DI PREPARAZIONE ALL’ESAME DI STATO PER L’ABILITAZIONE ALL’ESERCIZIO PROFESSIONALE DI ARCHITETTO PIANIFICATORE PAESAGGISTA E CONSERVATOR,Culture & Entertainment,1
|
| 174 |
+
INOSITOL,Physical Sciences,1
|
| 175 |
+
NSF,Finance-related,11
|
| 176 |
+
LocalDateTime,Linguistic Entities,1
|
| 177 |
+
eye problems,Medical Entities,1
|
| 178 |
+
Excalibur,Culture & Entertainment,2
|
| 179 |
+
Cinryze,Medical Entities,1
|
| 180 |
+
145.234.3.5,Computing-Related,2
|
| 181 |
+
Home goods,Finance-related,1
|
| 182 |
+
1451 Highway 17,Geographic Entities,1
|
| 183 |
+
Tarun Ramadorai,People & Personal Attributes,1
|
| 184 |
+
5 GHz,Engineering & Structures,1
|
| 185 |
+
245.454.24.7,Computing-Related,1
|
| 186 |
+
REST,Physical Sciences,1
|
| 187 |
+
Verena Hüttl-Maack,People & Personal Attributes,1
|
| 188 |
+
Rock Valley,Geographic Entities,1
|
| 189 |
+
need for speed,Culture & Entertainment,3
|
| 190 |
+
Perfectly Crafted Multi Grain Bread Loaf,Food & Nutrition,1
|
| 191 |
+
Schengen,Geographic Entities,1
|
| 192 |
+
Firament Rite,Linguistic Entities,1
|
| 193 |
+
Cinnamonbun,Food & Nutrition,13
|
| 194 |
+
Apt 802,Geographic Entities,1
|
| 195 |
+
GLIBCXX,Computing-Related,1
|
| 196 |
+
South Bark,Geographic Entities,1
|
| 197 |
+
XINGYHENG,Finance-related,1
|
| 198 |
+
Detailed Speech and/or Sound Descriptions,Linguistic Entities,1
|
| 199 |
+
ANDREA COLAVECCHIA,People & Personal Attributes,1
|
| 200 |
+
SPB,Dynamical Systems,2
|
| 201 |
+
steam vr,Finance-related,1
|
| 202 |
+
Irma Clot-Figueras,People & Personal Attributes,1
|
| 203 |
+
PKE Media Center,Geographic Entities,1
|
| 204 |
+
Mac Farlane Burnet,People & Personal Attributes,1
|
| 205 |
+
Eva7077,People & Personal Attributes,3
|
| 206 |
+
Seguro Nacional de Salud,Finance-related,1
|
| 207 |
+
Keith Christopher,People & Personal Attributes,1
|
| 208 |
+
human genome,Life Sciences,2
|
| 209 |
+
Freibetrag,Linguistic Entities,1
|
| 210 |
+
parkade,Geographic Entities,4
|
| 211 |
+
ED,Finance-related,2
|
| 212 |
+
Apple iPhone 13 Pro Max,Finance-related,1
|
| 213 |
+
15 dicembre,Linguistic Entities,1
|
| 214 |
+
Sumire Uesaka,Culture & Entertainment,1
|
| 215 |
+
Brooks Falls,Geographic Entities,2
|
| 216 |
+
Mai 2024,Geographic Entities,2
|
| 217 |
+
Andrew Najberg,People & Personal Attributes,1
|
| 218 |
+
Follett,Finance-related,1
|
| 219 |
+
Negative Valence,Linguistic Entities,1
|
| 220 |
+
"Sep. 18, 2025",History-Related,1
|
| 221 |
+
Creative Suite,Computing-Related,2
|
| 222 |
+
Pregnancy and toxoplasmosis - The Humane Society of the United States,Culture & Entertainment,1
|
| 223 |
+
New York Knicks,Finance-related,1
|
| 224 |
+
Yellow Door Taqueria,Finance-related,1
|
| 225 |
+
Scotty,Culture & Entertainment,1
|
| 226 |
+
Instituto Oficial 21 de Octubre,Geographic Entities,1
|
| 227 |
+
Ornstein-Uhlenbeck process,Mathematical & Computational Entities,1
|
| 228 |
+
Venetian,Geographic Entities,1
|
| 229 |
+
DATA_INSERT,Linguistic Entities,1
|
| 230 |
+
Fairway Park,Geographic Entities,1
|
| 231 |
+
nimm2 Lachgummis,Food & Nutrition,1
|
| 232 |
+
SAM A23,Finance-related,3
|
| 233 |
+
Ephesians 2:8–9,Culture & Entertainment,1
|
| 234 |
+
Zambrana F,People & Personal Attributes,1
|
| 235 |
+
Le Club,Finance-related,1
|
| 236 |
+
19 giugno,Linguistic Entities,1
|
| 237 |
+
Jack Herer THCX,Food & Nutrition,5
|
| 238 |
+
RMA,Linguistic Entities,1
|
| 239 |
+
gold flakes,Physical Sciences,1
|
| 240 |
+
Yuko Sato,People & Personal Attributes,1
|
| 241 |
+
AI Conversational Designer,Linguistic Entities,1
|
| 242 |
+
Carvana,Finance-related,2
|
| 243 |
+
sushi train,Finance-related,1
|
| 244 |
+
"Regina, Iowa City",Geographic Entities,2
|
| 245 |
+
Deutschlands,Geographic Entities,4
|
| 246 |
+
"Gielen, M.J.M.",People & Personal Attributes,1
|
| 247 |
+
shar-pei,Organism Types,1
|
| 248 |
+
The Landmark Theatre,Geographic Entities,1
|
| 249 |
+
50530,Geographic Entities,1
|
| 250 |
+
BlackVaultDynamics.io,Computing-Related,1
|
| 251 |
+
Apogem Capital,Finance-related,1
|
| 252 |
+
Dewey,People & Personal Attributes,3
|
| 253 |
+
red cross,Finance-related,8
|
| 254 |
+
SGLT2,Life Sciences,1
|
| 255 |
+
city council,People & Personal Attributes,1
|
| 256 |
+
preprocessor.c,Computing-Related,1
|
| 257 |
+
absl::InitializeLog,Linguistic Entities,1
|
| 258 |
+
December 31st,History-Related,1
|
| 259 |
+
Left Model,Linguistic Entities,17
|
| 260 |
+
óxido nítrico,Physical Sciences,1
|
| 261 |
+
CESAR JESUS UCEDA RENTERIA,People & Personal Attributes,1
|
| 262 |
+
Georgia,Linguistic Entities,1
|
| 263 |
+
globalization,Linguistic Entities,1
|
| 264 |
+
rewardsxp,Finance-related,3
|
| 265 |
+
Network Engineer,People & Personal Attributes,1
|
| 266 |
+
Consiglio nazionale degli studenti universitari,People & Personal Attributes,1
|
| 267 |
+
Sunshine,Computing-Related,7
|
| 268 |
+
Section 4,Linguistic Entities,3
|
| 269 |
+
dead by daylight,Activities & Hobbies,1
|
| 270 |
+
HeartDisease,Medical Entities,1
|
| 271 |
+
austinharrisofficial.gumroad.com,Computing-Related,1
|
| 272 |
+
Anti war activism,Linguistic Entities,3
|
| 273 |
+
BCG,Organism Types,2
|
| 274 |
+
arcane trickster,Linguistic Entities,1
|
| 275 |
+
"Another Brick in the Wall, Pt. 1",Culture & Entertainment,1
|
| 276 |
+
Church,Linguistic Entities,3
|
| 277 |
+
intention,Medical Entities,1
|
| 278 |
+
Jean Essman,People & Personal Attributes,1
|
| 279 |
+
Brinks,Finance-related,2
|
| 280 |
+
Round 1,Linguistic Entities,5
|
| 281 |
+
06/01/2024,Geographic Entities,1
|
| 282 |
+
gain.gg,Finance-related,1
|
| 283 |
+
deutschen Land,Geographic Entities,2
|
| 284 |
+
stade Dom Afonso Henriques,Geographic Entities,1
|
| 285 |
+
pizza rolls,Food & Nutrition,1
|
| 286 |
+
radio los santos,Culture & Entertainment,1
|
| 287 |
+
palatine il,Geographic Entities,2
|
| 288 |
+
Joanna Grossman,People & Personal Attributes,1
|
| 289 |
+
newton verfahren,Mathematical & Computational Entities,1
|
| 290 |
+
bmat.com,Computing-Related,1
|
| 291 |
+
crystal lake,Geographic Entities,1
|
| 292 |
+
Impressionism,Linguistic Entities,3
|
| 293 |
+
$99+,Finance-related,1
|
| 294 |
+
A. Kay,People & Personal Attributes,1
|
| 295 |
+
Summer Series,Food & Nutrition,2
|
| 296 |
+
apa 7th,Culture & Entertainment,1
|
| 297 |
+
Diced Peaches,Food & Nutrition,1
|
| 298 |
+
Hercules,Culture & Entertainment,5
|
| 299 |
+
articolo 144,Linguistic Entities,1
|
| 300 |
+
"Peruanos en paterson,clifton,passaic Y Garfield NJ",Geographic Entities,2
|
| 301 |
+
COPPER SULFATE,Physical Sciences,1
|
| 302 |
+
INLET VALVE,Physical Sciences,1
|
| 303 |
+
Montréal,Geographic Entities,3
|
| 304 |
+
black mage,Culture & Entertainment,1
|
| 305 |
+
Clarion Capital Partners,Finance-related,4
|
| 306 |
+
Historical Origins of the Health Belief Model,Culture & Entertainment,5
|
| 307 |
+
pharmaceutical company,Finance-related,2
|
| 308 |
+
Oscar kamby,People & Personal Attributes,1
|
| 309 |
+
Emirate of Fujairah,Geographic Entities,1
|
| 310 |
+
SHire Ball,Food & Nutrition,1
|
| 311 |
+
Church Fathers,Culture & Entertainment,1
|
| 312 |
+
fleet management company,Finance-related,1
|
| 313 |
+
air dash,Linguistic Entities,1
|
| 314 |
+
interleukin-10,Physical Sciences,1
|
| 315 |
+
Nina williams,Culture & Entertainment,6
|
| 316 |
+
Haleakalā,Geographic Entities,2
|
| 317 |
+
LA CAPPELLA NEL DUOMO DI NAPOLI,Geographic Entities,1
|
| 318 |
+
HSBC,Finance-related,2
|
| 319 |
+
Marquetis Agency,Finance-related,1
|
| 320 |
+
Social Policy Research Centre,Geographic Entities,1
|
| 321 |
+
cornstarch,Food & Nutrition,2
|
| 322 |
+
Der Kunde ist König,Linguistic Entities,1
|
| 323 |
+
Ruta Azul,Geographic Entities,2
|
| 324 |
+
claude,Finance-related,3
|
| 325 |
+
21 Aprile,Linguistic Entities,1
|
| 326 |
+
Officer Timothy Wilson,People & Personal Attributes,4
|
| 327 |
+
roof,Medical Entities,1
|
| 328 |
+
Woody Allen,People & Personal Attributes,4
|
| 329 |
+
CASSANDRA JESSICA KELLY,People & Personal Attributes,1
|
| 330 |
+
roads,Geographic Entities,2
|
| 331 |
+
"Thursday, May 23, 2024",Weather & Earth Science,1
|
| 332 |
+
AGG,Finance-related,1
|
| 333 |
+
BELAY,Finance-related,1
|
| 334 |
+
febreze,Food & Nutrition,2
|
| 335 |
+
PCSK9,Life Sciences,2
|
| 336 |
+
Deviant Art,Finance-related,1
|
| 337 |
+
BTIKernelRetpolineEnabled,Linguistic Entities,1
|
| 338 |
+
restaurant food,Food & Nutrition,1
|
| 339 |
+
Bootstrap,Computing-Related,9
|
| 340 |
+
Bisu,People & Personal Attributes,1
|
| 341 |
+
02-05-2025,History-Related,1
|
| 342 |
+
ジョイフル恵利 秋田店,Geographic Entities,1
|
| 343 |
+
"Luleå, Sweden",Geographic Entities,1
|
| 344 |
+
AK,Linguistic Entities,1
|
| 345 |
+
playtest cloud,Finance-related,2
|
| 346 |
+
Sociability,People & Personal Attributes,1
|
| 347 |
+
SDL2,Finance-related,1
|
| 348 |
+
IAM Identity centre,Finance-related,1
|
| 349 |
+
solid food,Food & Nutrition,1
|
| 350 |
+
NCPS,Linguistic Entities,1
|
| 351 |
+
A. Lange & Söhne,Finance-related,14
|
| 352 |
+
Black-Scholes Model,Linguistic Entities,1
|
| 353 |
+
منير لعرج,People & Personal Attributes,1
|
| 354 |
+
Sur Mesure,Linguistic Entities,1
|
| 355 |
+
jessee,People & Personal Attributes,1
|
| 356 |
+
aprile,Linguistic Entities,2
|
| 357 |
+
customers,Linguistic Entities,1
|
| 358 |
+
Decreto Interministeriale n. 850 del 2011,History-Related,1
|
| 359 |
+
Western NY,Geographic Entities,1
|
| 360 |
+
titkok,Computing-Related,1
|
| 361 |
+
Hafen von Greetsiel,Geographic Entities,1
|
| 362 |
+
american english,Culture & Entertainment,9
|
| 363 |
+
plushiedreadfuls.com,Computing-Related,2
|
| 364 |
+
Haas tannery,Finance-related,1
|
| 365 |
+
Andor,Culture & Entertainment,4
|
| 366 |
+
Pitocin,Physical Sciences,1
|
| 367 |
+
Mon Oct 13 22:32:23.502439 2025,History-Related,1
|
| 368 |
+
redis,Linguistic Entities,1
|
| 369 |
+
Privio,Finance-related,1
|
| 370 |
+
78132,Geographic Entities,1
|
| 371 |
+
Karl-Marx-Stadt,Geographic Entities,1
|
| 372 |
+
lauzanne.thomas@live.fr,Computing-Related,1
|
| 373 |
+
down syndrome,Medical Entities,2
|
| 374 |
+
Bank of England,Finance-related,7
|
| 375 |
+
Roboto,Culture & Entertainment,2
|
| 376 |
+
Fabiana,People & Personal Attributes,3
|
| 377 |
+
Chipwits,Culture & Entertainment,2
|
| 378 |
+
Maurya,History-Related,1
|
| 379 |
+
Wale,Organism Types,1
|
| 380 |
+
Nuovo dizionario del dialetto novarese,Culture & Entertainment,1
|
| 381 |
+
Indian Pediatrics,Culture & Entertainment,1
|
| 382 |
+
storting,Linguistic Entities,1
|
| 383 |
+
DLL,Linguistic Entities,1
|
| 384 |
+
sukhumvit,Geographic Entities,1
|
| 385 |
+
2024-01-16,Linguistic Entities,1
|
| 386 |
+
Mardi,Linguistic Entities,2
|
| 387 |
+
psychologue,People & Personal Attributes,1
|
| 388 |
+
"Cedar City, Utah",Geographic Entities,2
|
| 389 |
+
Porra San Gallo,Geographic Entities,1
|
| 390 |
+
"November 8, 2024",Geographic Entities,1
|
| 391 |
+
Lady Kassi,People & Personal Attributes,1
|
| 392 |
+
Pointer finger,Medical Entities,1
|
| 393 |
+
Fidelity Total International Index Fund,Finance-related,1
|
| 394 |
+
Jenna Cadence,People & Personal Attributes,1
|
| 395 |
+
SNP,Life Sciences,17
|
| 396 |
+
Dario Aita,People & Personal Attributes,1
|
| 397 |
+
24/11/2024,Weather & Earth Science,1
|
| 398 |
+
N-acetilcisteina,Physical Sciences,1
|
| 399 |
+
ITIL v4,Linguistic Entities,2
|
| 400 |
+
Deputy Department Head,People & Personal Attributes,1
|
| 401 |
+
qemu-vmsr-helper,Linguistic Entities,1
|
| 402 |
+
smoking related disease,Medical Entities,1
|
| 403 |
+
insuficiencia intestinal,Medical Entities,2
|
| 404 |
+
Mayis,History-Related,1
|
| 405 |
+
Sony Vegas,Computing-Related,2
|
| 406 |
+
Deep Space Cache,Culture & Entertainment,2
|
| 407 |
+
Cross Fire Gambit,Culture & Entertainment,1
|
| 408 |
+
promised land,Geographic Entities,3
|
| 409 |
+
John Myller,People & Personal Attributes,1
|
| 410 |
+
02/05/2025,History-Related,1
|
| 411 |
+
MIRAE Tower,Geographic Entities,3
|
| 412 |
+
Transformer Model,Linguistic Entities,1
|
| 413 |
+
Valhalla Dream THCX,Food & Nutrition,5
|
| 414 |
+
tentree,Finance-related,2
|
| 415 |
+
Yellow #6,Food & Nutrition,1
|
| 416 |
+
Oz,Culture & Entertainment,1
|
| 417 |
+
Incrowd,Finance-related,1
|
| 418 |
+
movie theatre,Geographic Entities,1
|
| 419 |
+
Pokerap,Culture & Entertainment,1
|
| 420 |
+
v0.25.1,Computing-Related,1
|
| 421 |
+
"december 31, 2040",Geographic Entities,1
|
| 422 |
+
Road trip,Linguistic Entities,1
|
| 423 |
+
calorias,Linguistic Entities,1
|
| 424 |
+
parkplatz,Geographic Entities,1
|
| 425 |
+
Marie Wilkens,People & Personal Attributes,1
|
| 426 |
+
transatlantischen Tunnel,Geographic Entities,1
|
| 427 |
+
NY state,Geographic Entities,1
|
| 428 |
+
Muslim countries,Geographic Entities,1
|
| 429 |
+
SRAM eTap,Finance-related,1
|
| 430 |
+
Northeast Lakeview College,Geographic Entities,1
|
| 431 |
+
José Luna,People & Personal Attributes,1
|
| 432 |
+
SHAREPOINT,Computing-Related,1
|
| 433 |
+
Ethical Practice in Mental Health: Flashcards & Mind Map Guide,Culture & Entertainment,1
|
| 434 |
+
Tegris,Physical Sciences,1
|
| 435 |
+
Time,Mathematical & Computational Entities,1
|
| 436 |
+
To Kill Achilles,Culture & Entertainment,1
|
| 437 |
+
Wein,Food & Nutrition,1
|
| 438 |
+
SigmaM4n,People & Personal Attributes,1
|
| 439 |
+
may of 2025,Weather & Earth Science,3
|
| 440 |
+
Illusions-Akademie,Culture & Entertainment,2
|
| 441 |
+
Sears.com,Finance-related,2
|
| 442 |
+
Christoph,People & Personal Attributes,1
|
| 443 |
+
Goal Completion,Linguistic Entities,1
|
| 444 |
+
Fitbit Pay,Finance-related,1
|
| 445 |
+
Ames Housing Dataset,Linguistic Entities,1
|
| 446 |
+
Artic Ocean,Geographic Entities,1
|
| 447 |
+
Udege,People & Personal Attributes,3
|
| 448 |
+
Emotional Intelligence,Linguistic Entities,4
|
| 449 |
+
POBLACIÓN_PK,Linguistic Entities,1
|
| 450 |
+
bioware,Finance-related,1
|
| 451 |
+
Savings Account,Finance-related,1
|
| 452 |
+
Jude Bellingham,People & Personal Attributes,2
|
| 453 |
+
distress tolerance,Linguistic Entities,1
|
| 454 |
+
ReGraph,Finance-related,2
|
| 455 |
+
03-05-2025,Geographic Entities,3
|
| 456 |
+
Okocha,People & Personal Attributes,2
|
| 457 |
+
PA 4 of 2025,History-Related,1
|
| 458 |
+
Francia meridionale,Geographic Entities,1
|
| 459 |
+
studyflash,Finance-related,1
|
| 460 |
+
MultiFeatureMaskingObservationWrapper,Dynamical Systems,1
|
| 461 |
+
"April 22, 2014",History-Related,2
|
| 462 |
+
quantum field theory,Linguistic Entities,1
|
| 463 |
+
Giorgio Armani,People & Personal Attributes,1
|
| 464 |
+
Debunk Inc,Finance-related,3
|
| 465 |
+
GMT,Geographic Entities,5
|
| 466 |
+
93/94,Geographic Entities,1
|
| 467 |
+
brotfrieden von 1918,History-Related,1
|
| 468 |
+
"Latessa, E. J.",People & Personal Attributes,2
|
| 469 |
+
Billy Chapman,Culture & Entertainment,1
|
| 470 |
+
Neopadres,History-Related,1
|
| 471 |
+
Norguard,Finance-related,9
|
| 472 |
+
Mika Ogawa,Culture & Entertainment,3
|
| 473 |
+
Vigh Landscape Management Inc,Finance-related,1
|
| 474 |
+
dehydrated garlic,Food & Nutrition,1
|
| 475 |
+
SAUCE,Finance-related,1
|
| 476 |
+
music artists,Culture & Entertainment,1
|
| 477 |
+
Zone E),Geographic Entities,3
|
| 478 |
+
rose petals,Food & Nutrition,6
|
| 479 |
+
Pierre Gagnaire,People & Personal Attributes,1
|
| 480 |
+
Nome Ristorante,Finance-related,1
|
| 481 |
+
Reminder,Computing-Related,1
|
| 482 |
+
Cyber-Kevin 3000,Culture & Entertainment,1
|
| 483 |
+
H_IC,Linguistic Entities,2
|
| 484 |
+
xbox live,Finance-related,1
|
| 485 |
+
2006,Weather & Earth Science,4
|
| 486 |
+
American Diabetes Association,Finance-related,3
|
| 487 |
+
Peter Frampton,People & Personal Attributes,12
|
| 488 |
+
Foo,People & Personal Attributes,3
|
| 489 |
+
C. Pruneti,People & Personal Attributes,1
|
| 490 |
+
Sapphire Blue,Finance-related,2
|
| 491 |
+
Dolby Atmos,Finance-related,2
|
| 492 |
+
Nakano,People & Personal Attributes,1
|
| 493 |
+
fin whales,Organism Types,1
|
| 494 |
+
Construction/Management,Linguistic Entities,1
|
| 495 |
+
Groupe Rocher,Finance-related,1
|
| 496 |
+
CR News,Finance-related,1
|
| 497 |
+
Amerikas,Geographic Entities,1
|
| 498 |
+
Nao Higashihama,People & Personal Attributes,1
|
| 499 |
+
Bébé clandestin,Culture & Entertainment,1
|
| 500 |
+
Sanctity/Degradation,Linguistic Entities,1
|
| 501 |
+
state of emergency,History-Related,1
|
synthetic_multiplication/synthetic_multiplication.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
synthetic_nn/synthetic_nn.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|