Posts

  • Speech Recognition API (3)

    Swift iOS Xcode
    This is continued article of the previous post. This time, we will finally implement the speech recognition part. Step 9 The method to recognize speech is as below. import UIKit... read more
  • Speech Recognition API (2)

    Swift iOS Xcode
    This is continued article of the previous post. Step 5 Add a label and a button to first view on storyboard. Step 6 Next, load required modules and create a method called when ... read more
  • Speech Recognition API (1)

    Swift iOS Xcode
    Let’s try voice recognition by using “Speech Recognition API” which is released in iOS 10.0. Basically, I’ll explain the following official sample program. SpeakToMe: Using Speec... read more
  • Neural Network

    JavaScript MachineLearning
    Previously, I realized logical AND by creating a neuron. Neuron At this time, by using a neural network that combines neurons, I will make XOR. Program I use a neuron class whic... read more
  • Neuron

    JavaScript MachineLearning
    I made artificial neurons and realized a logical AND. Neuron (GitHub) What’s Neuron? Neurons are components of neural networks that mimic neurons of the brain. It receives one o... read more