Instructions to use giovannefeitosa/chatbot-about-pele with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use giovannefeitosa/chatbot-about-pele with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("giovannefeitosa/chatbot-about-pele", "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
| { | |
| "sklearn": { | |
| "columns": [ | |
| "question", | |
| "openaikey" | |
| ], | |
| "environment": [ | |
| "openai==0.27.2", | |
| "scipy", | |
| "setuptools", | |
| "wheel", | |
| "spacy", | |
| "scikit-learn", | |
| "numpy" | |
| ], | |
| "example_input": { | |
| "petal length (cm)": [ | |
| 1.4, | |
| 1.4, | |
| 1.3 | |
| ], | |
| "petal width (cm)": [ | |
| 0.2, | |
| 0.2, | |
| 0.2 | |
| ], | |
| "sepal length (cm)": [ | |
| 5.1, | |
| 4.9, | |
| 4.7 | |
| ], | |
| "sepal width (cm)": [ | |
| 3.5, | |
| 3.0, | |
| 3.2 | |
| ] | |
| }, | |
| "model": { | |
| "file": "io/generated/model.sklearn" | |
| }, | |
| "task": "question-answering" | |
| } | |
| } |