tensorboard 선택 시 자동으로 프로세스 실행
비어있는 포트를 자동으로 탐색하여 오픈
이전 최적해와 비교하여 관성치를 높게 주는 방법을 일시 폐기
digits 테스트 추가
tensorboard 자동 설치 추가
This commit is contained in:
jung-geun
2023-11-01 23:40:31 +09:00
parent 389027409d
commit 80695f304d
9 changed files with 218 additions and 113 deletions

View File

@@ -16,8 +16,11 @@ setup(
"numpy",
"pandas",
"ipython",
"tensorflow<=2.11.1,>=2.8.0",
"keras<=2.11.1,>=2.8.0",
"matplotlib",
"tensorflow",
"keras",
"scikit-learn",
"tensorboard",
],
packages=find_packages(exclude=[]),
keywords=["pso", "tensorflow", "keras"],
@@ -33,5 +36,6 @@ setup(
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)