카페검색 본문
카페글 본문
-
(hotel-chatbot) text_embedding.py 2024.10.12해당카페글 미리보기
as pd import tiktoken from openai import OpenAI from typing import List client = OpenAI() embedding_model = "text-embedding-ada-002" embedding_encoding = "cl100k_base" max_tokens = 1500 # ' data.csv ' 파일을 불러와서 칼럼 이름을 'title...
-
Re: 오늘의 마지막 문제. 다음의 질문을 심리 상담 언어모델에게 했을때 적절한 답을 할 수있도록... 2024.10.29해당카페글 미리보기
모델 초기화 # 간결하면서 높은 성능 보이는 사전에 훈련된 언어 모델 model = SentenceTransformer('all-MiniLM-L6-v2') embedding_a = model.encode("하루 종일 우울해요").reshape(1, -1) embedding_b = model.encode("남편만 보면 화가 치밀어 오르고...
-
GPS의 대안으로 양자측지 기술을 주목중인 펜타곤 2024.11.29해당카페글 미리보기
Agency, which is fielding a resilient space architecture of low-Earth orbit satellites, has already begun “embedding” PNT signals into its first data transport satellites. These nodes include information about position and timing while...
-
Israeli Strikes Threaten Lebanon’s Archaeological Treasures 2024.11.26해당카페글 미리보기
military planning and that each “goes through a rigorous approval process.” Israel has accused Hezbollah of embedding in civilian areas, including near cultural heritage sites. The Israeli military did not respond when asked to provide...
-
Re: 표재성 근막의 신경지배 2022 논문 탐구!! 2024.11.17해당카페글 미리보기
were used for floating immunohistochemistry, the other 5–7 SF followed the protocol for classical paraffin embedding. For floating immunohistochemistry, the SF samples were washed in Phosphate Buffered Saline (PBS) and transferred in...
테이블글 본문
-
챗gpt를 Fine-tuning 해서 활용하는것과 Embedding해서 사용하는게 어떻게 다르지? 2023.05.10
챗gpt를 Fine-tuning 하거나 Embedding을 사용하는 것은 모두 자연어 처리(Natural Language Processing, NLP)에서 텍스트 데이터를 다루기 위한 방법입니다. 하지만 두 기술은 목적과 사용 방법에서 차이가 있습니다. 챗gpt는 이미 사전 학습된 대규모...