Aşağıdaki yazıWillard Van Orman Quine‘in The Ways of Paradox and Other Essays isimli kitabının ilk bölümünü okurken aldığım notlardır.
[Read More]
Tuning ML Hyperparameters - LASSO and Ridge Examples
sklearn.model_selection.GridSearchCV
As far as I see in articles and in Kaggle competitions, people do not bother to regularize hyperparameters of ML algorithms, except of neural networks. One tests several ML algorithms and pick up the best using cross-validation or other methods.
[Read More]
Preprocessing for Neural Networks - Normalization Techniques
Scaling, standardization, and so on
I mentioned about a critical preprocessing tool for Lasso in my last post. Today I will write about preprocessing for Neural Networks.
[Read More]
Preprocessing for LASSO
Polynomial Features
I have been working on Double Machine Learning methodology at The University of Queensland since three weeks. Therefore, I am spending most of my time with ML estimations and I am trying to enhance their performance. I tried many preprocessing tools for each ML algorithms separately. I had noticed that, adding polynomial features yields too much performance increase for LASSO. In my case, even 1% performance increases matter, but adding polynomial features increases performance between 10-25% depending on the estimation type. I believe adding polynomial features matters especially if data contains more nonlinear covariates.
[Read More]
Bilginin Kaynağı
Eğitime Dair Notlar - 3
Kitaplarını okumuş ve filmlerini en az otuzar defa seyretmiş birisi olarak, Yüzüklerin Efendisi serisinden ne kadar çok şey öğrendiğimi anlatmak istiyorum. Her ne kadar hikayenin ismi Yüzüklerin Efendisi olsa da Ortadünyada geçen bu hikayenin beslendiği kaynak Hobbitköy, Shire’dir. Hobbit kitabında, konforuna düşkün bir Hobbitin yola çıktıktan sonra yaşadığı değişim hem kitap boyunca hissedilir hem de tüm hikaye gözden geçirildiğinde fark edilir. Bu değişimi her okuyucu/seyirci fark edemez. Yüzüklerin Efendisinin iki tür “okuyucusu” vardır: (1) Hikayeye/Maceraya önem verenler; (2) hayret, heyecan ve hayranlık duyanlar. Önceki cümlede “okuyucudan” kast ettiğim nokta “kitabı okuyanlar” değildi. Film de “okunabilir”. Ama denebilir ki 1. kategorideki...
[Read More]