Close

Yazılım geliştirmek

Yazılım geliştirmek, yazılımcılık ile ilgili tüm içerik burada

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

TeamCity 2020.1.4 has been released.

TeamCity 2020.1.4 has been released.

Posted on September 10, 2020, by Maria Kudryavtseva The new TeamCity update is ready. In version 2020.1.4, we focused on fixing bugs and improving TeamCity’s performance and usability. See the complete list of 40+ resolved issues in our release notes. As with any bugfix update, 2020.1.4 shares the data format with other 2020.1.x releases, […]

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

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