-
Notifications
You must be signed in to change notification settings - Fork 282
[N-2] 08-EMBEDDING / 03-HuggingFaceEmbeddings #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
[Title] HuggingFace Embeddings [Version] initial [Language] ENG [Package] langchain_huggingface, langsmith, torch, numpy, scikit-learn This tutorial demonstrates building a simple text embedding-based search system using LangChain HuggingFace. Text Embedding Models Used: - multilingual-e5-large-instruct: A multilingual instruction-based embedding model. - multilingual-e5-large: A powerful multilingual embedding model. - bge-m3: Optimized for large-scale text processing.
%%time Embed the query and documents using the embedding modelembedded_query = hf_endpoint_embeddings.embed_query(q)
|
@LEE1026icarus from dotenv import load_dotenv
load_dotenv(override=True) 코드에 반영하겠습니다! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Review OS(Windows/Mac/Linux): Mac
- Template Rule 가이드를 준수 하였는가(YES/NO): YES
- Table of Contents 의 링크가 원활하게 동작하는지 확인하였는가?(YES/NO): YES
- 이미지가 포함되어 있다면, 이미지의 파일명이 가이드를 준수하였는가?(YES/NO):YES
- import 구문이 예전 legacy 방식이 아닌 최신 버전을 따르는가?(YES/NO):YES
- 모든 코드가 동작에 오류 없이 동작하는가? (만약, warning 발생시 코멘트에 적어주세요):YES
- 기타 의견: 고생하셨습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Review OS(Windows/Mac/Linux): Window
- Template Rule 가이드를 준수 하였는가(YES/NO): YES
- Table of Contents 의 링크가 원활하게 동작하는지 확인하였는가?(YES/NO): YES
- 이미지가 포함되어 있다면, 이미지의 파일명이 가이드를 준수하였는가?(YES/NO):YES
- import 구문이 예전 legacy 방식이 아닌 최신 버전을 따르는가?(YES/NO):YES
- 모든 코드가 동작에 오류 없이 동작하는가? (만약, warning 발생시 코멘트에 적어주세요):YES
- 기타 의견: 고생하셨습니다.
@acho98 @LEE1026icarus 번거로우시겠지만 리뷰 완료 버튼 한번 더 클릭 부탁드리겠습니다.🙇♂️ |
@namyoungkim 님 고생하셨습니다. 현재 file changed 에 .gitignore 파일과 poetry.lock 파일이 포함되어 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다
[Title] HuggingFace Embeddings
[Version] initial
[Language] ENG
[Package] langchain_huggingface, langsmith, torch, numpy, scikit-learn
This tutorial demonstrates building a simple text embedding-based search system using LangChain HuggingFace.
Text Embedding Models Used: