-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
28 lines (23 loc) · 912 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# main.py
import torch
from src.embeddings.without_gpu import WithoutGPU
from src.embeddings.with_gpu import WithGPU
from src.database.annoy_database import AnnoyDatabase
from src.database.faiss_database import FaissDatabase
from src.query.query import QueryProcessor
import json
def main():
# Initialize embeddings (either WithGPU or WithoutGPU based on availability)
# embeddings = WithGPU() if torch.cuda.is_available() else WithoutGPU()
# Load data
data_path = "data/combined_questions_filtered.json"
data = load_data(data_path)
docs = [triplet["answer"] for triplet in data][:10]
# Initialize database (AnnoyDatabase or FaissDatabase)
database = AnnoyDatabase(num_trees=10, documents=docs)
def load_data(data_path):
with open(data_path, 'r', encoding = "utf-8") as json_file:
data = json.load(json_file)
return data
if __name__ == "__main__":
main()