Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
SUHES
/
mood-regulator
like
0
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
SUHES
commited on
Jan 11
Commit
49871d5
·
verified
·
1 Parent(s):
0e2e0f1
Update model.py
Browse files
Files changed (1)
hide
show
model.py
+7
-0
model.py
CHANGED
Viewed
@@ -0,0 +1,7 @@
1
+
def regulate_behavior(mood):
2
+
mapping = {
3
+
"tense_calm": "slow_movements",
4
+
"celebratory": "expressive_gestures",
5
+
"neutral": "standard_behavior"
6
+
}
7
+
return mapping.get(mood, "idle")