RamAnanth1 commited on
Commit
35c98d9
1 Parent(s): b54122a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import json
3
+ import requests
4
+ import csv
5
+ import pandas as pd
6
+ import tqdm
7
+
8
+ import cohere
9
+
10
+ from topically import Topically
11
+ from bertopic import BERTopic
12
+ from sklearn.cluster import KMeans
13
+ import numpy as np
14
+
15
+ x = st.slider('Select a value')
16
+ st.write(x, 'squared is', x * x)