hacpdsae2023 commited on
Commit
0037ea6
·
1 Parent(s): c491d37

test text color

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -10,7 +10,9 @@ st.markdown('We study the relationshis between the stories using a network. The
10
 
11
  st.markdown('# Short Stories')
12
  st.markdown('We are using a sample fo the [TinyStories](roneneldan/TinyStories) dataset from roneneldan work')
13
- st.write(dataset['train'][10]['text'])
 
 
14
 
15
  st.markdown('The threshold changes the level of connectivity in the network. The reange is from 0 (less similar) to 1 (completely similar)')
16
  threshhold = st.slider('Threshhold',0.0,1.0,step=0.1)
 
10
 
11
  st.markdown('# Short Stories')
12
  st.markdown('We are using a sample fo the [TinyStories](roneneldan/TinyStories) dataset from roneneldan work')
13
+ text_text = dataset['train'][10]['text']
14
+ st.write(text_text)
15
+ st.markdown(':red[' + text_text + ']' )
16
 
17
  st.markdown('The threshold changes the level of connectivity in the network. The reange is from 0 (less similar) to 1 (completely similar)')
18
  threshhold = st.slider('Threshhold',0.0,1.0,step=0.1)