Skip to content

Commit

Permalink
Remove vits bf16-true & Fix workflow (#181)
Browse files Browse the repository at this point in the history
* Fix button height

* Streaming support

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Convert to 1 channel

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix Conversion bug

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix target path

* Add checkpoint selection

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix gpup decorator

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Add link for labeler

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Localize labeler

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Add LoRA llama config

* Allow download stream audio

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* asr

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Add cache auto recycling

* 多打了一个字母

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Check 'compile' avaliable

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Add vits-decoder UI support & Fix bugs

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Configurable audio length, i18n

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Label Exception

* Add workflow

* Update build-windows-package.yml

* Update build-windows-package.yml

* Fix workflow: models remove

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Push to HF

* Modify Workflow

* Fix

* Free from Zipping

* Remove vits bf16-true & Fix orkflow

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
AnyaCoder and pre-commit-ci[bot] committed May 12, 2024
1 parent 449054e commit 3b5c0df
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
24 changes: 11 additions & 13 deletions .github/workflows/build-windows-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,14 @@ jobs:
name: fish-speech-main-${{ github.run_id }}
path: ./fish-speech

# - name: Check and Compress fish-speech
# run: |
# if [ ! -f fish-speech-main-${{ github.run_id }}.zip ]; then
# zip -qr fish-speech-main-${{ github.run_id }}.zip ./fish-speech
# else
# echo "Zip file already exists, skipping compression."
# fi

# - name: Upload to Hugging Face
# env:
# HF_TOKEN: ${{ secrets.HF_TOKEN }}
# run: |
# huggingface-cli upload SpicyqSama007/fish-speech-packed ./fish-speech-main-${{ github.run_id }}.zip fish-speech-main-${{ github.run_id }}.zip
- name: Upload to Hugging Face
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
if [ "${{ github.actor }}" = "AnyaCoder" ]; then
echo "Author is AnyaCoder. Performing the zipping && upload."
zip -qr fish-speech-main-${{ github.run_id }}.zip ./fish-speech
huggingface-cli upload SpicyqSama007/fish-speech-packed ./fish-speech-main-${{ github.run_id }}.zip fish-speech-main-${{ github.run_id }}.zip
else
echo "Author is not AnyaCoder. No upload performed."
fi
2 changes: 1 addition & 1 deletion fish_speech/webui/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ def llama_lora_merge(llama_weight, lora_llama_config, lora_weight, llama_lora_ou
vits_precision_dropdown = gr.Dropdown(
label=i18n("Precision"),
interactive=True,
choices=["32", "bf16-true", "bf16-mixed"],
choices=["32", "bf16-mixed"],
info=i18n(
"bf16-true is recommended for 30+ series GPU, 16-mixed is recommended for 10+ series GPU"
),
Expand Down

0 comments on commit 3b5c0df

Please sign in to comment.