Spaces:
Runtime error
Runtime error
File size: 713 Bytes
26ba01d 4ee15f5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
demo_css = """
.footer {
margin-bottom: 40px;
margin-top: 45px;
text-align: center;
border-bottom: 1px solid #e5e5e5;
}
"""
footer_html = """
<div class="footer">
<p>Whisper by <a href="https://github.com/openai/whisper"
style="text-decoration: underline;"
target="_blank">OpenAI</a> - BART by <a href="https://huggingface.co/facebook/bart-large-cnn"
style="text-decoration: underline;"
target="_blank">Facebook</a> - Conformer by <a href="https://github.com/espnet/espnet_model_zoo"
style="text-decoration: underline;"
target="_blank">ESPNet</a>
</p>
</div>
""" |