Skip to content

Instantly share code, notes, and snippets.

View GaoangLiu's full-sized avatar
:atom:

SLIPPER GaoangLiu

:atom:
  • 16:28 (UTC -12:00)
View GitHub Profile
@ToluClassics
ToluClassics / knn_elasticsearch.py
Last active February 17, 2023 08:47
KNN Nearest Neighbour Search in ElasticSearch
import os
import json
from tqdm import tqdm
import torch
import torch.nn.functional as F
from transformers import AutoTokenizer, AutoModel
from elasticsearch import Elasticsearch
class JsonlCollectionIterator: