It is a new visual data preparation tool that makes it easy for data analysts and data scientists to clean and normalize data to prepare it for analytics and machine learning. You can choose from over 250 pre-built transformations to automate data preparation tasks without the need to write any […]
Devamını Oku
The presentation by Rich Hickey at the Boston Lisp meeting. A fairly extensive introduction to Clojure, with a presumption of prior knowledge of Lisp. You can read the complete transcription from this link. and you may find many similar files on the Clojure* Cheatsheets
Devamını Oku
Machine Learning for Chatbots: Definition, Processes, and Use Contexts Machine learning technology is increasingly being used for chatbots. To understand how machine learning is used in the development of chatbots, it is essential to understand the different chatbots and how machine learning technology can make chatbot communication more intelligent and […]
Devamını Oku
Sigmoid fonksiyonunu, özellikle öğrenme algoritmalarında iterasyon için kullanıyoruz. Ardışık kullanımda sonucu 1′ e yakınsar. Python örneklerinde bol bol kullanıyoruz. Örnek bir kod aşağıdaki gibi olabilir. def nonlin(x): return 1 / (1 + np.exp(-x))
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
Neural network architectures are most often conceptually designed and described in visual terms, but are implemented by writing error-prone code. PrototypeML is a machine learning development environment that bridges the gap between the design and development processes: it provides a highly intuitive visual neural network design interface that supports the […]
Devamını Oku
The recent emergence of machine learning has given rise to hundreds of different frameworks, so why would you use Libra? Here’s why libra outperforms all these other alternatives. Libra prioritizes ease of use and ergonomics. Libra is a machine learning API designed for non-technical users. This means that it assumes […]
Devamını Oku