Close

resmi gazete

Official Gazette of the Republic of Turkey is Turkey’s national and only official journal that publishes new legislation and other announcements. It is referred to as Resmî Gazete in short. It has been published since 7 February 1921, approximately two years before the proclamation of the republic.

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

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