-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_aide.sh
More file actions
executable file
·45 lines (42 loc) · 1.44 KB
/
run_aide.sh
File metadata and controls
executable file
·45 lines (42 loc) · 1.44 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
# set -e
# set -o pipefail
cp -r logs/ logs_old/
rm -rf workspaces/ wandb/ logs/
mkdir -p logs/
# first check if the data/ is present
if [ ! -d "data/" ]; then
echo "Error: data/ directory not found. downloading it ...."
python aide/utils/drive_download.py
fi
O4_MODEL="o3-mini"
# o4-mini-2025-04-16"
CODER_MODEL="o3-mini"
# DeepSeek_MODEL="gpt-4-turbo"
# CODER_MODEL="deepseek-ai/DeepSeek-R1-0528-Qwen3-8B"
# # CODER_MODEL="o3-mini"
# ${O4_MODEL} #"RedHatAI/DeepSeek-R1-Distill-Qwen-14B-FP8-dynamic"
# CODER_MODEL="deepseek-ai/DeepSeek-R1-Distill-Qwen-7B"
# PLANNER_MODEL="deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B"
competition_name="leaf-classification"
data_dir="data/leaf-classification"
GOAL="Predict the leaf species"
EVAL="Use the accuracy score metric between the predicted and observed values."
aide \
data_dir="${data_dir}/" \
desc_file="${data_dir}/leaf-classification.md" \
log_level="DEBUG" \
competition_name="${competition_name}" \
agent.steps=2 \
agent.obfuscate=False \
agent.ITS_Strategy="codechain_v3" \
agent.code.model="${CODER_MODEL}" \
agent.code.planner_model="${CODER_MODEL}" \
agent.code.temp=0.8 \
agent.code.max_new_tokens=4096 \
agent.code.num_return_sequences=1 \
agent.feedback.model="${O4_MODEL}" \
agent.search.debug_prob=0.8 \
wandb.enabled=True \
wandb.project="MLE_BENCH_AIDE_VM" \
wandb.entity=asim_awad