File size: 420 Bytes
4dd3e5c
 
 
 
 
 
 
 
 
 
 
 
a469e3a
c5af2f5
 
4dd3e5c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Aug 11 10:11:53 2024

@author: peter
"""

import gradio as gr
import tokenizers
import transformers

pipeline = transformers.pipeline('translation_en_to_ha',
                                 model='PeteBleackley/t5-small-eng-hau',
                                 tokenizer='google-t5/t5-small')

demo = gr.Interface.from_pipeline(pipeline)
demo.launch()