OKTAYBBS commited on
Commit
e428729
·
verified ·
1 Parent(s): 3f60413

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +123 -0
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - tr
5
+ - en
6
+ tags:
7
+ - sklearn
8
+ - tensorflow
9
+ - keras
10
+ - random-forest
11
+ - cnn
12
+ - clustering
13
+ - nlp
14
+ - computer-vision
15
+ - recommendation-system
16
+ - time-series
17
+ - streamlit
18
+ pipeline_tag: tabular-classification
19
+ ---
20
+
21
+ # DataScientst -- 30 Proje, 34 Egitilmis Model
22
+
23
+ 10 farkli kategoride toplam 30 ML/AI projesinin egitilmis modelleri. Tum modeller Kaggle veri setleriyle egitilmistir.
24
+
25
+ ## Kategoriler ve Modeller
26
+
27
+ ### Regresyon (3 model)
28
+ | Model | Dosya | Metrik |
29
+ |-------|-------|--------|
30
+ | Altin Fiyati Tahmini | `gold_model.pkl` | R² = 0.990 |
31
+ | Ogrenci Sinav Puani | `student_model.pkl` | R² = 0.849 |
32
+ | Uber/Taksi Ucret | `uber_model.pkl` | R² = 0.778 |
33
+
34
+ ### Siniflandirma (3 model)
35
+ | Model | Dosya | Metrik |
36
+ |-------|-------|--------|
37
+ | Mobil Fiyat Segmenti | `mobile_model.pkl` | Accuracy = 81.2% |
38
+ | Sarap Kalitesi | `wine_model.pkl` | Accuracy = 67.5% |
39
+ | Musteri Terki (Churn) | `churn_model.pkl` | Accuracy = 78.9% |
40
+
41
+ ### Kumeleme (3 model)
42
+ | Model | Dosya | Metrik |
43
+ |-------|-------|--------|
44
+ | NBA Oyuncu Gruplama | `nba_model.pkl` + `nba_scaler.pkl` | Silhouette = 0.452 |
45
+ | Kredi Karti Segmentasyon | `cc_model.pkl` + `cc_scaler.pkl` | Silhouette = 0.531 |
46
+ | Spotify Sarki Kumeleme | `spotify_model.pkl` + `spotify_scaler.pkl` | Silhouette = 0.327 |
47
+
48
+ ### Bilgisayarli Goru (1 model)
49
+ | Model | Dosya | Metrik |
50
+ |-------|-------|--------|
51
+ | Maske Tespiti | `mask_model.pkl` | Accuracy = 82.5% |
52
+
53
+ ### Dogal Dil Isleme (3 model)
54
+ | Model | Dosya | Metrik |
55
+ |-------|-------|--------|
56
+ | SMS Spam Tespiti | `spam_model.pkl` + `spam_vectorizer.pkl` | Accuracy = 98.0% |
57
+ | IMDb Duygu Analizi | `imdb_model.pkl` + `imdb_vectorizer.pkl` | Accuracy = 87.3% |
58
+ | Sahte Haber Tespiti | `news_model.pkl` + `news_vectorizer.pkl` | Accuracy = 97.6% |
59
+
60
+ ### Oneri Sistemleri (3 set)
61
+ | Model | Dosyalar |
62
+ |-------|----------|
63
+ | Film Onerisi | `movie_data.pkl` + `movie_similarity.pkl` |
64
+ | Kitap Onerisi | `book_data.pkl` + `book_similarity.pkl` |
65
+ | Sarki Onerisi | `song_data.pkl` + `song_similarity.pkl` |
66
+
67
+ ### Zaman Serileri (3 model)
68
+ | Model | Dosya | Metrik |
69
+ |-------|-------|--------|
70
+ | Hisse Senedi (AAPL) | `stock_model.pkl` | R² = 0.975 |
71
+ | Hava Durumu | `weather_model.pkl` | R² = 0.912 |
72
+ | Magaza Satisi | `walmart_model.pkl` | R² = 0.767 |
73
+
74
+ ### Derin Ogrenme (2 model)
75
+ | Model | Dosya | Metrik |
76
+ |-------|-------|--------|
77
+ | Zaturre Teshisi (CNN) | `pneumonia_model.keras` | Val Acc = 92.5% |
78
+ | Yuz Duygu Tanima (CNN) | `fer_model.keras` | Val Acc = 65.4% |
79
+
80
+ ### Diger
81
+ | Model | Dosya |
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
98
+ model = joblib.load(model_path)
99
+ prediction = model.predict([[1500, 70, 20, 1.1]])
100
+ ```
101
+
102
+ ```python
103
+ # Keras modeli icin
104
+ 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
+ ```
112
+
113
+ ## Teknolojiler
114
+
115
+ - **ML Framework:** scikit-learn 1.6.1
116
+ - **DL Framework:** TensorFlow / Keras
117
+ - **Veri Kaynaklari:** Kaggle Hub API
118
+ - **Arayuz:** Streamlit
119
+
120
+ ## Linkler
121
+
122
+ - **Canli Demo:** [HF Space](https://huggingface.co/spaces/OKTAYBBS/DataScientst)
123
+ - **Kaynak Kod:** [GitHub](https://github.com/oktaybobus/DataScientst)