Keep track of space

how many thousand things you can see here. It’s amaizing http://keeptrack.space Created by Theodore Kruczek to help visualize orbital calculations for application to Ground Based Radars and Optical Telescopes. Based on the original work of James Yoder. All information is open source publically available information. Orbits are derived from TLEs found on public websites. Payload … Read more

Support vector machine (SVM)

The basis Support vector machine (SVM) is a supervised learning method. It can be used for regression or classification purposes. SVM is useful for hyper-text categorization, classification of images, recognition of characters… The basic visual idea is the creation of planes (lines) to separate features. The position of these planes can be adjusted to maximized the … Read more

Machine learning, source of errors

Before to start What is an error? Observation prediction error = Target – Prediction = Bias + Variance + Noise The main sources of errors are Bias and Variability (variance). Underfitting or overfitting. Underclustering or overclustering. Improper validation (after the training). It could be that comes from the wrong validation set. It is important to divide … Read more

k-means clustering

The basis K-means clustering is an unsupervised learning method. The aim is to find clusters and the CentroIDs that can potentially identify the What is a cluster? a set of data points grouped in the same category. What is a CentroID? center or average of a given cluster. What is “k”? the number of CentroIDs … Read more

Naive Bayes classification

The basis It’s based on Bayes’ theorem (check the wikipedia link, and see how complex the decision trees could be). Assumes predictors contribute independently to the classification. Works well in supervised learning problems. Works with continuous and discrete data. Can work with discrete data sets. It is not sensitive to non-correlating “predictors”. Naives Bayes plot Example: … Read more

Understanding Logistics regression

The basis Logistics or Logit regression. It’s a regression model where the dependent variable (DV) is categorical. Outcome follows a Bernoulli distribution. Success = 1 , failure = 0. Natural logarithm of odds ratio ln (p/1-p)… logit(p). Inverse log curve gives a nice “s” curve to work with. Equate logarithm of odds ratio with regression line equation. Solve for probability … Read more

Linear regression example

I was looking for a simple example of a regression and how to calculate it by hand. I found this one: least squares example. the main formula to calculate the linear regression is   y = Ḇo + Ḇ1xcontinue learning the basis !

Serverless

Serverless is a buzzword It points to the future of software development in a post cloud world. The idea of “Serverless” is NOT about removing the servers completely (or you couldn’t use the internet at all), but essentially paying for services that mean that someone else manages the servers for you thereby reducing maintenance load. It’s … Read more

Kepner Tregoe Method

The Kepner Tregoe Method, also known as the KT-method, developed by Charles Kepner and Benjamin Tregoe. When we should use it? The Kepner Tregoe method is a problem analysis model which fits well when the “problem” is disconnected from the “decision”. The Kepner-Tregoe Matrix comprises 4 steps: How to use it