File size: 228 Bytes
f1d50b1
 
 
 
 
 
 
 
b1f513f
2cf3514
 
f1d50b1
2cf3514
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st

from utils import load_model


def app(model_name):
    model, processor = load_model(model_name)

    st.title("Image to Text")
    st.markdown(
        """
        Some text goes in here.
    """
    )