✏️ [Fix] project name, and a import typo of wandb
Browse files- pyproject.toml +1 -1
- yolo/tools/log_helper.py +1 -1
pyproject.toml
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
[project]
|
2 |
-
name = "
|
3 |
version = "0.0.0"
|
4 |
dynamic = ["dependencies"]
|
5 |
|
|
|
1 |
[project]
|
2 |
+
name = "yolo"
|
3 |
version = "0.0.0"
|
4 |
dynamic = ["dependencies"]
|
5 |
|
yolo/tools/log_helper.py
CHANGED
@@ -16,7 +16,7 @@ import sys
|
|
16 |
from typing import Dict, List
|
17 |
|
18 |
import wandb
|
19 |
-
import wandb.errors
|
20 |
from loguru import logger
|
21 |
from rich.console import Console
|
22 |
from rich.progress import BarColumn, Progress, TextColumn, TimeRemainingColumn
|
|
|
16 |
from typing import Dict, List
|
17 |
|
18 |
import wandb
|
19 |
+
import wandb.errors.term
|
20 |
from loguru import logger
|
21 |
from rich.console import Console
|
22 |
from rich.progress import BarColumn, Progress, TextColumn, TimeRemainingColumn
|