Tabular Classification
Keras
Scikit-learn
English
tensorflow
random-forest
cnn
clustering
nlp
computer-vision
recommendation-system
time-series
streamlit
Instructions to use OKTAYBBS/DataScientst-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use OKTAYBBS/DataScientst-models with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://OKTAYBBS/DataScientst-models") - Scikit-learn
How to use OKTAYBBS/DataScientst-models with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("OKTAYBBS/DataScientst-models", "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 README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -82,16 +82,31 @@ pipeline_tag: tabular-classification
|
|
| 82 |
|-------|-------|
|
| 83 |
| Metin Uretim (Markov) | `text_robot_model.pkl` |
|
| 84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
## Kullanim
|
| 86 |
|
| 87 |
```python
|
| 88 |
from huggingface_hub import hf_hub_download
|
| 89 |
import joblib
|
| 90 |
|
| 91 |
-
#
|
| 92 |
model_path = hf_hub_download(
|
| 93 |
repo_id="OKTAYBBS/DataScientst-models",
|
| 94 |
-
filename="gold_model.pkl"
|
| 95 |
)
|
| 96 |
|
| 97 |
# Yukle ve kullan
|
|
@@ -105,7 +120,7 @@ import tensorflow as tf
|
|
| 105 |
|
| 106 |
model_path = hf_hub_download(
|
| 107 |
repo_id="OKTAYBBS/DataScientst-models",
|
| 108 |
-
filename="pneumonia_model.keras"
|
| 109 |
)
|
| 110 |
model = tf.keras.models.load_model(model_path)
|
| 111 |
```
|
|
|
|
| 82 |
|-------|-------|
|
| 83 |
| Metin Uretim (Markov) | `text_robot_model.pkl` |
|
| 84 |
|
| 85 |
+
## Repo Yapisi
|
| 86 |
+
|
| 87 |
+
```
|
| 88 |
+
regression/ -- Altin, Ogrenci, Uber tahmin modelleri
|
| 89 |
+
classification/ -- Mobil, Sarap, Churn siniflandirma modelleri
|
| 90 |
+
clustering/ -- NBA, Kredi Karti, Spotify kumeleme modelleri + scaler'lar
|
| 91 |
+
computer_vision/ -- Maske tespiti modeli
|
| 92 |
+
nlp/ -- Spam, IMDb, Sahte Haber modelleri + TF-IDF vectorizer'lar
|
| 93 |
+
recommendation/ -- Film, Kitap, Sarki oneri verileri + similarity matrisleri
|
| 94 |
+
time_series/ -- Hisse, Hava Durumu, Magaza tahmin modelleri
|
| 95 |
+
data_viz/ -- Gorsellestirme CSV verileri
|
| 96 |
+
deep_learning/ -- CNN modelleri (Keras) + Markov metin uretici
|
| 97 |
+
metrics/ -- Tum modellerin performans metrikleri (JSON, CSV, PNG)
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
## Kullanim
|
| 101 |
|
| 102 |
```python
|
| 103 |
from huggingface_hub import hf_hub_download
|
| 104 |
import joblib
|
| 105 |
|
| 106 |
+
# Kategori klasorundan modeli indir
|
| 107 |
model_path = hf_hub_download(
|
| 108 |
repo_id="OKTAYBBS/DataScientst-models",
|
| 109 |
+
filename="regression/gold_model.pkl"
|
| 110 |
)
|
| 111 |
|
| 112 |
# Yukle ve kullan
|
|
|
|
| 120 |
|
| 121 |
model_path = hf_hub_download(
|
| 122 |
repo_id="OKTAYBBS/DataScientst-models",
|
| 123 |
+
filename="deep_learning/pneumonia_model.keras"
|
| 124 |
)
|
| 125 |
model = tf.keras.models.load_model(model_path)
|
| 126 |
```
|