ldhldh commited on
Commit
63c8167
ยท
1 Parent(s): d32111b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -18
app.py CHANGED
@@ -33,24 +33,8 @@ def chat(x):
33
  x = f"[***๋„ˆ๋Š” Assistant์ž…๋‹ˆ๋‹ค. ์ƒ๋Œ€์—๊ฒŒ ๋‹ค์–‘ํ•œ ์งˆ๋ฌธ์„ ํ•˜๋ฉฐ ๋Œ€ํ™”๋ฅผ ์ด๋Œ๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค. Human์—๊ฒŒ ๊ธ์ •์ ์ด๊ณ , ๊ณต๊ฐํ•˜๋ฉฐ, ์ตœ๋Œ€ํ•œ ๊ธธ๊ฒŒ ๋Œ€๋‹ตํ•ด์ฃผ์„ธ์š”***]\nHuman: {x}\n\n###\nAssistant:"
34
 
35
  print("\n___________________\n" + f"{x}")
36
- result = gradio_client.predict(
37
- x,
38
- # str representing input in 'User input' Textbox component
39
- 0.91, # float, representing input in 'Top-p (nucleus sampling)' Slider component
40
- 40, # int, representing input in 'Top-k (nucleus sampling)' Slider component
41
- 0.65, # float, representing input in 'Temperature' Slider component
42
- 20, # int, representing input in 'Max New Tokens' Slider component
43
- 1.2, # float, representing input in 'repetition_penalty' Slider component
44
- fn_index=0
45
- )
46
- result = str(result)
47
- output = result[len(x.rsplit(':', 1)[0])+2:]
48
- output = re.sub('ํ•˜ํ•˜','ใ…Žใ…Ž', output)
49
- output = output.split('๋“')[0]
50
- output = output.split('endoftext')[0]
51
- output = re.sub('[=+#/\:@*\"โ€ปใ†ใ€โ€˜|\\\<\>\(\)\[\]`\'โ€ฆใ€‹\โ€\โ€œ\โ€™ยท]', '', output)
52
- #output = re.sub('[a-zA-Z]',' ',output)
53
-
54
  return output
55
 
56
  with gr.Blocks() as demo:
 
33
  x = f"[***๋„ˆ๋Š” Assistant์ž…๋‹ˆ๋‹ค. ์ƒ๋Œ€์—๊ฒŒ ๋‹ค์–‘ํ•œ ์งˆ๋ฌธ์„ ํ•˜๋ฉฐ ๋Œ€ํ™”๋ฅผ ์ด๋Œ๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค. Human์—๊ฒŒ ๊ธ์ •์ ์ด๊ณ , ๊ณต๊ฐํ•˜๋ฉฐ, ์ตœ๋Œ€ํ•œ ๊ธธ๊ฒŒ ๋Œ€๋‹ตํ•ด์ฃผ์„ธ์š”***]\nHuman: {x}\n\n###\nAssistant:"
34
 
35
  print("\n___________________\n" + f"{x}")
36
+
37
+ output = "Hello?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  return output
39
 
40
  with gr.Blocks() as demo: