更改最小测试示例

This commit is contained in:
myh 2025-04-21 23:50:41 +08:00
parent dd0e0d869c
commit 9d99b00e55
22 changed files with 2 additions and 10 deletions

View File

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

View File

@ -1 +0,0 @@
0 0.5 0.5 0.2 0.2

View File

@ -1 +0,0 @@
1 0.3 0.3 0.4 0.4

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

View File

@ -1 +0,0 @@
0 0.5 0.5 0.2 0.2

View File

@ -1 +0,0 @@
1 0.3 0.3 0.4 0.4

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

View File

@ -1 +0,0 @@
0 0.5 0.5 0.2 0.2

View File

@ -1 +0,0 @@
1 0.3 0.3 0.4 0.4

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

View File

@ -1 +0,0 @@
0 0.5 0.5 0.2 0.2

View File

@ -1 +0,0 @@
1 0.3 0.3 0.4 0.4

View File

@ -71,7 +71,7 @@ def federated_train(num_rounds, clients_data):
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
global_model = YOLO("yolov8n.pt").to(device)
# 设置类别数
global_model.model.nc = 2
# global_model.model.nc = 2
for _ in range(num_rounds):
client_weights = []
@ -96,7 +96,7 @@ def federated_train(num_rounds, clients_data):
local_model.train(
data=data_path,
epochs=1, # 每轮本地训练1个epoch
imgsz=128, # 图像大小
imgsz=640, # 图像大小
verbose=False # 关闭冗余输出
)