Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#396 Trainer constructor cleanup

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-266_clean_trainer_ctor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  1. {
  2. "version": 1,
  3. "disable_existing_loggers": false,
  4. "formatters": {
  5. "fileFormatter": {
  6. "format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s",
  7. "datefmt": "[%Y-%m-%d %H:%M:%S]"
  8. },
  9. "consoleFormatter": {
  10. "format": "%(module)s -%(levelname)s- %(message)s",
  11. "datefmt": "[%Y-%m-%d %H:%M:%S]"
  12. }
  13. },
  14. "handlers": {
  15. "console": {
  16. "class": "logging.StreamHandler",
  17. "level": "INFO",
  18. "formatter": "consoleFormatter",
  19. "stream": "ext://sys.stdout"
  20. }
  21. },
  22. "loggers": {},
  23. "root": {
  24. "level": "WARN",
  25. "handlers": [
  26. "console"
  27. ]
  28. }
  29. }
Discard
Tip!

Press p or to see the previous file or, n or to see the next file