mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-19 20:44:39 +09:00
23-07-12
xor iris 수치 교정 파티클의 분포 조정 가능하게 수정 random 시드 추출
This commit is contained in:
17
setup.py
Normal file
17
setup.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='pso-keras',
|
||||
version='0.1.0',
|
||||
description='Particle Swarm Optimization to tensorflow package',
|
||||
author='pieroot',
|
||||
author_email='jgbong0306@gmail.com',
|
||||
url='https://github.com/jung-geun/PSO',
|
||||
install_requires=['tqdm', 'numpy', 'tensorflow', 'keras'],
|
||||
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(),
|
||||
)
|
||||
Reference in New Issue
Block a user