Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 10,853 Bytes
e1c08c5 2b57de9 6115840 e1c08c5 00b88cc e1c08c5 7fa8c00 e1c08c5 7fa8c00 2f1b49f 6115840 7fa8c00 e1c08c5 7fa8c00 2f1b49f 7fa8c00 e1c08c5 a0a523d e1c08c5 |
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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
import os
from os.path import abspath, dirname
import configparser
import logging
import os
import sys
isDev = setupData["isDev"]
logger = setupData["logger"]
import sys
root_path = f'.' if isDev else f'./resources/app' # The root directories are different in dev/prod
if not isDev:
sys.path.append("./resources/app")
# import DeepMoji/TorchMoji
sys.path.append(f"{root_path}/plugins/deepmoji_plugin/DeepMoji")
# TOP # emoticons out of 64 to take into account
emoji_count = 10
text_scores = []
# the plugin's default settings
plugin_settings = {}
isBatch = False
isXVAPitch = True
isEnglish = True
# previous sentence
prev_sentence = ''
# Previous emotional modifier values
last_em_angry = float(0)
last_em_happy = float(0)
last_em_sad = float(0)
last_em_surprise = float(0)
def scoreText(text):
return text
from plugins.deepmoji_plugin.xvasynth_torchmoji import scoreText
import csv
def setup(data=None):
logger.log(f'Setting up plugin. App version: {data["appVersion"]} | CPU only: {data["isCPUonly"]} | Development mode: {data["isDev"]}')
# Show test emoji in console; can crash due to encoding issues
try:
print("DeepMoji Plugin - emoji smily console print test: \U0001F604")
except:
pass
def pre_load_model(data=None):
# reset last em values
global last_em_angry, last_em_happy, last_em_sad, last_em_surprise,\
isBatch, isXVAPitch, isEnglish, prev_sentence,\
plugin_settings, configparser, emoji_count
# reload settings from INI
config = configparser.ConfigParser()
with open(f'{root_path}/plugins/deepmoji_plugin/deepmoji.ini', encoding='utf-8') as stream:
# xVASynth saves without INI sections
config.read_string("[top]\n" + stream.read())
plugin_settings = dict(config['top'])
emoji_count = int(plugin_settings['emoji_count'])
isBatch = False
isXVAPitch = True
isEnglish = True
prev_sentence = ''
last_em_angry = float(0)
last_em_happy = float(0)
last_em_sad = float(0)
last_em_surprise = float(0)
logger.log("last_em reset")
def fetch_text(data=None):
global plugin_settings, emoji_count, text_scores, scoreText, isXVAPitch, isEnglish, prev_sentence
isBatch = False
text_scores = [data["sequence"]]
try:
# editor second generation test
if len(data["pitch"]):
logger.warning("DeepMoji analysis skipped due to customized editor values")
return
except:
pass
if (
(
plugin_settings["load_deepmoji_model"]=="false"
or plugin_settings["load_deepmoji_model"]==False
)
and data["pluginsContext"]["mantella_settings"]["run_model"]==False
):
logger.log("DeepMoji model skipped")
return
if (data['modelType'] != 'xVAPitch'):
logger.log("DeepMoji can affect only xVAPitch models")
isXVAPitch = False
return
if (data['base_lang'] != 'en'):
logger.log("DeepMoji works only with English text")
isEnglish = False
return
if (
plugin_settings["append_prev_sentence"]=="false"
or plugin_settings["append_prev_sentence"]==False
):
prev_sentence = ''
else:
prev_sentence += ' '
# add previous sentence for a better flow
text_scores = scoreText(prev_sentence + data["sequence"], emoji_count)
logger.log(text_scores)
text_scores[0] = data["sequence"]
def fetch_text_batch(data=None):
global isBatch, plugin_settings, emoji_count, text_scores, scoreText, isXVAPitch, isEnglish, prev_sentence
isBatch = True
text_scores = [data["linesBatch"][0][0]]
if (
plugin_settings["use_on_batch"]=="false"
or plugin_settings["use_on_batch"]==False
):
logger.debug("DeepMoji Plugin skipped on batch")
return
if (
plugin_settings["load_deepmoji_model"]=="false"
or plugin_settings["load_deepmoji_model"]==False
):
logger.debug("DeepMoji model skipped")
return
if (data['modelType'] != 'xVAPitch'):
logger.debug("DeepMoji can affect only xVAPitch models")
isXVAPitch = False
return
if (data["linesBatch"][0][8] != 'en'):
logger.debug("DeepMoji works only with English text")
return
if (
plugin_settings["append_prev_sentence"]=="false"
or plugin_settings["append_prev_sentence"]==False
):
prev_sentence = ''
else:
prev_sentence += ' '
# logger.info(data)
try:
logger.debug(data["linesBatch"][0][0])
text_scores = scoreText(prev_sentence + data["linesBatch"][0][0], emoji_count)
logger.debug(text_scores)
except:
logger.error("Could not parse line")
return
# text_scores
# (['Text', 'Top#%',
# 'Emoji_1', 'Emoji_2', 'Emoji_3', 'Emoji_4', 'Emoji_5',
# 'Pct_1', 'Pct_2', 'Pct_3', 'Pct_4', 'Pct_5'])
def adjust_values(data=None):
global root_path, os, csv, example_helper,\
isBatch, isXVAPitch, isEnglish, logger, emoji_count, text_scores, plugin_settings,\
prev_sentence, last_em_angry, last_em_happy, last_em_sad, last_em_surprise
if (
isBatch
and (
plugin_settings["use_on_batch"] == "false"
or plugin_settings["use_on_batch"] == False
)
):
logger.debug("DeepMoji Plugin skipped on batch")
return
if (isXVAPitch == False):
logger.log("DeepMoji can affect only xVAPitch models")
return
em_angry = float(0)
em_happy = float(0)
em_sad = float(0)
em_surprise = float(0)
emojis = ''
if (
isXVAPitch
and isEnglish
and len(text_scores) > 1
):
# DeepMoji works only with English text
with open(f'{root_path}/plugins/deepmoji_plugin/emoji_unicode_emotions.csv', encoding='utf-8') as csvfile:
reader = csv.DictReader(csvfile)
index = 0
for emoji_row in reader:
for em_index in range(emoji_count):
# emotion is not one of detected emotions?
if (index != text_scores[2 + em_index]):
# skip
continue
em_angry += float(emoji_row['anger']) * float(text_scores[2 + em_index + emoji_count])
em_happy += float(emoji_row['happiness']) * float(text_scores[2 + em_index + emoji_count])
em_sad += float(emoji_row['sadness']) * float(text_scores[2 + em_index + emoji_count])
em_surprise += float(emoji_row['surprise']) * float(text_scores[2 + em_index + emoji_count])
emojis += emoji_row['emoji']+' '
index += 1
# Show Top emojis in console
try:
# can crash on batch
print(emojis)
except:
pass
em_emotion_max = 0.8
em_angry_max = 0.6
try:
em_angry += float(data["pluginsContext"]["mantella_settings"]["emAngry"]) * 100
em_angry_max = 1
except:
pass
try:
em_happy += float(data["pluginsContext"]["mantella_settings"]["emHappy"]) * 100
except:
pass
try:
em_sad += float(data["pluginsContext"]["mantella_settings"]["emSad"]) * 100
except:
pass
try:
em_surprise += float(data["pluginsContext"]["mantella_settings"]["emSurprise"]) * 100
except:
pass
# HF
if (len(text_scores) > 1):
# top_em highest wins all
top_em = max(
em_angry,
em_happy,
em_sad
)
em_angry = em_angry if (em_angry == top_em) else 0
em_happy = em_happy if (em_happy == top_em) else 0
# amplified sadness ratio
em_sad = (em_sad * 3) if (em_sad == top_em) else 0
# amplifier
ratio = float(plugin_settings['amplifier_ratio'])
else:
ratio = 1.0
em_emotion_max = 1
em_angry_max = 1
logger.log(f'Amplifier ratio: {ratio}')
hasExcMark = False
if ('!!!' in text_scores[0]):
ratio += 2
em_angry_max = max(em_angry_max, 0.92)
logger.log(f"!!! detected => em_angry_max: {em_angry_max}")
logger.log(f'!!! Ratio: {ratio}')
hasExcMark = True
elif (
('!!' in text_scores[0])
or ('!?!' in text_scores[0])
):
ratio += 1.5
em_angry_max = max(em_angry_max, 0.82)
logger.log(f"!! detected => em_angry_max: {em_angry_max}")
logger.log(f'!! Ratio: {ratio}')
hasExcMark = True
elif ('!' in text_scores[0]):
ratio += 1
em_angry_max = max(em_angry_max, 0.7)
logger.log(f"! detected => em_angry_max: {em_angry_max}")
logger.log(f'! Ratio: {ratio}')
hasExcMark = True
# HF
if (len(text_scores) <= 1):
em_angry_max = 1
ratio = 1
# final values
em_angry = min(em_angry_max, em_angry / 100 * ratio) if em_angry > 0 else 0
em_happy = min(em_emotion_max, em_happy / 100 * ratio) if em_happy > 0 else 0
em_sad = min(em_emotion_max, em_sad / 100 * ratio) if em_sad > 0 else 0
em_surprise = min(em_emotion_max, em_surprise / 100 * ratio) if em_surprise > 0 else 0
# do average of previous if above threshold and last_em is not higher
last_top_em = max(last_em_angry, last_em_happy, last_em_sad)
if (
(em_angry > 0)
and (last_top_em > 0.1)
and (last_top_em < em_angry)
):
logger.log(f"em_angry before avg: {em_angry}")
em_angry = (em_angry + last_top_em) / 2
if (
(em_happy > 0)
and (last_top_em > 0.1)
and (last_top_em < em_happy)
):
logger.log(f"em_happy before avg: {em_happy}")
em_happy = (em_happy + last_top_em) / 2
if (
(em_sad > 0)
and (last_top_em > 0.1)
and (last_top_em < em_sad)
):
logger.log(f"em_sad before avg: {em_sad}")
em_sad = (em_sad + last_top_em) / 2
if (
(em_surprise > 0)
and (last_em_surprise > 0.05)
and (last_em_surprise < em_surprise)
):
logger.log(f"em_surprise before avg: {em_surprise}")
em_surprise = (em_surprise + last_em_surprise) / 2
# adjust the values within data
if (em_angry > 0):
logger.log(f"Adjusting em_angry: {em_angry}")
adjusted_pacing = False
for line_i in range(len(data["emAngry"])):
for char_i in range(len(data["emAngry"][line_i])):
data["emAngry"][line_i][char_i] = em_angry
data["hasDataChanged"] = True
# slower the speech if above threshold
# as the pacing goes way too fast when past this point
if (em_angry >= 0.7 and hasExcMark):
try:
data["pace"] *= (1 + em_angry / 2)
logger.log(f"Adjusting pacing: {1 + em_angry / 2}")
except:
pass
if (
em_happy > 0 and (
em_happy >= em_surprise
or em_surprise < 0.3
)
):
# em_surprise & em_happy overamplify each other
logger.log(f"Adjusting em_happy: {em_happy}")
for line_i in range(len(data["emHappy"])):
for char_i in range(len(data["emHappy"][line_i])):
data["emHappy"][line_i][char_i] = em_happy
data["hasDataChanged"] = True
if (em_sad > 0):
logger.log(f"Adjusting em_sad: {em_sad}")
for line_i in range(len(data["emSad"])):
for char_i in range(len(data["emSad"][line_i])):
data["emSad"][line_i][char_i] = em_sad
data["hasDataChanged"] = True
# slower the speech if above threshold
if (em_sad > 0.2):
try:
data["pace"] *= (1 + em_sad / 3)
logger.log(f"Adjusting pacing: {1 + em_sad / 3}")
except:
pass
if (
em_surprise > 0 and (
em_surprise > em_happy
or em_happy < 0.3
)
):
# em_surprise & em_happy overamplify each other
logger.log(f"Adjusting em_surprise: {em_surprise}")
for line_i in range(len(data["emSurprise"])):
for char_i in range(len(data["emSurprise"][line_i])):
data["emSurprise"][line_i][char_i] = em_surprise
data["hasDataChanged"] = True
prev_sentence = text_scores[0]
last_em_angry = float(0)
last_em_happy = float(0)
last_em_sad = float(0)
last_em_surprise = float(0)
return
|