OKTAYBBS commited on
Commit
d33b6db
·
verified ·
1 Parent(s): a6f25d8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +18 -3
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
- # Modeli indir
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
  ```