Skip to content

Commit

Permalink
feat: 모델 변수명 및 requirement 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jiucchu committed Jan 17, 2024
1 parent 51ec4f2 commit fdf993d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions AI/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ class Item(BaseModel) :
sentence : str

class Item_and_num(BaseModel) :
item_list : List[Item]
min_n : int
max_n : int
items : List[Item]
teamMin : int
teamMax : int

@sbert.post('/clustering')
async def start_sbert(data:Item_and_num):

input = data.item_list
min_num = data.min_n
max_num = data.max_n
input = data.items
min_num = data.teamMin
max_num = data.teamMax


# 문장 임베딩
Expand Down
Binary file modified AI/requirements.txt
Binary file not shown.

0 comments on commit fdf993d

Please sign in to comment.