File size: 14,827 Bytes
857c2e9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | #!/usr/bin/env python3
"""
Script to count trajectories in each processed dataset.
This script reads the preprocess.yaml configuration and counts the number of
trajectories in each dataset/subset combination by loading the processed datasets.
"""
import os
import json
import yaml
from pathlib import Path
from datasets import Dataset
from rich.console import Console
from rich.table import Table
from rich import print as rprint
def load_preprocess_config(config_path: str = "robometer/configs/preprocess.yaml") -> dict:
"""Load the preprocess configuration file."""
with open(config_path, "r") as f:
config = yaml.safe_load(f)
return config
def get_cache_dir_for_dataset(base_cache_dir: str, dataset_path: str, subset: str) -> str:
"""
Construct the cache directory path for a dataset/subset pair.
Following the logic from robometer/data/scripts/preprocess_datasets.py:
cache_key = f"{dataset_path}/{subset}"
individual_cache_dir = os.path.join(cache_dir, cache_key.replace("/", "_").replace(":", "_"))
"""
cache_key = f"{dataset_path}/{subset}"
individual_cache_dir = os.path.join(base_cache_dir, cache_key.replace("/", "_").replace(":", "_"))
return individual_cache_dir
def count_trajectories_in_dataset(cache_dir: str) -> dict:
"""
Count trajectories in a processed dataset directory.
Returns a dictionary with:
- 'count': number of trajectories
- 'exists': whether the dataset exists
- 'error': any error message
"""
result = {"count": 0, "exists": False, "error": None}
# Check if cache directory exists
if not os.path.exists(cache_dir):
result["error"] = "Cache directory not found"
return result
# Check for dataset_info.json
info_file = os.path.join(cache_dir, "dataset_info.json")
if not os.path.exists(info_file):
result["error"] = "dataset_info.json not found"
return result
# Check for processed_dataset directory
dataset_cache_dir = os.path.join(cache_dir, "processed_dataset")
if not os.path.exists(dataset_cache_dir):
result["error"] = "processed_dataset directory not found"
return result
result["exists"] = True
try:
# Load the dataset to count trajectories
dataset = Dataset.load_from_disk(dataset_cache_dir, keep_in_memory=False)
result["count"] = len(dataset)
# Also read dataset_info.json for additional metadata
with open(info_file, "r") as f:
info = json.load(f)
result["info"] = info
except Exception as e:
result["error"] = f"Error loading dataset: {str(e)}"
return result
def main():
"""Main function to count trajectories in all processed datasets."""
console = Console()
# Get the processed datasets path from environment variable
cache_dir = os.environ.get("ROBOMETER_PROCESSED_DATASETS_PATH", "")
if not cache_dir:
console.print(
"[bold red]Error:[/bold red] ROBOMETER_PROCESSED_DATASETS_PATH environment variable is not set!"
)
console.print("Please set it to the directory containing your processed datasets.")
console.print("Example: export ROBOMETER_PROCESSED_DATASETS_PATH=/path/to/robometer/processed_datasets")
return
console.print(f"[bold]Using cache directory:[/bold] {cache_dir}")
# Load preprocess configuration
config_path = "robometer/configs/preprocess.yaml"
if not os.path.exists(config_path):
console.print(f"[bold red]Error:[/bold red] Config file not found: {config_path}")
return
config = load_preprocess_config(config_path)
console.print(f"[bold]Loaded config from:[/bold] {config_path}\n")
# Process training datasets
train_datasets = config.get("train_datasets", [])
train_subsets = config.get("train_subsets", [])
# Process evaluation datasets
eval_datasets = config.get("eval_datasets", [])
eval_subsets = config.get("eval_subsets", [])
# Create tables for display
train_table = Table(title="Training Datasets - Trajectory Counts", show_header=True, header_style="bold magenta")
train_table.add_column("Dataset", style="cyan", width=40)
train_table.add_column("Subset", style="green", width=35)
train_table.add_column("Trajectories", justify="right", style="yellow")
train_table.add_column("Status", style="white")
eval_table = Table(title="Evaluation Datasets - Trajectory Counts", show_header=True, header_style="bold magenta")
eval_table.add_column("Dataset", style="cyan", width=40)
eval_table.add_column("Subset", style="green", width=35)
eval_table.add_column("Trajectories", justify="right", style="yellow")
eval_table.add_column("Status", style="white")
# Count training datasets
console.print("[bold blue]Processing Training Datasets...[/bold blue]")
train_total = 0
train_found = 0
train_dataset_aggregates = {} # To store aggregated counts per dataset
train_rows = [] # Collect rows for sorting
for dataset_path, dataset_subsets in zip(train_datasets, train_subsets):
if dataset_path not in train_dataset_aggregates:
train_dataset_aggregates[dataset_path] = {"count": 0, "found": 0, "total_subsets": 0}
for subset in dataset_subsets:
train_dataset_aggregates[dataset_path]["total_subsets"] += 1
individual_cache_dir = get_cache_dir_for_dataset(cache_dir, dataset_path, subset)
result = count_trajectories_in_dataset(individual_cache_dir)
if result["exists"] and result["error"] is None:
count_str = f"{result['count']:,}"
status = "✓ Found"
status_style = "green"
train_total += result["count"]
train_found += 1
train_dataset_aggregates[dataset_path]["count"] += result["count"]
train_dataset_aggregates[dataset_path]["found"] += 1
count_value = result["count"]
else:
count_str = "N/A"
status = f"✗ {result['error']}"
status_style = "red"
count_value = -1 # Use -1 for sorting (will appear at end)
train_rows.append((
count_value,
dataset_path,
subset,
count_str,
f"[{status_style}]{status}[/{status_style}]",
))
# Sort by count (descending), then add to table
train_rows.sort(key=lambda x: x[0], reverse=True)
for _, dataset_path, subset, count_str, status_display in train_rows:
train_table.add_row(dataset_path, subset, count_str, status_display)
# Count evaluation datasets
console.print("[bold blue]Processing Evaluation Datasets...[/bold blue]")
eval_total = 0
eval_found = 0
eval_dataset_aggregates = {} # To store aggregated counts per dataset
eval_rows = [] # Collect rows for sorting
for dataset_path, dataset_subsets in zip(eval_datasets, eval_subsets):
if dataset_path not in eval_dataset_aggregates:
eval_dataset_aggregates[dataset_path] = {"count": 0, "found": 0, "total_subsets": 0}
for subset in dataset_subsets:
eval_dataset_aggregates[dataset_path]["total_subsets"] += 1
individual_cache_dir = get_cache_dir_for_dataset(cache_dir, dataset_path, subset)
result = count_trajectories_in_dataset(individual_cache_dir)
if result["exists"] and result["error"] is None:
count_str = f"{result['count']:,}"
status = "✓ Found"
status_style = "green"
eval_total += result["count"]
eval_found += 1
eval_dataset_aggregates[dataset_path]["count"] += result["count"]
eval_dataset_aggregates[dataset_path]["found"] += 1
count_value = result["count"]
else:
count_str = "N/A"
status = f"✗ {result['error']}"
status_style = "red"
count_value = -1 # Use -1 for sorting (will appear at end)
eval_rows.append((
count_value,
dataset_path,
subset,
count_str,
f"[{status_style}]{status}[/{status_style}]",
))
# Sort by count (descending), then add to table
eval_rows.sort(key=lambda x: x[0], reverse=True)
for _, dataset_path, subset, count_str, status_display in eval_rows:
eval_table.add_row(dataset_path, subset, count_str, status_display)
# Display results
console.print()
console.print(train_table)
console.print()
console.print(eval_table)
console.print()
# Create aggregated tables
train_agg_table = Table(
title="Training Datasets - Aggregated by Dataset", show_header=True, header_style="bold magenta"
)
train_agg_table.add_column("Dataset", style="cyan", width=50)
train_agg_table.add_column("Total Trajectories", justify="right", style="yellow")
train_agg_table.add_column("Subsets Found/Total", justify="center", style="green")
# Sort by count (descending)
train_agg_items = sorted(train_dataset_aggregates.items(), key=lambda x: x[1]["count"], reverse=True)
for dataset_path, agg in train_agg_items:
count_str = f"{agg['count']:,}" if agg["count"] > 0 else "0"
subsets_str = f"{agg['found']}/{agg['total_subsets']}"
# Color code based on whether all subsets were found
if agg["found"] == agg["total_subsets"] and agg["total_subsets"] > 0:
subsets_display = f"[green]{subsets_str}[/green]"
elif agg["found"] > 0:
subsets_display = f"[yellow]{subsets_str}[/yellow]"
else:
subsets_display = f"[red]{subsets_str}[/red]"
train_agg_table.add_row(dataset_path, count_str, subsets_display)
eval_agg_table = Table(
title="Evaluation Datasets - Aggregated by Dataset", show_header=True, header_style="bold magenta"
)
eval_agg_table.add_column("Dataset", style="cyan", width=50)
eval_agg_table.add_column("Total Trajectories", justify="right", style="yellow")
eval_agg_table.add_column("Subsets Found/Total", justify="center", style="green")
# Sort by count (descending)
eval_agg_items = sorted(eval_dataset_aggregates.items(), key=lambda x: x[1]["count"], reverse=True)
for dataset_path, agg in eval_agg_items:
count_str = f"{agg['count']:,}" if agg["count"] > 0 else "0"
subsets_str = f"{agg['found']}/{agg['total_subsets']}"
# Color code based on whether all subsets were found
if agg["found"] == agg["total_subsets"] and agg["total_subsets"] > 0:
subsets_display = f"[green]{subsets_str}[/green]"
elif agg["found"] > 0:
subsets_display = f"[yellow]{subsets_str}[/yellow]"
else:
subsets_display = f"[red]{subsets_str}[/red]"
eval_agg_table.add_row(dataset_path, count_str, subsets_display)
# Display aggregated tables
console.print(train_agg_table)
console.print()
console.print(eval_agg_table)
console.print()
# Summary
summary_table = Table(title="Summary", show_header=True, header_style="bold magenta")
summary_table.add_column("Category", style="cyan")
summary_table.add_column("Total Trajectories", justify="right", style="yellow")
summary_table.add_column("Datasets Found", justify="right", style="green")
summary_table.add_row("Training", f"{train_total:,}", str(train_found))
summary_table.add_row("Evaluation", f"{eval_total:,}", str(eval_found))
summary_table.add_row(
"[bold]Grand Total[/bold]",
f"[bold]{train_total + eval_total:,}[/bold]",
f"[bold]{train_found + eval_found}[/bold]",
)
console.print(summary_table)
console.print()
# Save results to JSON
output_file = "trajectory_counts.json"
# Prepare aggregated data for JSON
train_aggregates_json = {}
for dataset_path, agg in train_dataset_aggregates.items():
train_aggregates_json[dataset_path] = {
"total_trajectories": agg["count"],
"subsets_found": agg["found"],
"total_subsets": agg["total_subsets"],
}
eval_aggregates_json = {}
for dataset_path, agg in eval_dataset_aggregates.items():
eval_aggregates_json[dataset_path] = {
"total_trajectories": agg["count"],
"subsets_found": agg["found"],
"total_subsets": agg["total_subsets"],
}
results = {
"cache_dir": cache_dir,
"training_datasets": [],
"training_datasets_aggregated": train_aggregates_json,
"evaluation_datasets": [],
"evaluation_datasets_aggregated": eval_aggregates_json,
"summary": {
"train_total_trajectories": train_total,
"train_datasets_found": train_found,
"eval_total_trajectories": eval_total,
"eval_datasets_found": eval_found,
"grand_total_trajectories": train_total + eval_total,
"total_datasets_found": train_found + eval_found,
},
}
# Add training dataset details
for dataset_path, dataset_subsets in zip(train_datasets, train_subsets):
for subset in dataset_subsets:
individual_cache_dir = get_cache_dir_for_dataset(cache_dir, dataset_path, subset)
result = count_trajectories_in_dataset(individual_cache_dir)
results["training_datasets"].append({
"dataset": dataset_path,
"subset": subset,
"cache_dir": individual_cache_dir,
"trajectory_count": result["count"] if result["exists"] else None,
"exists": result["exists"],
"error": result["error"],
})
# Add evaluation dataset details
for dataset_path, dataset_subsets in zip(eval_datasets, eval_subsets):
for subset in dataset_subsets:
individual_cache_dir = get_cache_dir_for_dataset(cache_dir, dataset_path, subset)
result = count_trajectories_in_dataset(individual_cache_dir)
results["evaluation_datasets"].append({
"dataset": dataset_path,
"subset": subset,
"cache_dir": individual_cache_dir,
"trajectory_count": result["count"] if result["exists"] else None,
"exists": result["exists"],
"error": result["error"],
})
with open(output_file, "w") as f:
json.dump(results, f, indent=2)
console.print(f"[bold green]Results saved to:[/bold green] {output_file}")
if __name__ == "__main__":
main()
|