mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-19 20:44:39 +09:00
tensorboard 선택 시 자동으로 프로세스 실행 비어있는 포트를 자동으로 탐색하여 오픈 이전 최적해와 비교하여 관성치를 높게 주는 방법을 일시 폐기 digits 테스트 추가 tensorboard 자동 설치 추가
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
import pso
|
|
|
|
VERSION = pso.__version__
|
|
|
|
setup(
|
|
name="pso2keras",
|
|
version=VERSION,
|
|
description="Particle Swarm Optimization on tensorflow package",
|
|
author="pieroot",
|
|
author_email="jgbong0306@gmail.com",
|
|
url="https://github.com/jung-geun/PSO",
|
|
install_requires=[
|
|
"tqdm",
|
|
"numpy",
|
|
"pandas",
|
|
"ipython",
|
|
"matplotlib",
|
|
"tensorflow",
|
|
"keras",
|
|
"scikit-learn",
|
|
"tensorboard",
|
|
],
|
|
packages=find_packages(exclude=[]),
|
|
keywords=["pso", "tensorflow", "keras"],
|
|
python_requires=">=3.8",
|
|
package_data={},
|
|
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.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
],
|
|
)
|