Close

Yaşar Safkan

Dr. Yaşar Safkan, Elektrik-Elektronik Mühendisliği ve Fizik lisans derecelerini 1995 yılında Boğaziçi Üniversitesi’nden, Fizik Doktora derecesini de 2001 yılında Massachusetts Institute of Technology’den almıştır.

Unraveling the Mysteries of MySQL’s Scheduled Events

Unraveling the Mysteries of MySQL's Scheduled Events

A scheduled event on MySQL is a task that runs according to a schedule. It is a named database object containing one or more SQL statements to be executed regularly, beginning and ending at a specific date and time. Scheduled events are similar to cron jobs on Linux or task […]

Devamını Oku

Distributed Agile: Tips and Best Practices for Global Teams

Distributed Agile: Tips and Best Practices for Global Teams

A distributed team enables you to draw from a much larger talent pool but can come with challenges, especially in an Agile environment. Use these tips to improve collaboration and efficiency while building psychological safety and rapport on your team. With today’s modern technology, people can easily collaborate across the […]

Devamını Oku

When Your Feelings Conflict with Your Leadership Role

When Your Feelings Conflict with Your Leadership Role

Leaders can use the following techniques when their emotions and emotional expectations conflict in the workplace: Reappraise the situation Leaders can focus on finding legitimate reasons to feel the expected feelings. This approach is known as “deep acting,” which helps leaders avoid faking emotions. By changing their emotional state through […]

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