batch size 적용 -> 속도 개선
역전파 1회 적용 -> 조기 수렴을 일부 방지
This commit is contained in:
jung-geun
2023-10-18 14:42:59 +09:00
parent f32433d935
commit dfc0df7d48
10 changed files with 157 additions and 63 deletions

View File

@@ -7,7 +7,7 @@ VERSION = pso.__version__
setup(
name="pso2keras",
version=VERSION,
description="Particle Swarm Optimization to tensorflow package",
description="Particle Swarm Optimization on tensorflow package",
author="pieroot",
author_email="jgbong0306@gmail.com",
url="https://github.com/jung-geun/PSO",
@@ -16,8 +16,8 @@ setup(
"numpy",
"pandas",
"ipython",
"tensorflow<=2.11.1",
"keras"
"tensorflow<=2.11.1,>=2.8.0",
"keras<=2.11.1,>=2.8.0",
],
packages=find_packages(exclude=[]),
keywords=["pso", "tensorflow", "keras"],
@@ -26,4 +26,13 @@ setup(
zip_safe=False,
long_description=open("README.md", encoding="UTF8").read(),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3:: Only"
"Programming Language :: Python :: 3.7"
"Programming Language :: Python :: 3.8",
"programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)