Close

Machine Learning

Machine learning is an application of artificial intelligence (AI) that provides systems the ability to automatically learn and improve from experience without being explicitly programmed. Machine learning focuses on the development of computer programs that can access data and use it learn for themselves.

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

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

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

Training an AI to create poetry (NLP Zero to Hero – Part 6)

Tensor Flow

Through this series so far you’ve been learning the basics of NLP using TensorFlow. You saw how to tokenize and then sequence text, preparing it to train neural networks. You saw how sentiment in text can be represented with embeddings, and how the semantics of text over long stretches might […]

Devamını Oku

TensorFlow 2.0 Complete Course – Python Neural Networks for Beginners Tutorial

Tensor Flow

Learn how to use TensorFlow 2.0 in this full tutorial course for beginners. This course is designed for Python programmers looking to enhance their knowledge and skills in machine learning and artificial intelligence.  Throughout the 8 modules in this course you will learn about fundamental concepts and methods in ML […]

Devamını Oku

What Is Amazon CodeGuru?

What Is Amazon CodeGuru?

What is Amazon CodeGuru? It is a machine-learning service for automated code reviews and application performance recommendations. It helps you find the most expensive lines of code that hurt application performance and keep you up all night troubleshooting, then gives you specific guidance to fix or improve your code. Leveraging […]

Devamını Oku

Powered By AI: Instagram’s Explore Recommender System

Powered By AI: Instagram’s Explore Recommender System

Powered by AI: Instagram’s Explore recommender system Over half of the Instagram community visits Instagram Explore every month to discover new photos, videos, and Stories relevant to their interests. Recommending the most relevant content out of billions of options in real time at scale introduces multiple machine learning (ML) challenges […]

Devamını Oku