instruction stringclasses 3
values | response stringclasses 4
values | category stringclasses 3
values | source stringclasses 1
value |
|---|---|---|---|
Explain this attacking drill: | Week 2 - RWB Attacking-RJA
CCaatteeggoorryy:: Tactical: Attacking principles LFC IA Global
SSkkiillll:: U7 (MI) Reece Richardson
DDeessccrriippttiioonn
LFC Role Model : Gakpo
LFC Values : Commitment
LFC Terminology: Body shape , Scan
PA_RWTB
28/9/2024
KKiinngg ooff tthhee RRiinngg ((1100 mmiinnss))
TTHHEE SSEESSSSIIOON... | attacking | soccer_tactics_pdf |
Explain this attacking drill: | U9/U10TRAININGSESSION1
CYCLE1 PHASE: TOPIC/FOCUSPOINTS: EQUIPMENT: AREA: TIME:
WEEK1 Attacking ● Receiving Various sizes of soccer balls, large 50y x 30y 60-75
● Shieldingtheball and small cones, pinnies (two minutes
AGE: PRINCIPLE: ● Passing colors), four small goals, two larger
U9/U10 Possessionplayinthebuildup goals... | attacking | soccer_tactics_pdf |
Explain this defending drill: | U9/U10TRAININGSESSION10
CYCLE2 PHASE: TOPIC/FOCUSPOINTS: EQUIPMENT: AREA: TIME:
WEEK4 Defending ● Quickpressureontheball Various sizes of soccer balls, 50y x 30y 60-75
● Makethefieldsmalltogether large and small cones, minutes
AGE: PRINCIPLE: pinnies (two colors), four
U9/U10 Denytheopponenttoplaytheball small goals, t... | defending | soccer_tactics_pdf |
Explain this passing drill: | U7&U8TRAININGSESSION2
CYCLE1 PHASE: TOPIC/FOCUSPOINTS: EQUIPMENT: Various sizes of soccer balls, large and AREA: TIME:
WEEK2 Attacking ● Passing small cones, pinnies (two colors), four small goals, two 40y x 25y 60min.
● Receiving larger goals.
AGE: U7/U8 ● Dribbling
ACTIVITY1-LinktoActivity SETUP FOCUSPOINTS
Dribble, ... | passing | soccer_tactics_pdf |
Explain this attacking drill: | Week 2 - RWB Attacking-RJA
CCaatteeggoorryy:: Tactical: Attacking principles LFC IA Global
SSkkiillll:: U7 (MI) Reece Richardson
DDeessccrriippttiioonn
LFC Role Model : Gakpo
LFC Values : Commitment
LFC Terminology: Body shape , Scan
PA_RWTB
28/9/2024
KKiinngg ooff tthhee RRiinngg ((1100 mmiinnss))
TTHHEE SSEESSSSIIOON... | attacking | soccer_tactics_pdf |
Explain this attacking drill: | U9/U10TRAININGSESSION1
CYCLE1 PHASE: TOPIC/FOCUSPOINTS: EQUIPMENT: AREA: TIME:
WEEK1 Attacking ● Receiving Various sizes of soccer balls, large 50y x 30y 60-75
● Shieldingtheball and small cones, pinnies (two minutes
AGE: PRINCIPLE: ● Passing colors), four small goals, two larger
U9/U10 Possessionplayinthebuildup goals... | attacking | soccer_tactics_pdf |
Explain this defending drill: | U9/U10TRAININGSESSION10
CYCLE2 PHASE: TOPIC/FOCUSPOINTS: EQUIPMENT: AREA: TIME:
WEEK4 Defending ● Quickpressureontheball Various sizes of soccer balls, 50y x 30y 60-75
● Makethefieldsmalltogether large and small cones, minutes
AGE: PRINCIPLE: pinnies (two colors), four
U9/U10 Denytheopponenttoplaytheball small goals, t... | defending | soccer_tactics_pdf |
Explain this passing drill: | U7&U8TRAININGSESSION2
CYCLE1 PHASE: TOPIC/FOCUSPOINTS: EQUIPMENT: Various sizes of soccer balls, large and AREA: TIME:
WEEK2 Attacking ● Passing small cones, pinnies (two colors), four small goals, two 40y x 25y 60min.
● Receiving larger goals.
AGE: U7/U8 ● Dribbling
ACTIVITY1-LinktoActivity SETUP FOCUSPOINTS
Dribble, ... | passing | soccer_tactics_pdf |
Soccer IQ - SFT Dataset
Dataset Description
This dataset contains instruction-response pairs for fine-tuning Large Language Models (LLMs) on soccer coaching, tactics, and training knowledge.
Dataset Summary
- Task: Instruction-following for soccer coaching and tactics
- Language: English
- Format: Instruction-response pairs
- Domain: Soccer coaching, tactical analysis, training drills
- Examples: 4
- Categories: attacking, passing, defending
Intended Use
This dataset is designed for:
- Fine-tuning LLMs for soccer coaching assistance
- Training models to understand tactical concepts
- Building soccer knowledge AI systems
- Instruction tuning for sports-specific applications
Dataset Structure
Data Fields
Each example contains:
instruction(string): A question, task, or prompt about soccer tactics/coachingresponse(string): Detailed answer or explanationcategory(string): Category of the content (e.g., attacking, defending, passing)source(string): Origin of the data
Example
{
"instruction": "Explain the coaching points for a 4-4-2 pressing drill",
"response": "Key coaching points include: 1. Angle of approach - ensure the pressing player approaches at an angle that cuts off the most dangerous passing lane. 2. Body shape - maintain a side-on stance to be able to react quickly. 3. Timing - coordinate with teammates to press simultaneously. 4. Recovery run - if the press is beaten, immediate sprint back into defensive shape.",
"category": "defending",
"source": "soccer_tactics_pdf"
}
Usage
Loading the Dataset
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("bocchia1122/soccer-iq")
# Access examples
print(dataset["train"][0])
Fine-Tuning Example
Using TRL (Transformers Reinforcement Learning)
from datasets import load_dataset
from trl import SFTTrainer
from transformers import AutoModelForCausalLM, AutoTokenizer, TrainingArguments
# Load dataset
dataset = load_dataset("bocchia1122/soccer-iq")
# Load model
model_name = "mistralai/Mistral-7B-v0.1"
model = AutoModelForCausalLM.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
# Format function
def format_instruction(example):
return f"### Instruction:\n{example['instruction']}\n\n### Response:\n{example['response']}"
# Training arguments
training_args = TrainingArguments(
output_dir="./soccer-iq-model",
num_train_epochs=3,
per_device_train_batch_size=4,
learning_rate=2e-5,
)
# Create trainer
trainer = SFTTrainer(
model=model,
args=training_args,
train_dataset=dataset["train"],
formatting_func=format_instruction,
max_seq_length=2048,
)
# Train
trainer.train()
Using Axolotl
Create config.yml:
base_model: mistralai/Mistral-7B-v0.1
datasets:
- path: bocchia1122/soccer-iq
type: alpaca
sequence_len: 2048
adapter: lora
lora_r: 16
lora_alpha: 32
num_epochs: 3
learning_rate: 0.00002
Run: axolotl train config.yml
Dataset Creation
This dataset was created by:
- Extracting text from soccer coaching PDFs
- Cleaning and segmenting the content
- Generating instruction-response pairs
- Manual review and quality control
Source Data
The source material includes professional soccer coaching documents covering:
- Attacking tactics and drills
- Defensive strategies and positioning
- Passing techniques and ball skills
- Training session plans
- Coaching methodologies
Limitations and Biases
- Dataset size is limited; may benefit from additional examples
- Content is primarily focused on European football coaching methods
- May not cover all tactical systems or coaching philosophies comprehensively
- Quality of instruction-response pairs depends on source material clarity
Citation
If you use this dataset in your work, please cite:
@dataset{soccer_iq_sft,
title={Soccer IQ - SFT Dataset},
author={Dataset Creator},
year={2024},
publisher={Hugging Face},
url={https://huggingface.co/datasets/bocchia1122/soccer-iq}
}
License
MIT License - See LICENSE file for details
Contact
For questions or issues with this dataset, please open an issue on the dataset repository page.
Note: This is a specialized dataset for soccer coaching. For best results, fine-tune on a base model with good general reasoning capabilities.
- Downloads last month
- 30