fix(logging): improve JSON serialization and add wandb directory to gitignore
- Fix float32 serialization issue in unified logger metrics flushing - Add jax.numpy import for proper type handling - Add wandb/ directory to .gitignore to exclude temporary tracking files - Tested wandb integration: metrics, artifacts, and local backup working correctly
This commit is contained in:
parent
dc3531071f
commit
8ec693f04c
2 changed files with 14 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -2,6 +2,9 @@
|
|||
artifacts/*
|
||||
runs/*
|
||||
|
||||
# Experiment tracking
|
||||
wandb/
|
||||
|
||||
# Python-generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
|
|
|
|||
Reference in a new issue