b2u commited on
Commit
0bd8dce
·
1 Parent(s): e8ef760

logging the data structure

Browse files
Files changed (1) hide show
  1. model.py +3 -0
model.py CHANGED
@@ -193,4 +193,7 @@ Category:"""
193
  if event not in valid_events:
194
  logger.warning(f"Skip training: event {event} is not supported")
195
  return
 
 
 
196
 
 
193
  if event not in valid_events:
194
  logger.warning(f"Skip training: event {event} is not supported")
195
  return
196
+
197
+ #log the full data structure for debugging
198
+ logger.info(f"Full data structure: {json.dumps(data, indent=2)}")
199