Skip to content

Instantly share code, notes, and snippets.

View Judithcodes's full-sized avatar

JUDITH NJOKU Judithcodes

View GitHub Profile
@Judithcodes
Judithcodes / log.md
Last active June 18, 2019 04:07 — forked from llSourcell/log.md
This will serve as a repository for my journey of 100 days of Machine Learning with Python. I am already on Day 21 so it starts from Day 22

100 Days Of ML Code - Judith's Log

Documenting Day 22 until day 100

Day 22: June 15, 2019

Bold Steps

Today's Progress: Studied python built in functions. Started a project on Detecting Youtube Comment Spam using bags of words and random forest. Had an issue with i am still trying to resolve.

Thoughts: Since I am currently learning python alongside machine learning, I have decided to complete a project at least once in two days to speed up my progress.

@Judithcodes
Judithcodes / kalman.m
Created December 9, 2019 01:28 — forked from ksvbka/kalman.m
Example of using Kalman filter for estimates velocity and distance of the vehicle
function kalman(duration, dt)
% function kalman(duration, dt)
%
% Kalman filter simulation for a vehicle travelling along a road.
% INPUTS
% duration = length of simulation (seconds)
% dt = step size (seconds)
measnoise = 10; % position measurement noise (feet)
@Judithcodes
Judithcodes / Kalman.R
Created December 9, 2019 01:28 — forked from Gedevan-Aleksizde/Kalman.R
Linear Kalman filter and animation
# multivariate normal Kalman filter
require(dplyr)
require(tidyr)
require(ggplot2)
require(animation)
# ARIMA(1,1) + 線形トレンド の乱数生成
N <- 50
phi1 <- .5
theta1 <- .2
@Judithcodes
Judithcodes / Kalman.jl
Created December 9, 2019 01:28 — forked from mschauer/Kalman.jl
Kalman filter, Rauch-Tung-Striebel smoother and parameter estimation with EM procedure for the state space model (Shumway, Stoffer)
module Kalman
using Distributions
export LinearDS, generate, kalmanfilter, kalmanfilter!, kalmanrts, kalmanrts!, kalmanEM, randmvn
"""
Sampling singular semidefinite multivariate normal distributions
x = randmvn(S)