Skip to content

Instantly share code, notes, and snippets.

@melek227
melek227 / karar_agaclari.ipynb
Created September 28, 2022 17:55
Karar_agaclari.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / siniflandirma_algoritmalari.ipynb
Created September 28, 2022 17:59
siniflandirma_algoritmalari.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / svm.ipynb
Last active September 28, 2022 18:09
SVM.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / makine_ogrenmesi_dunyasi.ipynb
Last active September 28, 2022 18:09
Makine_ogrenmesi_dunyasi.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / modelleri_egitmek.ipynb
Last active September 28, 2022 18:08
Modelleri_egitmek.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / siniflandirma.ipynb
Created September 28, 2022 18:13
Siniflandirma.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / topluluk_ogrenme.ipynb
Created October 1, 2022 08:15
topluluk_ogrenme.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@melek227
melek227 / k_means.py
Created October 2, 2022 09:56
k_means_code_with_python
from sklearn.cluster import DBSCAN #uzaklık matrisi veya vektör dizisinden DBSCAN kümeleme gerçekleştirir
from sklearn.datasets import make_moons #Birbirine geçen iki yarım daire yapan dataset
from sklearn.metrics import adjusted_rand_score #iki kümenin benzerliğini hesaplayan skor
from sklearn.preprocessing import StandardScaler
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans #k-means kümeleme algoritmasını kullanmamızı sağlayan kütüphane
from sklearn.metrics import silhouette_score #kümelenen verilerin bulunduğu kümedeki uygunluğuna bakar
from sklearn.preprocessing import StandardScaler
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import os
dataset=pd.read_csv("C:/Users/melek/.spyder-py3/autosave/mall_customer/mall_customers.csv")
@melek227
melek227 / uctan_uca_makine_ogrenmesi.ipynb
Last active October 11, 2022 19:25
Uctan_uca_makine_ogrenmesi.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.