added demo link to readme
This commit is contained in:
parent
9ec88d9444
commit
ba7ee8c0ee
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
# VALL'E
|
# VALL'E
|
||||||
|
|
||||||
An unofficial PyTorch implementation of [VALL-E](https://valle-demo.github.io/), utilizing the [EnCodec](https://github.com/facebookresearch/encodec) encoder/decoder.
|
An unofficial PyTorch implementation of [VALL-E](https://vall-e-demo.ecker.tech/), utilizing the [EnCodec](https://github.com/facebookresearch/encodec) encoder/decoder.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ def main():
|
||||||
entries = [
|
entries = [
|
||||||
f'<tr><td>{text}</td>'+
|
f'<tr><td>{text}</td>'+
|
||||||
"".join( [
|
"".join( [
|
||||||
f'<td><audio controls="controls" autobuffer="autobuffer"><source src="{str(audio).replace(str(args.demo_dir), args.audio_path_root) if args.audio_path_root else encode(audio)}"/></audio></td>'
|
f'<td><audio controls="controls" preload="none"><source src="{str(audio).replace(str(args.demo_dir), args.audio_path_root) if args.audio_path_root else encode(audio)}"/></audio></td>'
|
||||||
for audio in audios
|
for audio in audios
|
||||||
] )+
|
] )+
|
||||||
'</tr>'
|
'</tr>'
|
||||||
|
@ -190,7 +190,7 @@ def main():
|
||||||
samples = [
|
samples = [
|
||||||
f'<tr><td>{text}</td>'+
|
f'<tr><td>{text}</td>'+
|
||||||
"".join( [
|
"".join( [
|
||||||
f'<td><audio controls="controls" autobuffer="autobuffer"><source src="{str(audio).replace(str(args.demo_dir), args.audio_path_root) if args.audio_path_root else encode(audio)}"/></audio></td>'
|
f'<td><audio controls="controls" preload="none"><source src="{str(audio).replace(str(args.demo_dir), args.audio_path_root) if args.audio_path_root else encode(audio)}"/></audio></td>'
|
||||||
for audio in audios
|
for audio in audios
|
||||||
] )+
|
] )+
|
||||||
'</tr>'
|
'</tr>'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user