christopher commited on
Commit
429f7ce
1 Parent(s): ee9d01a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -2,8 +2,8 @@ import streamlit as st
2
  import yake
3
 
4
  st.set_page_config(page_title="KeyPhrase Extraction", page_icon='🌸', layout="wide")
5
- text = """
6
- Sources tell us that Google is acquiring Kaggle, a platform that hosts data science and machine learning competitions. Details about the transaction remain somewhat vague, but given that Google is hosting its Cloud Next conference in San Francisco this week, the official announcement could come as early as tomorrow.
7
 
8
  Reached by phone, Kaggle co-founder CEO Anthony Goldbloom declined to deny that the acquisition is happening. Google itself declined “to comment on rumors.”
9
 
@@ -11,8 +11,8 @@ Kaggle, which has about half a million data scientists on its platform, was foun
11
 
12
  With Kaggle, Google is buying one of the largest and most active communities for data scientists — and with that, it will get increased mindshare in this community, too (though it already has plenty of that thanks to Tensorflow and other projects).
13
 
14
- Kaggle has a bit of a history with Google, too, but that’s pretty recent. Earlier this month, Google and Kaggle teamed up to host a $100,000 machine learning competition around classifying YouTube videos. That competition had some deep integrations with the Google Cloud Platform, too.
15
- """
16
  cola, colb = st.columns([1,1])
17
  with cola:
18
  doc = st.text_area(label="", value=text, placeholder="Search", height=600)
 
2
  import yake
3
 
4
  st.set_page_config(page_title="KeyPhrase Extraction", page_icon='🌸', layout="wide")
5
+
6
+ text = """Sources tell us that Google is acquiring Kaggle, a platform that hosts data science and machine learning competitions. Details about the transaction remain somewhat vague, but given that Google is hosting its Cloud Next conference in San Francisco this week, the official announcement could come as early as tomorrow.
7
 
8
  Reached by phone, Kaggle co-founder CEO Anthony Goldbloom declined to deny that the acquisition is happening. Google itself declined “to comment on rumors.”
9
 
 
11
 
12
  With Kaggle, Google is buying one of the largest and most active communities for data scientists — and with that, it will get increased mindshare in this community, too (though it already has plenty of that thanks to Tensorflow and other projects).
13
 
14
+ Kaggle has a bit of a history with Google, too, but that’s pretty recent. Earlier this month, Google and Kaggle teamed up to host a $100,000 machine learning competition around classifying YouTube videos. That competition had some deep integrations with the Google Cloud Platform, too."""
15
+
16
  cola, colb = st.columns([1,1])
17
  with cola:
18
  doc = st.text_area(label="", value=text, placeholder="Search", height=600)