From c57d3a9688dcbefd1abd17713ee7d7eab818a76a Mon Sep 17 00:00:00 2001 From: Pepijn Date: Wed, 10 Sep 2025 21:54:41 +0200 Subject: [PATCH] remove test --- test_pi05_hub_only.py | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 test_pi05_hub_only.py diff --git a/test_pi05_hub_only.py b/test_pi05_hub_only.py deleted file mode 100644 index 649445f8d..000000000 --- a/test_pi05_hub_only.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python -# TODO(pepijn): delete this file -"""Quick test script to load and test only the PI0.5 model from HuggingFace hub.""" - -from test_pi0_hub import test_hub_loading - - -def main(): - """Test only the PI0.5 model.""" - print("\n") - print("=" * 60) - print("PI0.5 Model Quick Test") - print("=" * 60) - - success = test_hub_loading(model_id="pepijn223/pi05_base_fp32", model_name="PI0.5") - - if success: - print("\n✅ PI0.5 model loaded and tested successfully!") - else: - print("\n❌ PI0.5 test failed!") - - return success - - -if __name__ == "__main__": - success = main() - exit(0 if success else 1)