Scratching Your Head Installing Portable Latex
The Error!
Acccording to Miketex website you have to Just download the standard installer and rename it to miktex-portable.exe. You start installaton and after few minutes encounter this error:
Solution-1: Command Line Installer
Download Command Line Installer from miketex site.
Unzip and copy the “miktexsetup_standalone.exe” file into the ...
Paint Your Terminal: A Colorful Guide to Windows Terminal Customization
Ever wonder why does your terminal or powershell look so dull? Why doesnt it look like these:
Lets give it a colorful life!
You need the following:
Windows Terminal
oh-my-posh
What is Wndows Terminal and oh-my-posh?
Windows Terminal is a powerful tool for developers who frequently work with command-line interfaces. Any app...
Linear Regression with Scikit Learn
In previous tutorial we code linear regrassion manually, in this tutorial we will use LinearRegression() function from Scikit-Learn library.
Importing required library
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
from sklearn.linear_model import LinearRegression
Loading Data
our simple dataset house price. It has ...
Classification with iris dataset using Scikit-learn and Tensorflow
Problem
The iris data set consists of the physical parameters of three species of flower — Versicolor, Setosa and Virginica. The numeric parameters which the dataset contains are Sepal width, Sepal length, Petal width and Petal length. In this data we will be predicting the classes of the flowers based on these parameters.The data consists of co...
Linear Regression from scratch
Linear Regression
Linear regression is a statistical method that tries to show a relationship between variables. It looks at different data points and plots a trend line. Linear regression attempts to model the relationship between two variables by fitting a linear equation to observed data. One variable is considered to be an explanatory variab...
Perceptron
Perceptron
Invented in 1957 by Frank Rosenblatt at the Cornell Aeronautical Laboratory, a perceptron is the simplest neural network possible: a computational model of a single neuron. A perceptron consists of one or more inputs, a processor, and a single output.
Threshold Neuron (McCulloch and Pitt’s neuron)
It uses the threshold function i...
Setup JavaFX and SceneBuilder with Intellij
Download Java FX and Scene builder from here.
Extract Java FX in C:\Program Files\Java\
Install Scenebuilder in default location.
In Intellij got to file->settings->plugins. Find, install and activate javafx plugins.
Go to file->new->project choose javafx.
Now we need to add javafx library into project. Go to file->pro...
Portable Python with Portable VSCode
Setup portable python with portable vscode
Download Winpython from here.
Download VS Code from here
Dwnload python plugins from vscode. Go to extention setting and add path of the portable python.
29 post articles, 4 pages.