mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-20 04:50:45 +09:00
23-05-29
EBPSO 알고리즘 구현 - 선택지로 추가 random 으로 분산시키는 방법 구현 - 선택지로 추가 iris 기준 98퍼센트로 나오나 정확한 결과를 지켜봐야 할것으로 보임
This commit is contained in:
14
psokeras/__init__.py
Executable file
14
psokeras/__init__.py
Executable file
@@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""PSOkeras - Particle Swarm Optimizer for Keras models
|
||||
|
||||
This module implements a particle swarm optimizer for training the weights of Keras models. The
|
||||
|
||||
"""
|
||||
|
||||
|
||||
from .version import __version__
|
||||
from .optimizer import Optimizer
|
||||
|
||||
__all__ = [
|
||||
'Optimizer',
|
||||
]
|
||||
Reference in New Issue
Block a user