mnist one hot 인코딩 적용후 손실 함수 mse 로 변경
This commit is contained in:
jung-geun
2023-07-11 15:00:50 +09:00
parent 026223bd19
commit 2b010c4257
10 changed files with 21 additions and 21 deletions

View File

@@ -84,12 +84,12 @@ if __name__ == "__main__":
try:
pso_mnist = Optimizer(
model,
loss=loss[1],
loss=loss[0],
n_particles=75,
c0=0.25,
c1=0.4,
w_min=0.3,
w_max=0.7,
w_min=0.2,
w_max=0.55,
negative_swarm=0.1,
mutation_swarm=0.2,
)