Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prompting/rewards/web_retrieval.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# Define file paths
PAST_WEBSITES_FILE = "past_websites.csv"
TOP_DOMAINS_FILE = "../data/top100k_domains.csv"
TOP_DOMAINS_FILE = "data/top100k_domains.csv"

# Define blacklisted terms
BLACKLISTED_TERMS = {
Expand Down
5 changes: 2 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ poetry install --extras "validator"

# Build AutoAWQ==0.2.8 from source
if [ -d AutoAWQ ]; then rm -rf AutoAWQ; fi
git clone git@github.com:casper-hansen/AutoAWQ.git
cd AutoAWQ && git checkout 16335d087dd4f9cdc8933dd7a5681e4bf88311b6 && pip install -U . && cd ..
rm -rf AutoAWQ
git clone https://github.com/casper-hansen/AutoAWQ.git
cd AutoAWQ && git checkout 16335d087dd4f9cdc8933dd7a5681e4bf88311b6 && poetry run pip install -e . && cd ..

poetry run pip install flash-attn --no-build-isolation

Expand Down
Loading