Spaces:
Running
Running
File size: 5,685 Bytes
294af44 | 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | import streamlit as st
from PIL import Image
from transformers import pipeline
import pandas as pd
import plotly.express as px
st.set_page_config(
page_title="MoodSyncAI",
layout="wide"
)
@st.cache_resource
def load_models():
image_model = pipeline(
"image-classification",
model="dima806/facial_emotions_image_detection"
)
text_model = pipeline(
"text-classification",
model="cardiffnlp/twitter-roberta-base-sentiment-latest",
top_k=None
)
return image_model, text_model
def normalize_text_label(label):
label = label.lower()
if "positive" in label:
return "positive"
elif "negative" in label:
return "negative"
else:
return "neutral"
def map_emotion_to_sentiment(emotion):
emotion = emotion.lower()
positive_emotions = ["happy", "surprise"]
negative_emotions = ["sad", "angry", "fear", "disgust"]
if emotion in positive_emotions:
return "positive"
elif emotion in negative_emotions:
return "negative"
else:
return "neutral"
def get_top_prediction(predictions):
return max(predictions, key=lambda x: x["score"])
def create_bar_chart(predictions, title):
df = pd.DataFrame(predictions)
df["score"] = df["score"] * 100
fig = px.bar(
df,
x="label",
y="score",
title=title,
text=df["score"].round(2)
)
fig.update_layout(yaxis_title="Confidence (%)", xaxis_title="Class")
return fig
def fusion_logic(image_emotion, image_score, text_sentiment, text_score):
image_sentiment = map_emotion_to_sentiment(image_emotion)
if image_sentiment == text_sentiment:
status = "ALIGNED"
badge = "🟢 Aligned"
confidence = round((image_score + text_score) / 2 * 100, 2)
else:
status = "MISMATCH DETECTED"
badge = "🟠 Mismatch Detected"
confidence = round(abs(image_score - text_score) * 100, 2)
return image_sentiment, status, badge, confidence
def generate_summary(image_emotion, image_sentiment, text_sentiment, fusion_status):
if fusion_status == "ALIGNED":
return (
f"The person's facial expression appears {image_emotion}, "
f"which is generally consistent with the {text_sentiment} tone of the text. "
f"Both visual and textual signals suggest an emotionally aligned state."
)
return (
f"The person's face appears to show {image_emotion}, which suggests a "
f"{image_sentiment} emotional signal. However, the text expresses a "
f"{text_sentiment} sentiment. This indicates a possible emotional mismatch, "
f"where the spoken words and facial cues may not fully agree."
)
st.title("🧠 MoodSyncAI: Multi-Modal Sentiment & Emotion Analyser")
st.write(
"Upload a face image and enter the sentence spoken by the person. "
"The app analyses visual emotion, textual sentiment, detects mismatch, "
"and generates a plain-language emotional summary."
)
image_model, text_model = load_models()
col1, col2 = st.columns(2)
with col1:
uploaded_image = st.file_uploader(
"Upload face image",
type=["jpg", "jpeg", "png"]
)
with col2:
user_text = st.text_area(
"Enter the sentence spoken by the person",
placeholder="Example: No, I think the project is going really well."
)
if st.button("Analyse Emotion"):
if uploaded_image is None:
st.error("Please upload a face image.")
elif user_text.strip() == "":
st.error("Please enter a sentence.")
else:
image = Image.open(uploaded_image).convert("RGB")
st.subheader("Uploaded Image")
st.image(image, width=300)
image_predictions = image_model(image)
text_predictions = text_model(user_text)[0]
image_top = get_top_prediction(image_predictions)
text_top = get_top_prediction(text_predictions)
image_emotion = image_top["label"]
image_score = image_top["score"]
text_sentiment = normalize_text_label(text_top["label"])
text_score = text_top["score"]
image_sentiment, fusion_status, badge, fusion_confidence = fusion_logic(
image_emotion,
image_score,
text_sentiment,
text_score
)
st.divider()
result_col1, result_col2, result_col3 = st.columns(3)
with result_col1:
st.metric(
"Visual Emotion",
image_emotion,
f"{round(image_score * 100, 2)}%"
)
with result_col2:
st.metric(
"Textual Sentiment",
text_sentiment.capitalize(),
f"{round(text_score * 100, 2)}%"
)
with result_col3:
st.metric(
"Fusion Result",
badge,
f"{fusion_confidence}%"
)
st.divider()
chart_col1, chart_col2 = st.columns(2)
with chart_col1:
st.plotly_chart(
create_bar_chart(image_predictions, "Visual Emotion Confidence"),
use_container_width=True
)
with chart_col2:
st.plotly_chart(
create_bar_chart(text_predictions, "Text Sentiment Confidence"),
use_container_width=True
)
st.divider()
summary = generate_summary(
image_emotion,
image_sentiment,
text_sentiment,
fusion_status
)
st.subheader("Generative Summary")
st.success(summary)
|