Tabular Classification
Scikit-learn
English
healthcare
ehr
copd
clinical-risk
tabular
scikit-learn
xgboost
lightgbm
Instructions to use stormid/copd-model-c with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use stormid/copd-model-c with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("stormid/copd-model-c", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
| trigger: | |
| branches: | |
| include: | |
| - main | |
| - release/* | |
| jobs: | |
| - job: 'build' | |
| pool: | |
| vmImage: 'ubuntu-latest' | |
| steps: | |
| - task: UsePythonVersion@0 | |
| inputs: | |
| versionSpec: '3.8' | |
| architecture: 'x64' | |
| displayName: 'Specify Python version' | |
| - script: | | |
| python -m pip install --upgrade pip | |
| displayName: 'Install pip' | |
| - script: | | |
| pip install -r requirements.txt | |
| displayName: 'Install CI dependencies' | |
| - script: | | |
| flake8 | |
| displayName: 'Run linting' |