Close

(02) Software, Yazılım

It is all about software applications and software development.

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

Docker best practices with Node.js

Docker best practices with Node.js

Welcome to our comprehensive list of Docker best practices exemplified under Node.js. Note that every bullet has a link to detailed information and code examples. The entire list can be found in our repository Node.js Best Practices. It covers the basics but goes all the way to strategic decisions like how […]

Devamını Oku

JAVA ‘da int ve Integer Arasındaki Farklar Nedir?

JAVA ‘da int ve Integer Arasındaki Farklar Nedir?

JAVA ‘da int ve Integer Arasındaki Farklar Nedir? JAVA Integer sayıları saklamak için iki yöntem sağlar. İnt ya da Integer aynı büyüklükteki sayıları saklar.  İnt kullanımı Basit olarak 32 bit ilk  hafıza bloğunda integer değişlenleri saklar.  İnt değişkenleri doğrudan işlemlerde kullanabiliriz.  İnt ‘i basit casting işlemleri ile kullanabilirsiniz.  Integer Kullanımı […]

Devamını Oku

Modernize Your CI/CD with GitLab

Modernize Your CI/CD with GitLab

Continuous integration and delivery help DevOps teams ship higher-quality software faster. But is all CI/CD created equal? What does successful CI/CD implementation look like, and how do you know you’re on the right track?  To understand how CI/CD makes organizations more successful, it helps to look at the DevOps challenges […]

Devamını Oku