timothynn commited on
Commit
69e88d5
1 Parent(s): 8bace6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -7
app.py CHANGED
@@ -1,10 +1,12 @@
1
  import streamlit as st
2
- from transformers import pipeline
 
 
3
 
4
- pipe = pipeline('sentiment-analysis')
5
- text = st.text_area('Enter some text')
6
 
7
- if text:
8
- out = pipe(text)
9
- st.json(out)
10
-
 
 
1
  import streamlit as st
2
+ st.markdown("""
3
+ ### Hello world
4
+ -----------------
5
 
6
+ My name is **Timothy Nduati**. I'm a student from Kenya with a keen interest in data science. Happy to meet you all.
 
7
 
8
+ Let's connect: [LinkedIn](https://linkedin.com/in/timothynn), [Twitter](https://twitter.com/timothynn_), [GitHub](https://github.com/timothynn)
9
+
10
+ **Keep learning**
11
+
12
+ """)