Spaces:
Sleeping
Sleeping
File size: 1,690 Bytes
5f21106 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
import streamlit as st
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from nltk.tokenize import word_tokenize
import nltk
nltk.download('punkt')
st.title("📊 Bayesian Token Co-occurrence Simulator")
# User input
user_input = st.text_area("✍️ Enter your training sentences (one per line):",
"""
fido loves the red ball
timmy and fido go to the park
fido and timmy love to play
the red ball is timmy's favorite toy
""")
sentences = user_input.strip().split('\n')
tokenized = [word_tokenize(s.lower()) for s in sentences if s.strip()]
vocab = sorted(set(word for sentence in tokenized for word in sentence))
token2idx = {word: i for i, word in enumerate(vocab)}
idx2token = {i: word for word, i in token2idx.items()}
# Co-occurrence matrix
window_size = 2
matrix = np.zeros((len(vocab), len(vocab)))
for sentence in tokenized:
for i, word in enumerate(sentence):
for j in range(max(0, i - window_size), min(len(sentence), i + window_size + 1)):
if i != j:
matrix[token2idx[word]][token2idx[sentence[j]]] += 1
alpha = st.slider("🔧 Set Bayesian Prior (α smoothing)", 0.0, 2.0, 0.1)
posterior = matrix + alpha
df = pd.DataFrame(posterior, index=vocab, columns=vocab)
st.subheader("📈 Co-occurrence Heatmap")
fig, ax = plt.subplots(figsize=(10, 8))
sns.heatmap(df, annot=True, cmap="Blues", fmt=".1f", ax=ax)
st.pyplot(fig)
# Next-token prediction
selected_word = st.selectbox("🔮 Predict next token after:", vocab)
row = posterior[token2idx[selected_word]]
probs = row / row.sum()
prediction = np.random.choice(vocab, p=probs)
st.markdown(f"**Predicted next token:** `{prediction}`")
|