File size: 1,828 Bytes
831b959
 
 
 
 
3351f2f
831b959
 
 
 
 
 
 
 
 
 
 
 
00f4906
831b959
 
 
 
 
 
 
 
 
 
 
 
 
 
755a0f5
831b959
ccfbfd7
 
 
 
755a0f5
ccfbfd7
831b959
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import streamlit as st
import time
from transformers import pipeline
import torch
trust_remote_code=True
st.markdown('## Text-generation gpt-youtube from Breadlicker45')
use_auth_token=True
@st.cache(allow_output_mutation=True, suppress_st_warning =True, show_spinner=False)
def get_model():
    return pipeline('text-generation', model=model, do_sample=False)
    
col1, col2 = st.columns([2,1])

with st.sidebar:
    st.markdown('## Model Parameters')

    max_length = st.slider('Max text length', 0, 500, 80)

    num_beams = st.slider('N° tree beams search', 1, 15,  1)

    early_stopping = st.selectbox(
     'Early stopping text generation',
     ('True', 'False'), key={'True' : True, 'False': False}, index=0)

    no_ngram_repeat = st.slider('Max repetition limit', 1, 5,  2)
    
with col1:
    prompt= st.text_area('Your prompt here',
        '''What is the meaning of life?''') 
        
with col2:
    select_model = st.radio(
        "Select the model to use:",
        ('gpt-youtube','null'), index = 0)

    if select_model == 'gpt-youtube':
        model = 'BreadAi/gpt-Youtube'
    elif select_model == 'gpt-null':
        model = 'BreadAi/gpt-Youtube'
    elif select_model == 'null':
        model = 'BreadAi/gpt-Youtube'

    with st.spinner('Loading Model... (This may take a while)'):
        generator = get_model()    
        st.success('Model loaded correctly!')
     
gen = st.info('Generating text...')
answer = generator(prompt, max_length=max_length, no_repeat_ngram_size=no_ngram_repeat, 
                   early_stopping=early_stopping, num_beams=num_beams, do_sample=False)                      
gen.empty()                      
                       
lst = answer[0]['generated_text']
   
t = st.empty()
for i in range(len(lst)):
    t.markdown("#### %s" % lst[0:i])
    time.sleep(0.04)