调整学习率调度器的预热迭代次数,更新训练配置中的类别权重,修改损失函数中的权重,优化测试笔记本中的代码结构

This commit is contained in:
陈培栋 2024-10-15 19:49:58 +08:00
parent 294425fce4
commit 125c1ab6bd
4 changed files with 16 additions and 5 deletions

View File

@ -3,7 +3,7 @@ scheduler_type: LINEAR_WARMUP_THEN_POLY_SCHEDULER
# total_iters=epochs * 训练的图像数量
kwargs: |
{
"warmup_iters": 4356,
"warmup_iters": 2904,
"total_iters": 290400,
"warmup_ratio": 0.000001,
"min_lr": 0.,

View File

@ -8,6 +8,8 @@ epochs: 100
# 每一类的占比权重如果要让每一类的占比权重相同为1.0即可
weight:
- 1.0
- 1.0
- 1.0
# 数据集存放位置
root:

View File

@ -13,7 +13,8 @@ class FocalLoss(nn.Module):
super(FocalLoss, self).__init__()
self.gamma = gamma
self.eps = eps
self.ce = torch.nn.CrossEntropyLoss(weight=weight, reduction=reduction)
myweight = torch.tensor([1.0, 1.9, 1.0, 1.2]).cuda()
self.ce = torch.nn.CrossEntropyLoss(weight=myweight, reduction=reduction)
def forward(self, x, y):
logp = self.ce(x, y)

View File

@ -2,17 +2,18 @@
"cells": [
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"from PIL import Image\n",
"import numpy as np"
"import numpy as np\n",
"import os"
]
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 2,
"metadata": {},
"outputs": [
{
@ -84,6 +85,13 @@
"print(image_array.shape)\n",
"print(image_array)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {