Zindi ITU Challenge Docs
  • Overview
    • 💡Introduction
    • ☎️Challenges and Objectives
  • METHOD
    • 📪RAG
    • 📎Finetuning (Phi-2)
    • 🧙‍♂️Response Scoring (Falcon7B)
    • 🤖Abbreviations
  • Final Systems
    • 🛞Phi-2
    • 🛻Falcon7B
  • REPRODUCING RESULTS
    • 🚀Installation Instructions
    • 🏓Phi-2
    • ⚾Falcon7B
  • Links
Powered by GitBook
On this page
  • Prerequisites
  • Steps
  1. REPRODUCING RESULTS

Installation Instructions

Follow these steps to set up the project environment

Prerequisites


  • Anaconda or Miniconda on your system

  • Python 3.9 or higher

  • Git LFS

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
# answer yes to terms and to automatically setting up Miniconda
# reopen terminal
conda deactivate # exit from base env
conda create -n qna python=3.10
conda activate qna
sudo apt install git-lfs

Steps


  1. Clone the repository

git clone https://github.com/Alexgichamba/itu_qna_challenge.git
cd itu_qna_challenge/
  1. Install dependencies

chmod +x install_dependencies.sh
./install_dependencies.sh

PreviousFalcon7BNextPhi-2

Last updated 10 months ago

🚀