mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-19 20:44:39 +09:00
23-10-18
batch size 적용 -> 속도 개선 역전파 1회 적용 -> 조기 수렴을 일부 방지
This commit is contained in:
15
setup.py
15
setup.py
@@ -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",
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user