Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
parler-tts
Commits
a664e0ca
Commit
a664e0ca
authored
Apr 08, 2024
by
Yoach Lacombe
Browse files
update version and dependencies
parent
cda6bd09
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
parler_tts/__init__.py
parler_tts/__init__.py
+3
-0
setup.py
setup.py
+10
-7
No files found.
parler_tts/__init__.py
View file @
a664e0ca
__version__
=
"0.1"
from
.configuration_parler_tts
import
ParlerTTSConfig
,
ParlerTTSDecoderConfig
from
.modeling_parler_tts
import
(
ParlerTTSForCausalLM
,
...
...
setup.py
View file @
a664e0ca
# Copyright 202
3
The HuggingFace Team. All rights reserved.
# Copyright 202
4
The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -12,21 +12,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
os
import
setuptools
_deps
=
[
"transformers>=4.34.0"
,
"datasets[audio]>=2.14.5"
,
"torch"
,
"accelerate"
,
"evaluate"
,
"sentencepiece"
,
"descript-audio-codec"
,
"jiwer"
,
]
_extras_dev_deps
=
[
...
...
@@ -35,6 +29,14 @@ _extras_dev_deps = [
"ruff>=0.0.241,<=0.0.259"
,
]
_extras_training_deps
=
[
"jiwer"
,
"wandb"
,
"accelerate"
,
"evaluate"
,
"datasets[audio]>=2.14.5"
,
]
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
with
open
(
os
.
path
.
join
(
here
,
"README.md"
),
encoding
=
"utf-8"
)
as
f
:
...
...
@@ -59,5 +61,6 @@ setuptools.setup(
install_requires
=
_deps
,
extras_require
=
{
"dev"
:
[
_extras_dev_deps
],
"train"
:
[
_extras_training_deps
],
},
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment