utrobinmv's picture
update table
b53e692
import os
import gradio as gr
def load_csv():
filename = 'table.html'
with open(filename, 'r', encoding="utf-8-sig") as f:
return f.read()
return ''
iface = gr.Interface(
fn=load_csv,
inputs=None,
outputs="html",
title="NTREX dataset Benchmark ",
description="Benchmark translation to TREX dataset for ru, en, zh languages. Dataset: https://github.com/MicrosoftTranslator/NTREX",
live=True
)
iface.launch(share=False)