Name | Type | Performance | Rank |
---|---|---|---|
재정정보 AI 검색 알고리즘 경진대회 | LLM | 🥉 Top7% | 26/359 |
- Clone the repository
git clone https://github.com/whybe-choi/dacon-financial-information-ai-search.git
cd dacon-financial-information-ai-search
- Create a virtual environment & Install the dependencies
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Save FAISS to local
python src/vectordb.py
- Inference
python main.py
.
├── LICENSE
├── README.md
├── data
│ ├── sample_submission.csv
│ ├── test.csv
│ ├── test_source
│ ├── train.csv
│ └── train_source
├── faiss
│ └── ...
├── main.py
├── models
│ └── ...
├── requirements.txt
└── src
├── llm.py
├── prompt.py
├── reranker.py
├── retriever.py
├── utils.py
└── vectordb.py