File size: 375 Bytes
62a40cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from handler import EndpointHandler
import json
# Initialize handler with model directory
handler = EndpointHandler(model_dir='.')
# Create test input data
test_data = {
"inputs": "Bone scan: Negative for distant metastasis."
}
# Process through handler
result = handler(test_data)
# Print formatted results
print("Test Results:")
print(json.dumps(result, indent=2))
|