Instructions to use AndrewMaru/Datathon_Lung_Cancer_Detector with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use AndrewMaru/Datathon_Lung_Cancer_Detector with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("AndrewMaru/Datathon_Lung_Cancer_Detector", "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
Upload 4 files
Browse files- main.ipynb +0 -0
- requirements.txt +5 -9
main.ipynb
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
requirements.txt
CHANGED
|
@@ -1,11 +1,7 @@
|
|
| 1 |
-
|
| 2 |
pandas
|
| 3 |
-
scikit-learn==1.3.2
|
| 4 |
-
imbalanced-learn==0.11.0
|
| 5 |
-
ipykernel
|
| 6 |
-
xgboost
|
| 7 |
-
matplotlib
|
| 8 |
-
seaborn
|
| 9 |
joblib
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit
|
| 2 |
pandas
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
joblib
|
| 4 |
+
scikit-learn
|
| 5 |
+
xgboost
|
| 6 |
+
lightgbm
|
| 7 |
+
imbalanced-learn
|