Close

(03) Teknoloji, Technology

Technology is the application of knowledge for practical purposes. It includes using tools, machines, and materials to solve problems and extend human capabilities. Technology has been around for centuries but has advanced rapidly in recent years due to advances in science and engineering.

RELU Fonksiyonu Nedir?

RELU Fonksiyonu Nedir?

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

PrototypeML: A Neural Network Integrated Design and Development Environment

PrototypeML Neural Network Design

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

Exploring the Full Spectrum of AWS Services

Exploring the Full Spectrum of AWS Services

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 Nedir?

Python

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ı Duyurdu.

Türkiye'nin önde gelen online iş bulma platformlarından kariyer.net, 50 bin üyenin kişisel verilerinin çalındığını duyurdu.

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

A hacker group tried to hijack 900,000 WordPress sites over the last week.

A hacker group tried to hijack 900,000 WordPress sites over the last week

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