(no commit message)

This commit is contained in:
2025-12-21 00:56:09 -08:00
parent 35901cfaa1
commit 11ffdd3cd4
11 changed files with 788 additions and 1 deletions

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
from medval.pipeline import MedVALConfig, MedVAL
pipeline = MedVAL(MedVALConfig())
def main():
pipeline.push_to_hub("stanfordmimi/MedVAL-pipeline", with_code=True)
print("Pipeline pushed to hub")
if __name__ == "__main__":
main()