feat: Initial commit of Clutch-IQ project

This commit is contained in:
xunyulin230420
2026-02-05 23:26:03 +08:00
commit a355239861
66 changed files with 12922 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from demoparser2 import DemoParser
import pandas as pd
demo_path = "data/demos/furia-vs-falcons-m3-train.dem"
parser = DemoParser(demo_path)
# Check round_end events
events = parser.parse_events(["round_end"])
for name, df in events:
if name == "round_end":
print("Columns:", df.columns)
print(df.head())