From b1a2672d14bd6de9145f3b04d5672cc49fc68ff8 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Mon, 18 Aug 2025 15:50:07 -0600 Subject: [PATCH] test result folders --- tests/create_dirs.sh | 26 +++++++++++++++++++ .../test_0/apple_OpenELM-3B-Instruct/_.txt | 0 .../meta-llama_Llama-3.2-3B-Instruct/_.txt | 0 .../microsoft_Phi-3-mini-4k-instruct/_.txt | 0 .../test_1/apple_OpenELM-3B-Instruct/_.txt | 0 .../meta-llama_Llama-3.2-3B-Instruct/_.txt | 0 .../microsoft_Phi-3-mini-4k-instruct/_.txt | 0 .../test_2/apple_OpenELM-3B-Instruct/_.txt | 0 .../meta-llama_Llama-3.2-3B-Instruct/_.txt | 0 .../microsoft_Phi-3-mini-4k-instruct/_.txt | 0 .../test_3/apple_OpenELM-3B-Instruct/_.txt | 0 .../meta-llama_Llama-3.2-3B-Instruct/_.txt | 0 .../microsoft_Phi-3-mini-4k-instruct/_.txt | 0 .../test_4/apple_OpenELM-3B-Instruct/_.txt | 0 .../meta-llama_Llama-3.2-3B-Instruct/_.txt | 0 .../microsoft_Phi-3-mini-4k-instruct/_.txt | 0 16 files changed, 26 insertions(+) create mode 100755 tests/create_dirs.sh create mode 100644 tests/logs/test_0/apple_OpenELM-3B-Instruct/_.txt create mode 100644 tests/logs/test_0/meta-llama_Llama-3.2-3B-Instruct/_.txt create mode 100644 tests/logs/test_0/microsoft_Phi-3-mini-4k-instruct/_.txt create mode 100644 tests/logs/test_1/apple_OpenELM-3B-Instruct/_.txt create mode 100644 tests/logs/test_1/meta-llama_Llama-3.2-3B-Instruct/_.txt create mode 100644 tests/logs/test_1/microsoft_Phi-3-mini-4k-instruct/_.txt create mode 100644 tests/logs/test_2/apple_OpenELM-3B-Instruct/_.txt create mode 100644 tests/logs/test_2/meta-llama_Llama-3.2-3B-Instruct/_.txt create mode 100644 tests/logs/test_2/microsoft_Phi-3-mini-4k-instruct/_.txt create mode 100644 tests/logs/test_3/apple_OpenELM-3B-Instruct/_.txt create mode 100644 tests/logs/test_3/meta-llama_Llama-3.2-3B-Instruct/_.txt create mode 100644 tests/logs/test_3/microsoft_Phi-3-mini-4k-instruct/_.txt create mode 100644 tests/logs/test_4/apple_OpenELM-3B-Instruct/_.txt create mode 100644 tests/logs/test_4/meta-llama_Llama-3.2-3B-Instruct/_.txt create mode 100644 tests/logs/test_4/microsoft_Phi-3-mini-4k-instruct/_.txt diff --git a/tests/create_dirs.sh b/tests/create_dirs.sh new file mode 100755 index 000000000..3953e8728 --- /dev/null +++ b/tests/create_dirs.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# Array of model names +models=( + "apple/OpenELM-3B-Instruct" + "meta-llama/Llama-3.2-3B-Instruct" + "microsoft/Phi-3-mini-4k-instruct" +) + +# Create base integration directory if it doesn't exist + +# Iterate through test directories 1-5 +for i in {0..4}; do + # Iterate through each model + for model in "${models[@]}"; do + # Replace / with + dir_name="${model//\//_}" + + # Create the directory structure + mkdir -p "logs/test_${i}/${dir_name}" + + echo "Created: logs/test_${i}/${dir_name}" + done +done + +echo "All directories created successfully!" \ No newline at end of file diff --git a/tests/logs/test_0/apple_OpenELM-3B-Instruct/_.txt b/tests/logs/test_0/apple_OpenELM-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_0/meta-llama_Llama-3.2-3B-Instruct/_.txt b/tests/logs/test_0/meta-llama_Llama-3.2-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_0/microsoft_Phi-3-mini-4k-instruct/_.txt b/tests/logs/test_0/microsoft_Phi-3-mini-4k-instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_OpenELM-3B-Instruct/_.txt b/tests/logs/test_1/apple_OpenELM-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_Llama-3.2-3B-Instruct/_.txt b/tests/logs/test_1/meta-llama_Llama-3.2-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_Phi-3-mini-4k-instruct/_.txt b/tests/logs/test_1/microsoft_Phi-3-mini-4k-instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_OpenELM-3B-Instruct/_.txt b/tests/logs/test_2/apple_OpenELM-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_Llama-3.2-3B-Instruct/_.txt b/tests/logs/test_2/meta-llama_Llama-3.2-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_Phi-3-mini-4k-instruct/_.txt b/tests/logs/test_2/microsoft_Phi-3-mini-4k-instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_OpenELM-3B-Instruct/_.txt b/tests/logs/test_3/apple_OpenELM-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_Llama-3.2-3B-Instruct/_.txt b/tests/logs/test_3/meta-llama_Llama-3.2-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_Phi-3-mini-4k-instruct/_.txt b/tests/logs/test_3/microsoft_Phi-3-mini-4k-instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_OpenELM-3B-Instruct/_.txt b/tests/logs/test_4/apple_OpenELM-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_Llama-3.2-3B-Instruct/_.txt b/tests/logs/test_4/meta-llama_Llama-3.2-3B-Instruct/_.txt new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_Phi-3-mini-4k-instruct/_.txt b/tests/logs/test_4/microsoft_Phi-3-mini-4k-instruct/_.txt new file mode 100644 index 000000000..e69de29bb