Spaces:
Running
on
A10G
Running
on
A10G
File size: 6,462 Bytes
593b9ab 6ba6412 593b9ab 277fdec c77fae0 593b9ab 0e9ab0d 593b9ab 0e400c0 593b9ab 277fdec 593b9ab c77fae0 33f5e20 593b9ab 33f5e20 0a7c7f0 640ba21 0a7c7f0 593b9ab 33f5e20 593b9ab 0245186 593b9ab 0245186 593b9ab 0e400c0 593b9ab 0e400c0 593b9ab 33f5e20 c77fae0 0245186 c77fae0 593b9ab 22bcc0e 593b9ab 0e400c0 c77fae0 593b9ab c77fae0 0245186 c77fae0 593b9ab 640ba21 |
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 |
import gradio as gr
from evaluate import eval, install
from datetime import datetime
import os, shutil, spaces
import warnings, tempfile
from audio import gen_audio
warnings.filterwarnings("ignore")
warnings.simplefilter("ignore")
import time
videos = {
"教學視頻1": "teach/00.mp4",
"教學視頻2": "teach/01.mp4",
"教學視頻3": "teach/02.mp4",
"教學視頻4": "teach/03.mp4",
"(病症)高峰期": "teach/(病症)高峰期.mp4",
"公園": "teach/公園.mp4",
"健康": "teach/健康.mp4",
"刷牙": "teach/刷牙.mp4",
"圖書館": "teach/圖書館.mp4",
"下午": "teach/下午.mp4",
"中風": "teach/中風.mp4",
"中暑": "teach/中暑.mp4",
"主題": "teach/主題.mp4",
"住院證明": "teach/住院證明.mp4"
}
jsons = {
"教學視頻1": "teach/00.json",
"教學視頻2": "teach/01.json",
"教學視頻3": "teach/02.json",
"教學視頻4": "teach/03.json",
"(病症)高峰期": "teach/(病症)高峰期.json",
"公園": "teach/公園.json",
"健康": "teach/健康.json",
"刷牙": "teach/刷牙.json",
"圖書館": "teach/圖書館.json",
"下午": "teach/下午.json",
"中風": "teach/中風.json",
"中暑": "teach/中暑.json",
"主題": "teach/主題.json",
"住院證明": "teach/住院證明.json"
}
def get_video_url(option):
# print(videos[option])
return videos[option]
@spaces.GPU()
def evaluate_sign_language(user_video, standard_video_option):
tmp = tempfile.TemporaryDirectory()
tmpdir = tmp.name
new_path = tmpdir + "/user.mp4"
shutil.copy(user_video, new_path)
shutil.copy(videos[standard_video_option], tmpdir + "/standard.mp4")
shutil.copy(jsons[standard_video_option], tmpdir + "/standard.json")
print("Copy User Video to:", new_path)
print("Copy Standard Video to:", tmpdir + "/standard.mp4")
print("Copy Standard JSON to:", tmpdir + "/standard.json")
test, standard = user_video, videos[standard_video_option]
score, final_merged_intervals, comments = eval(test, standard, tmpdir)
if score < 95:
score = 0
elif score < 98:
score = 50 * (score - 95) / 3
elif 98 <= score <= 100:
score = 50 * (score - 98) / 2 + 50
current_date = datetime.now().strftime("%Y年%m月%d日")
# 初始化反馈报告
qualification = "不合格" if score < 60 else "合格"
advice = f"""<div style='font-family: "Heiti SC"; text-align: center; font-size: 24px;'><b>\n手語表現反饋報告</b></div>
<br><br><br><b>日期:</b> {current_date}<br><br><b>改進建議(供參考):</b><br>"""
part_translation = {
'Right Hand': '右手細節、',
'Left Hand': '左手細節、',
'Right Arm': '右臂、',
'Left Arm': '左臂、'
}
# 为每个问题区间生成具体观察结果
f = 0
subtitles = []
for interval, errors in final_merged_intervals:
advice += f"<b> - 時間區間:{interval[0]}-{interval[1]}秒</b><br>"
parts = ""
for error in errors:
part = part_translation[error]
parts += part
advice += f" 觀察結果:您的{parts[:-1]}動作與標準手語手勢不太一致。<br>"
f = 1
subtitles.append([[interval[0], interval[1]], parts[:-1]])
if not f:
advice = advice[:-4]
advice += "無"
advice += "<br>建議:請參考標準視頻,模仿正確的動作,保持速度一致。<br><br>"
advice += f"<b>整體结果:</b> {qualification}<br>"
# advice += f"<b>整體结果:</b> 您本次的總評分為 {score:.2f}/100分。<br>"
ret_video = gen_audio(subtitles, tmpdir)
return advice, ret_video, tmp
def cleanup_temp_dir(tmp_dir):
if tmp_dir:
time.sleep(0.5)
print(f"Cleaning up temporary directory: {tmp_dir.name}")
tmp_dir.cleanup()
return "临时目录已清理"
return "没有临时目录需要清理"
install()
font = ["Heiti SC", "FangSong"]
title = """<h1 style="text-align: center;">
<div style="width: 1.4em; height: 1.4em; display: inline-block;"><img src="https://github.com/ZiyuGuo99/ZiyuGuo99.github.io/blob/main/assets/img/sl.png?raw=true" style='width: 100%; height: 100%; object-fit: contain;' /></div>
<span style="font-family: """ + font[0] + """; font-variant: small-caps; font-weight: bold;">手語教學與評估系統</span>
</h1>
"""
with gr.Blocks(
css="""
.contain { display: flex; flex-direction: column; }
.gradio-container { height: 200vh !important;
overflow-y: auto; /* 添加垂直滚动条 */
}
#col_container { height: 100%; }
pre {
white-space: pre-wrap; /* Since CSS 2.1 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}""",
js="""
function refresh() {
const url = new URL(window.location);
if (url.searchParams.get('__theme') !== 'light') {
url.searchParams.set('__theme', 'light');
window.location.href = url.href;
}
}""",
title="手語教學與評估系統",
theme=gr.themes.Soft(),
) as app:
gr.HTML(title)
with gr.Row():
with gr.Column():
video_selector = gr.Dropdown(list(videos.keys()), label="請選擇教學視頻")
video_player = gr.Video(label="請觀看教學視頻演示")
with gr.Column():
upload_video = gr.Video(label="請錄製/上傳您的視頻,點擊\'開始評估\'")
evaluate_button = gr.Button("開始評估")
with gr.Row():
with gr.Column():
advice_output = gr.HTML(label="反饋報告")
with gr.Column():
compare_video_player = gr.Video(label="評估結果")
video_selector.change(get_video_url, inputs=video_selector, outputs=video_player)
tmp_dir_state = gr.State()
evaluate_button.click(
evaluate_sign_language,
inputs=[upload_video, video_selector],
outputs=[advice_output, compare_video_player, tmp_dir_state],
)
compare_video_player.change(
fn=cleanup_temp_dir,
inputs=tmp_dir_state,
outputs=None
)
app.launch(share=True)
|