출력한 history 이미지 위치 수정
mnist 학습 현황 추가
This commit is contained in:
jung-geun
2023-06-03 22:00:54 +09:00
parent 0d99329a43
commit e484f9f92f
9 changed files with 12 additions and 11 deletions

View File

@@ -57,8 +57,6 @@ def make_model():
model.add(Dense(128, activation='relu'))
model.add(Dense(10, activation='softmax'))
# model.summary()
return model
# %%
@@ -83,7 +81,7 @@ pso_mnist = Optimizer(
c0=0.35,
c1=0.8,
w_min=0.7,
w_max=1.1,
w_max=1.0,
negative_swarm=0.25
)