Close

(90) Artificial Intelligence

Artificial Intelligence: the theory and development of computer systems able to perform tasks normally requiring human intelligence, such as visual perception, speech recognition, decision-making, and translation between languages.

What is AWS Glue DataBrew?

What is AWS Glue DataBrew?

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

Machine Learning for Chatbots

Machine Learning for Chatbots

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 Fonksiyonu Nedir?

Sigmoid Fonksiyonu Nedir?

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 İle Basit Bir Derin Öğrenme Uygulaması

Python İle Basit Bir Derin Öğrenme Uygulaması

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 Tanıma Sistemlerinin Yanıltılmasına Karşı Bir Yöntem

Yüz Tanıma Sistemlerinin Yanıltılmasına Karşı Bir Yöntem

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

RELU Fonksiyonu Nedir?

RELU Fonksiyonu Nedir?

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

PrototypeML: A Neural Network Integrated Design and Development Environment

PrototypeML Neural Network Design

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