DeepImageSearch
DeepImageSearch is a Python library for fast and accurate image search. It offers seamless integration with Python, GPU support, and advanced capabilities for identifying complex image patterns using the Vision Transformer models.
파일 탐색기
최종 버전 다운로드 (.zip)- ci.yml
- release.yml
- __init__.py
- langchain_tool.py
- mcp_server.py
- tool_interface.py
- __init__.py
- captioner.py
- embeddings.py
- indexer.py
- searcher.py
- __init__.py
- loader.py
- __init__.py
- base.py
- json_store.py
- postgres_store.py
- __init__.py
- base.py
- chroma_store.py
- faiss_store.py
- qdrant_store.py
- __init__.py
- _openmp.py
- DeepImageSearch.py
- search_engine.py
- 01_basic_image_search.py
- 02_text_to_image_search.py
- 03_hybrid_search.py
- 04_filtered_search.py
- 05_llm_captioning.py
- 06_vector_stores.py
- 07_metadata_storage.py
- 08_agentic_tools.py
- 09_embedding_models.py
- 10_incremental_indexing.py
- 01-getting-started.md
- 02-search-engine.md
- 03-embeddings.md
- 04-captioning.md
- 05-vector-stores.md
- 06-metadata-storage.md
- 07-agentic-integration.md
- 08-data-loading.md
- 09-api-reference.md
- Document.md
- 00_classic_image_search.png
- 01_image_to_image_search.png
- 02_text_to_image_search.png
- 03_search_mode_comparison.png
- deepimagesearch_example.png
- deepimagesearch_logo.png
- bump_version.py
- __init__.py
- conftest.py
- test_agents.py
- test_bump_version.py
- test_captioner.py
- test_embedding_backends.py
- test_embeddings.py
- test_indexer_searcher.py
- test_loader.py
- test_metadata_store.py
- test_openmp_guard.py
- test_optional_vectorstores.py
- test_package.py
- test_plotting_and_routing.py
- test_postgres_store.py
- test_search_engine.py
- test_v2_compat.py
- test_vectorstores.py
- .gitignore
- CHANGELOG.md
- CITATION.cff
- CONTRIBUTING.md
- LICENSE.txt
- pyproject.toml
- README.md
- requirements.txt
# 설치 가이드
git clone https://github.com/TechyNilesh/DeepImageSearch
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd DeepImageSearch
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천- Python 3 pip 명령어를 쓰려면 Python이 필요합니다.
pip install DeepImageSearch --upgrade
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install git+https://github.com/TechyNilesh/DeepImageSearch.git
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "DeepImageSearch[all] @ git+https://github.com/TechyNilesh/DeepImageSearch.git"
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "DeepImageSearch[llm]" # LLM captioning (OpenAI SDK)
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Python
쉬움pip install DeepImageSearch --upgrade
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install git+https://github.com/TechyNilesh/DeepImageSearch.git
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
uv pip install git+https://github.com/TechyNilesh/DeepImageSearch.git
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
pip install "DeepImageSearch[all] @ git+https://github.com/TechyNilesh/DeepImageSearch.git"
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "DeepImageSearch[llm]" # LLM captioning (OpenAI SDK)
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
