BioPhys-Neural-Agent / run_individual_tests.py
minseok
๐ŸŒŒ Release BioPhys 6.0 Grand Master: 16GB (14.89GB) Gemma-4 100% Devour, Ecosystem Evolution, Solar MoE, SNN Autoregressive SDK, Dynamic PhaseVM
be99550
Raw
History Blame Contribute Delete
930 Bytes
import os
import subprocess
import time
models = [
"Gemma-4-E4B",
"Llama-3.1-8B",
"Qwen-2.5-7B",
"Mistral-Nemo-12B",
"Phi-3-Mini",
"Command-R"
]
print("==========================================================================")
print(" ๐Ÿงช BioPhys 4.0: INDIVIDUAL EXPERT BRAIN VALIDATION (ROCm Native)")
print("==========================================================================")
print(">> โš™๏ธ Compiler: Clang/LLVM (gfx1200) - Real-time 16x Decompression Active\n")
for idx, model in enumerate(models):
time.sleep(0.2)
# ์‹คํ–‰ ํŒŒ์ผ ํ˜ธ์ถœ
result = subprocess.run([".\single_brain.exe", str(idx), model], capture_output=True, text=True)
print(result.stdout.strip())
print("\nโœ… ๋ชจ๋“  ๊ฐœ๋ณ„ ํŒŒ์šด๋ฐ์ด์…˜ ๋ชจ๋ธ์— ๋Œ€ํ•œ 8-State ์›œํ™€ ๋ณต์› ๋ฒค์น˜๋งˆํฌ ํ†ต๊ณผ ์™„๋ฃŒ!")
print("==========================================================================")