Pongsasit commited on
Commit
db73a7e
1 Parent(s): e7e046d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -31,6 +31,14 @@ from sentence_transformers.cross_encoder import CrossEncoder
31
 
32
  model = CrossEncoder("Pongsasit/mod-th-cross-encoder-minilm")
33
 
34
- scores = model.predict([["อาหารตามสั่ง", "หมู เห็ด เป็ด ไก่"], ["อาหารตามสั่ง", "รถ เรือ เครื่องบิน จักรยาน"]])
 
 
35
 
 
 
 
 
 
 
36
  ```
 
31
 
32
  model = CrossEncoder("Pongsasit/mod-th-cross-encoder-minilm")
33
 
34
+ th_question = "การใช้สีส่งผลต่ออารมณ์ของภาพวาดอย่างไร"
35
+ th_answer1 = "เมื่อศิลปินเลือกเฉดสีที่แตกต่างกัน มันก็เหมือนกับการเลือกความรู้สึกที่แตกต่างกันให้กับภาพของพวกเขา!"
36
+ th_answer2 = "ทำไมสิ่งเล็กๆ น้อยๆ บางครั้งจึงดูเหมือนอยู่สองแห่งในเวลาเดียวกัน? เหมือนพยายามจับผีเล่นซ่อนหา!"
37
 
38
+ en_question = "How does the use of color contribute to the emotional impact of a painting?"
39
+ en_answer1 = "When an artist picks different shades, it's like picking different feelings for their picture!"
40
+ en_answer2 = "Why do really tiny things sometimes seem to be in two places at the same time? It's like trying to catch a sneaky ghost playing hide and seek!"
41
+
42
+ th_scores = model.predict([[th_question, th_answer1], [th_question, th_answer2]])
43
+ en_scores = model.predict([[en_question, en_answer1], [en_question, en_answer2]])
44
  ```