CoolFace
Modelpublic

StephenIreOloyede/Disease-Diagnosis-Model

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes7downloads
Model Card

# My ONNX Model

This is a custom ONNX model trained for disease diagnosis.

## Usage Example:

python
  from huggingface_hub import InferenceApi
  inference = InferenceApi(repo_id="username/my-onnx-model", token="your_huggingface_token")
  input_data = "Some text input"
  result = inference(inputs=input_data)
  print(result)