vumichien commited on
Commit
d377dff
Β·
1 Parent(s): d7328ff

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +11 -3
main.py CHANGED
@@ -9,6 +9,7 @@ from typing import Union, Optional
9
 
10
  from fastapi import FastAPI, File, UploadFile, Form
11
  from fastapi.responses import StreamingResponse
 
12
 
13
  from utils import tts, read_image_file, pil_to_base64, base64_to_pil, get_hist
14
  from typing import Optional
@@ -25,7 +26,9 @@ CLASS = model.model.names
25
  defaul_bot_voice = "γŠγ―γ„γ‚ˆγ†γ”γ–γ„γΎγ™"
26
  area_thres = 0.3
27
  ZIP = False
 
28
  app = FastAPI()
 
29
 
30
  @app.get("/")
31
  def read_root():
@@ -61,6 +64,7 @@ async def predict_api(
61
  out_img = image.crop(tuple(box)).resize((64, 64))
62
  most_close = area_rate
63
  print("Get face time", time.time() - start_time)
 
64
  start_time = time.time()
65
  if last_seen is not None:
66
  if type(last_seen) == str:
@@ -70,13 +74,14 @@ async def predict_api(
70
  if out_img is not None:
71
  diff_value = dist.euclidean(get_hist(out_img), get_hist(last_seen))
72
  print("Hist time", time.time() - start_time)
 
73
  start_time = time.time()
74
  print(f"Distance: {most_close}. Different value: {diff_value}")
75
  if most_close >= area_thres and diff_value >= 0.5:
76
- voice_bot_path = tts(defaul_bot_voice, language="ja")
77
- image_bot_path = pil_to_base64(out_img)
78
- print("Voice time", time.time() - start_time)
79
  if ZIP:
 
 
 
80
  io = BytesIO()
81
  zip_filename = "final_archive.zip"
82
  with zipfile.ZipFile(io, mode='w', compression=zipfile.ZIP_DEFLATED) as zf:
@@ -90,6 +95,9 @@ async def predict_api(
90
  headers={"Content-Disposition": f"attachment;filename=%s" % zip_filename}
91
  )
92
  else:
 
 
 
93
  print("Total time", time.time() - total_time)
94
  return {
95
  "voice": voice_bot_path,
 
9
 
10
  from fastapi import FastAPI, File, UploadFile, Form
11
  from fastapi.responses import StreamingResponse
12
+ from fastapi.middleware.gzip import GZipMiddleware
13
 
14
  from utils import tts, read_image_file, pil_to_base64, base64_to_pil, get_hist
15
  from typing import Optional
 
26
  defaul_bot_voice = "γŠγ―γ„γ‚ˆγ†γ”γ–γ„γΎγ™"
27
  area_thres = 0.3
28
  ZIP = False
29
+
30
  app = FastAPI()
31
+ app.add_middleware(GZipMiddleware, minimum_size=1000)
32
 
33
  @app.get("/")
34
  def read_root():
 
64
  out_img = image.crop(tuple(box)).resize((64, 64))
65
  most_close = area_rate
66
  print("Get face time", time.time() - start_time)
67
+
68
  start_time = time.time()
69
  if last_seen is not None:
70
  if type(last_seen) == str:
 
74
  if out_img is not None:
75
  diff_value = dist.euclidean(get_hist(out_img), get_hist(last_seen))
76
  print("Hist time", time.time() - start_time)
77
+
78
  start_time = time.time()
79
  print(f"Distance: {most_close}. Different value: {diff_value}")
80
  if most_close >= area_thres and diff_value >= 0.5:
 
 
 
81
  if ZIP:
82
+ voice_bot_path = tts(defaul_bot_voice, language="ja")
83
+ image_bot_path = pil_to_base64(out_img)
84
+ print("Voice time", time.time() - start_time)
85
  io = BytesIO()
86
  zip_filename = "final_archive.zip"
87
  with zipfile.ZipFile(io, mode='w', compression=zipfile.ZIP_DEFLATED) as zf:
 
95
  headers={"Content-Disposition": f"attachment;filename=%s" % zip_filename}
96
  )
97
  else:
98
+ voice_bot_path = tts(default_bot_voice, language="ja", encode=True)
99
+ image_bot_path = pil_to_base64(out_img, encode=True)
100
+ print("Voice time", time.time() - start_time)
101
  print("Total time", time.time() - total_time)
102
  return {
103
  "voice": voice_bot_path,