Spaces:
Sleeping
Sleeping
File size: 291 Bytes
35c98d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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) |