Posts

  • Original Google Translate API

    JavaScript PhantomJS GoogleTranslate
    Recently, Google Translate has evolved using a neural network. So I created an original API server that uses Google Translate without using the API. Original Google Translate API... read more
  • Genetic Algorithm

    JavaScript MachineLearning
    I created a program to solve the knapsack problem with genetic algorithm. Genetic Algorithm (GitHub) What is Genetic Algorithm? Genetic algorithm is an algorithm which prepares a... read more
  • Ant Colony Optimization

    JavaScript MachineLearning
    Since I created ant colony optimization algorithm this time, I will introduce it. Here is my program, please refer this if you want. Ant Colony Optimization (GitHub) What is ant... read more
  • Q Learning

    JavaScript MachineLearning
    I created a simple module to do a Q Learning. GitHub: Q Learning Q Learning is one of reinforcement learning in machine learning field. Q-Learning (Wikipedia) Description This ... read more
  • How to use OpenCV in Swift (2)

    Swift OpenCV Xcode
    This is a continuation of my previous post. Step 5 Create a header file to use OpenCV. // OpenCVTest-Briding-Header.h #import <Foundation/Foundation.h> #import <UIKit/UI... read more