Doğrultulmuş lineer birim (rectified linear unit- RELU) doğrusal olmayan bir fonksiyondur. ReLU fonksiyonu negatif girdiler için 0 değerini alırken, x pozitif girdiler için x değerini almaktadır. Python kodlaması aşağıdaki gibi olabilir. def relu(x): return np.maximum(0, x)
Devamını Oku
Neural network architectures are most often conceptually designed and described in visual terms, but are implemented by writing error-prone code. PrototypeML is a machine learning development environment that bridges the gap between the design and development processes: it provides a highly intuitive visual neural network design interface that supports the […]
Devamını Oku
The recent emergence of machine learning has given rise to hundreds of different frameworks, so why would you use Libra? Here’s why libra outperforms all these other alternatives. Libra prioritizes ease of use and ergonomics. Libra is a machine learning API designed for non-technical users. This means that it assumes […]
Devamını Oku
I use Amazon as a cloud service in my new Java/Kotlin projects. I couldn’t easily find a complete list of AWS modules. I was able to create this shortlist as a result of the reviews. Compute EC2 Virtual Private Servers Lightsail Amazon’s hosting provider (VPS, DNS, storage) Lambda Functions […]
Devamını Oku
Softmax fonksiyonu çoklu sınıflandırma problemleri için kullanılır. Verilen her bir girdinin bir sınıfa ait olma olasılığını gösteren [0,1] arası çıktılar üretmektedir. Python implemantasyonu aşağıdaki gibi olabilir. #softmax functiondef softmax(X): expo = np.exp(X) expo_sum = np.sum(np.exp(X)) return expo/expo_sum
Devamını Oku
Kariyer.net, 50 bin üyenin kişisel verilerinin çalındığını açıkladı. 10.08.2020 tarihinde gerçekleşen veri ihlaline ilişkin açıklama, kariyer.net tarafından Kişisel Verileri Koruma Kurumu’na yapıldı. Kariyer.net tarafından yapılan açıklama aşağıdadır. Bilindiği üzere, 6698 sayılı Kişisel Verilerin Korunması Kanunu’nun ‘Veri güvenliğine ilişkin yükümlülükler’ başlıklı 12’nci maddesinin (5) numaralı fıkrası ‘İşlenen kişisel verilerin kanuni olmayan yollarla […]
Devamını Oku
This repo includes many samples and tutorials https://github.com/Solido/awesome-flutter
Devamını Oku
Windows Open the command prompt MacOS Open the terminal and execute these commands
Devamını Oku
A hacker group has attempted to hijack nearly one million WordPress sites in the last seven days, according to a security alert issued today by cyber-security firm Wordfence. The company says that since April 28, this particular hacker group has engaged in a hacking campaign of massive proportions that caused […]
Devamını Oku