File size: 506 Bytes
05d1bf4
b190b15
3e0d5b1
05d1bf4
 
b190b15
05d1bf4
 
 
 
 
 
7fedf18
3e0d5b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio

import psaiops.common.style
import psaiops.common.tokenizer
import psaiops.combine.app as app

# META #########################################################################

_TOKENIZER = psaiops.common.tokenizer.get_tokenizer(name=app.MODEL, device='cpu')

# MAIN #########################################################################

demo = app.create_app(tabulate=app.update_table_data(tokenizer=_TOKENIZER))
demo.launch(theme=gradio.themes.Soft(), css=psaiops.common.style.BUTTON)