更新.gitignore,新增忽略结果、日志和权重文件;更新README.md,添加参考链接

This commit is contained in:
TY1667
2025-10-19 21:31:18 +08:00
parent f23a22632f
commit 76d7149512
2 changed files with 11 additions and 2 deletions

5
.gitignore vendored
View File

@@ -296,5 +296,8 @@ Network Trash Folder
Temporary Items Temporary Items
.apdisk .apdisk
# ---> Custom
results/ results/
*.log *.log
*.txt
weights/

View File

@@ -21,4 +21,10 @@ nohup python fed_run.py > train.log 2>&1 &
- Implement FedNova - Implement FedNova
- Add more YOLO versions (e.g., YOLOv8, YOLOv5, etc.) - Add more YOLO versions (e.g., YOLOv8, YOLOv5, etc.)
- Implement YOLOv8 - Implement YOLOv8
- Implement YOLOv5 - Implement YOLOv5
# references
[PyTorch Federated Learning](https://github.com/rruisong/pytorch_federated_learning)
[YOLOv11-pt](https://github.com/jahongir7174/YOLOv11-pt)