Problem I’ve written a program that finds the difference between data and gives output. Here’s the code: import json import […]
Tag: machine-learning
Implementation of Single Layer Perceptron Learning Algorithm in C
Problem I have implemented a working version of perceptron learning algorithm in C. Right now, it only works on single […]
Simple decision tree in Haskell
Problem I’ve been trying to get better at Haskell for a while, and have recently been working on a lot […]
Classification tree in Swift
Problem As an effort to teach myself Swift as well as to get familiar with machine learning algorithms, I’ve been […]
Trending Machine Learning topics for Alexa
Problem I’ve created a small Flash Briefing Alexa skill that reports the top 5 trending topics in Machine Learning from […]
Parzen Window Density Estimation in C#
Problem Is my implementation correct (it is matching this result)? How can I improve this code? public class Parzen { […]
File-write operations
Problem Below is the code for user recommendations using mahout. DataModel dm = new FileDataModel(new File(inputFile)); UserSimilarity sim = new […]
A Tiny Nearest Neighbor Classification Implementation in C#
Problem I am practicing to implement the KNN classification tool in C#. The basic point structure is constructed by the […]
Calculate conditional probabilities and perform naive Bayes classification on a given data set
Problem I wrote a class that I’m using to calculate conditional probabilities of a given distribution as well as perform […]
Simple chat bot
Problem I made a chat bot, that, as you talk to it, it learns to respond. But the way it […]
- 1
- 2