├── .github └── workflows │ └── ci.yaml ├── LICENSE ├── README.md ├── chunked_pooling ├── __init__.py ├── chunked_eval_tasks.py ├── chunking.py ├── mteb_chunked_eval.py └── wrappers.py ├── examples.ipynb ├── explanatory_contextual_retrieval.py ├── img ├── context-problem.png ├── method.png └── rag.png ├── pyproject.toml ├── run_chunked_eval.py └── tests ├── __init__.py ├── conftest.py ├── test_api.py ├── test_chunking_methods.py └── test_v3.py /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/README.md -------------------------------------------------------------------------------- /chunked_pooling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/chunked_pooling/__init__.py -------------------------------------------------------------------------------- /chunked_pooling/chunked_eval_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/chunked_pooling/chunked_eval_tasks.py -------------------------------------------------------------------------------- /chunked_pooling/chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/chunked_pooling/chunking.py -------------------------------------------------------------------------------- /chunked_pooling/mteb_chunked_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/chunked_pooling/mteb_chunked_eval.py -------------------------------------------------------------------------------- /chunked_pooling/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/chunked_pooling/wrappers.py -------------------------------------------------------------------------------- /examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/examples.ipynb -------------------------------------------------------------------------------- /explanatory_contextual_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/explanatory_contextual_retrieval.py -------------------------------------------------------------------------------- /img/context-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/img/context-problem.png -------------------------------------------------------------------------------- /img/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/img/method.png -------------------------------------------------------------------------------- /img/rag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/img/rag.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_chunked_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/run_chunked_eval.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_chunking_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/tests/test_chunking_methods.py -------------------------------------------------------------------------------- /tests/test_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/late-chunking/HEAD/tests/test_v3.py --------------------------------------------------------------------------------