Günlük iş rutinimde Java, C++ ve Python kullanıyorum. İş bilgisayarım MacBook Pro ve bir harici disk üzerinde büyük dosyalarımı tutuyorum. Java için NetBeans kullanıyorum. Yüksek kapasiteli olmayan bilgisayarımda sorunsuz çalışıyor. Visual Studio Code ve IntelliJ ‘i yükledim ve denedim.
Devamını Oku
Python ile veri bilimi ve makine öğrenmesi konusunda çalışmak istiyorsak işe NumPy ve Pandas ile başlamamız gerekiyor. Çok basit bir örnek uygulama ile başlayabiliriz. Bir giriş veri setimiz var, bir işlemden geçerek bir sonuç seti oluşuyor. Bunun algoritmasını tahmin etmeye çalışıyoruz. Sigmoid fonksiyonu ile iterasyonu ayarlıyoruz. Bu temel bir yaklaşımdır.
Devamını Oku
YÜZ TANIMA SİSTEMLERİNİN YANILTILMASINA KARŞI BİR YÖNTEM: YÜZ VİDEOLARINDA NABIZ TESPİTİ İLE CANLILIK DOĞRULAMASI Günümüzde kimlik saptama amaçlı kullanılan biyometrik teknolojiler, güvenlik, erişim, kontrol, takip gibi alanlarda aktif olarak rol almaktadır. Bu teknolojilerden biri olan yüz tanıma sistemi, diğer biyometrik sistemlere göre temassızlık ve günlük hayatımıza yerleşmiş bulunan düşük maliyetli […]
Devamını Oku
Python ile çok basit bir ses tanıma ve metine çevirme uygulaması paylaşıyorum. PiPy üzerinden SpeechRecognition kütüphanesini kullanıyoruz. Örnek dosyanın yerini değiştirmeniz gerekiyor.
Devamını Oku
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
A Java virtual machine (JVM) is a virtual machine that enables a computer to run Java programs. JVM is the core of the Java ecosystem. The JVM was initially designed to support only Java. However, as time passed, even more languages were adapted or intended to run on the Java platform. Any serious Java developer has to […]
Devamını Oku
In June of 2020, OpenAI launched their new model GPT-3, which not only has futuristic NLP(Natural Language Processing) capabilities, but was also able to generate React code and simplify command-line commands. Looking at these demos was a huge inspiration for us and we realized that while doing data analysis, a lot of times, we […]
Devamını Oku
handcalcs is a library to render Python calculation code automatically in Latex, but in a manner that mimics how one might format their calculation if it were written with a pencil: write the symbolic formula, followed by numeric substitutions, and then the result. Because handcalcs shows the numeric substitution, the calculations become significantly easier […]
Devamını Oku
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
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