-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
24 lines (20 loc) · 801 Bytes
/
run.sh
File metadata and controls
24 lines (20 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cd analysis
echo "**Overall Performaces of LLMs**"
echo "RUNNING parse_results.sh"
bash parse_results.sh
echo "**Analyzing Program Constructs...**"
echo "RUNNING analyze_constructs.sh"
bash analyze_constructs.sh
echo "Find reports under /Experiment_Results/figures/constructs"
echo "**Analyzing Program Complexity...**"
echo "RUNNING analyze_complexity.sh"
bash analyze_complexity.sh
echo "Find reports under /Experiment_Results/figures/program_complexity"
echo "**Analyzing Dynamic Properties...**"
echo "RUNNING analyze_dynamic.sh"
bash analyze_dynamic.sh
echo "Find reports under /Experiment_Results/figures/dynamic_property"
echo "**Analyzing Output Variable Types...**"
echo "RUNNING analyze_types.sh"
bash analyze_types.sh
echo "Find reports under /Experiment_Results/figures/variable_types"