iclr2023 / app.py
RamAnanth1's picture
Create app.py
35c98d9
raw
history blame
No virus
291 Bytes
import streamlit as st
import json
import requests
import csv
import pandas as pd
import tqdm
import cohere
from topically import Topically
from bertopic import BERTopic
from sklearn.cluster import KMeans
import numpy as np
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)