feat: Initial commit of Clutch-IQ project
This commit is contained in:
13
tools/debug/debug_round_end.py
Normal file
13
tools/debug/debug_round_end.py
Normal 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())
|
||||
Reference in New Issue
Block a user