Spaces:
Paused
Paused
logging the data structure
Browse files
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 |
|