Category: Root

Laravel Accountant Package, MyCLI, Development on an iPad, and More — №238

Building a Chatbot with Laravel and BotMan "Building a Chatbot with Laravel and Botman" is a hands on guide to building your own personal chatbot. " Learn More Accountant Laravel Package The Accountant composer package is a Laravel accountably package for your Eloquent models by developer Quetzy Garcia. Read More MyCLI: A MySQL CLI with …

Continue reading

ক্লাস্টার ম্যানেজার কোর্স ঃ Courses on Cluster Manager: Cluster Server Manager: Veritas : Solaris, and Similar

ভলিউম ম্যানেজার ঃ ইনফ্রাস্ট্রাকচার জব এর জন্য

Basic Matrix Operations:

Basic Matrix Operations: def matrix_multiplication ( m, n ): # Creates a list containing 5 lists, each of 8 items, all set to 0 o_row, o_col = len(m), len(n[0]); output_matrix = [[0 for x in range(o_row)] for y in range(o_col)] one_output_cell = 0 rowCount = 0 colCount = 0 temp = 0 for aRow in …

Continue reading

Basic Numpy Operations

Basic Numpy Operations import numpy as np a = np.arange(15).reshape(3, 5) print(a) print(a.shape) print(a.ndim) print(a.dtype.name) print(a.itemsize) print(a.size) print(type(a)) b = np.array([6, 7, 8]) print(b) type(b) #

Implement Gradient Descend:

" Gradient descent is a first-order iterative optimization algorithm for finding the minimum of a function. To find a local minimum of a function usinggradient descent, one takes steps proportional to the negative of the gradient (or approximategradient) of the function at the current point. Gradient descent – Wikipedia https://en.wikipedia.org/wiki/Gradient_descent " Gradient Descend # From …

Continue reading

International News: Stock Market melty, Part II: Theme of the Week

International News: Stock Market melty, Part II: Theme of the Week: Bloomberg There Is Logic Behind the Stock Market – Shira Ovide Ugly Markets Might Contaminate the U.S. Economy – Mohamed A. El-Erian Trump’s ‘Tremendous Buy’ Stock Market Isn’t a Bargain – Stephen Gandel The Market Swoon Isn’t All About Trump – Justin Fox Trump’s …

Continue reading

Market melty: Theme of the Week

From Bloomberg Opinion on Stock Market News . Junk Bonds Endure an Awful Day But Live to Tell About It – Brian Chappatta Mnuchin Forgot to Check His Figures on Stock Volatility – Nir Kaissar Fed’s No-Win: Balancing Growth and Market Fragility – Mohamed A. El-Erian A Financial Canary in a Coal Mine – John …

Continue reading

Exciting new post today: 12/22/2018

Vacations Vacations are the best thing in this life.

Continue reading

Different types of Distance for ML Algorithms

Manhattan, Cosine, Ln Form # http://dataaspirant.com/2015/04/11/five-most-popular-similarity-measures-implementation-in-python/ # Manhattan def manhattan(x, y): return sum( abs(a-b) for a, b in zip(x,y)) d = manhattan([5,10], [30,20]) print(d) #—— Cosine Distance import math def square_rooted(x): return math.sqrt(sum([a * a for a in x])) def cosine_distance(x, y): numerator = sum ( a * b for a, b in zip(x, y …

Continue reading