ClaimClassification, a FastAPI demo site


  • /Prediction/free-text/pre-selected-model/

    Parameters
    • Required: incident_info={incident_info} - the incident_info of a claim that you want ClaimClassification to process
    • Required: claim_id={claim_id} - the id of a claim that you want ClaimClassification to process
  • /Prediction/free-text/live-training-model/

    Parameters
    • Required: incident_info={incident_info} - the incident_info of a claim that you want ClaimClassification to process
    • Required: claim_id={claim_id} - the id of a claim that you want ClaimClassification to process
    • Optional: optimisation={optimisation} - boolean, setting to check if lively select the optimal ML model
    • Optional: test_size={test_size} - float, of test size to find the best performed classifier
    • Optional: random_state={random_state} - integer, of random seed to find the best performed classifier
  • /Prediction/CNF/pre-selected-model/

    Parameters
    • Required: file={file} - the file that you want ClaimClassification to process
  • Response JSON

    • ClaimClassificationOutput - ClaimClassification will show a final prediction of claim type
    • Click REDOC link to see the API spec supplied by uvicorn
    • Click swagger link to try anything