Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yolov5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
yolov5
Commits
b53917de
Unverified
提交
b53917de
authored
4月 26, 2022
作者:
Glenn Jocher
提交者:
GitHub
4月 26, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove `tqdm.auto` (#7599)
上级
2611477d
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
11 行增加
和
11 行删除
+11
-11
Argoverse.yaml
data/Argoverse.yaml
+1
-1
Objects365.yaml
data/Objects365.yaml
+1
-1
SKU-110K.yaml
data/SKU-110K.yaml
+1
-1
VOC.yaml
data/VOC.yaml
+1
-1
VisDrone.yaml
data/VisDrone.yaml
+1
-1
xView.yaml
data/xView.yaml
+1
-1
train.py
train.py
+1
-1
autoanchor.py
utils/autoanchor.py
+1
-1
datasets.py
utils/datasets.py
+1
-1
wandb_utils.py
utils/loggers/wandb/wandb_utils.py
+1
-1
val.py
val.py
+1
-1
没有找到文件。
data/Argoverse.yaml
浏览文件 @
b53917de
...
...
@@ -22,7 +22,7 @@ names: ['person', 'bicycle', 'car', 'motorcycle', 'bus', 'truck', 'traffic
download
:
|
import json
from tqdm
.auto
import tqdm
from tqdm import tqdm
from utils.general import download, Path
...
...
data/Objects365.yaml
浏览文件 @
b53917de
...
...
@@ -60,7 +60,7 @@ names: ['Person', 'Sneakers', 'Chair', 'Other Shoes', 'Hat', 'Car', 'Lamp', 'Gla
# Download script/URL (optional) ---------------------------------------------------------------------------------------
download
:
|
from tqdm
.auto
import tqdm
from tqdm import tqdm
from utils.general import Path, check_requirements, download, np, xyxy2xywhn
...
...
data/SKU-110K.yaml
浏览文件 @
b53917de
...
...
@@ -21,7 +21,7 @@ names: ['object'] # class names
# Download script/URL (optional) ---------------------------------------------------------------------------------------
download
:
|
import shutil
from tqdm
.auto
import tqdm
from tqdm import tqdm
from utils.general import np, pd, Path, download, xyxy2xywh
...
...
data/VOC.yaml
浏览文件 @
b53917de
...
...
@@ -29,7 +29,7 @@ names: ['aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', '
download
:
|
import xml.etree.ElementTree as ET
from tqdm
.auto
import tqdm
from tqdm import tqdm
from utils.general import download, Path
...
...
data/VisDrone.yaml
浏览文件 @
b53917de
...
...
@@ -24,7 +24,7 @@ download: |
def visdrone2yolo(dir):
from PIL import Image
from tqdm
.auto
import tqdm
from tqdm import tqdm
def convert_box(size, box):
# Convert VisDrone box to YOLO xywh box
...
...
data/xView.yaml
浏览文件 @
b53917de
...
...
@@ -34,7 +34,7 @@ download: |
import numpy as np
from PIL import Image
from tqdm
.auto
import tqdm
from tqdm import tqdm
from utils.datasets import autosplit
from utils.general import download, xyxy2xywhn
...
...
train.py
浏览文件 @
b53917de
...
...
@@ -30,7 +30,7 @@ import yaml
from
torch.cuda
import
amp
from
torch.nn.parallel
import
DistributedDataParallel
as
DDP
from
torch.optim
import
SGD
,
Adam
,
AdamW
,
lr_scheduler
from
tqdm
.auto
import
tqdm
from
tqdm
import
tqdm
FILE
=
Path
(
__file__
)
.
resolve
()
ROOT
=
FILE
.
parents
[
0
]
# YOLOv5 root directory
...
...
utils/autoanchor.py
浏览文件 @
b53917de
...
...
@@ -8,7 +8,7 @@ import random
import
numpy
as
np
import
torch
import
yaml
from
tqdm
.auto
import
tqdm
from
tqdm
import
tqdm
from
utils.general
import
LOGGER
,
colorstr
,
emojis
...
...
utils/datasets.py
浏览文件 @
b53917de
...
...
@@ -24,7 +24,7 @@ import torch.nn.functional as F
import
yaml
from
PIL
import
ExifTags
,
Image
,
ImageOps
from
torch.utils.data
import
DataLoader
,
Dataset
,
dataloader
,
distributed
from
tqdm
.auto
import
tqdm
from
tqdm
import
tqdm
from
utils.augmentations
import
Albumentations
,
augment_hsv
,
copy_paste
,
letterbox
,
mixup
,
random_perspective
from
utils.general
import
(
DATASETS_DIR
,
LOGGER
,
NUM_THREADS
,
check_dataset
,
check_requirements
,
check_yaml
,
clean_str
,
...
...
utils/loggers/wandb/wandb_utils.py
浏览文件 @
b53917de
...
...
@@ -8,7 +8,7 @@ from pathlib import Path
from
typing
import
Dict
import
yaml
from
tqdm
.auto
import
tqdm
from
tqdm
import
tqdm
FILE
=
Path
(
__file__
)
.
resolve
()
ROOT
=
FILE
.
parents
[
3
]
# YOLOv5 root directory
...
...
val.py
浏览文件 @
b53917de
...
...
@@ -27,7 +27,7 @@ from threading import Thread
import
numpy
as
np
import
torch
from
tqdm
.auto
import
tqdm
from
tqdm
import
tqdm
FILE
=
Path
(
__file__
)
.
resolve
()
ROOT
=
FILE
.
parents
[
0
]
# YOLOv5 root directory
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论