tensorboard 적용된 pypi
log 저장 디렉토리 지정해야 tensorboard 사용 가능
pypi 소스파일 제거
tqdm 자동으로 변경
This commit is contained in:
jung-geun
2023-07-17 11:50:45 +09:00
parent 768d3ccee7
commit fbecda4b89
13 changed files with 328 additions and 64 deletions

View File

@@ -23,5 +23,5 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
python setup.py bdist_wheel
twine upload dist/*.whl

View File

@@ -20,6 +20,6 @@ jobs:
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env create --file environment.yaml --name pso
conda env create --file conda_env/environment.yaml --name pso
conda activate pso
python mnist.py