To Chrome " import webbrowser webbrowser.register(‘chrome’, None, webbrowser.GenericBrowser(‘C:\Program Files (x86)\Google\Chrome\Application\chrome.exe’)) c.NotebookApp.browser = ‘chrome’ " Ref: https://support.anaconda.com/customer/en/portal/articles/2925919-change-default-browser-in-jupyter-notebook
Category: ব্লগ । Blog
ব্লগ । Blog
Jan 22
Recent Announcements from AWS
A Weekly Review from AWS Newsletter A Weekly Review of the Latest Announcements from AWS What’s New with AWS Amazon EBS Integrates with AWS Backup to Protect Your Volumes Introducing Amazon Elastic File System Integration with AWS Backup AWS Storage Gateway Integrates with AWS Backup to Protect Volumes Managed through Volume Gateway Amazon EC2 T3 …
Jan 07
মেশিন লারনিং ঃ Implement: Multivariate Regression: Python
মেশিন লারনিং ঃ Implement: Multivariate Regression: Python শত ভাগ সঠিক নাউ হতে পারে। Theory reference: https://www.cmpe.boun.edu.tr/~ethem/i2ml/slides/v1-1/i2ml-chap5-v1-1.pdf . This is an approximate solution to start with. Understand the theory and then adjust/fix/improve import numpy as np import random print(‘Iterations: rows: Please enter the number of samples for each variable/dimension’) n_number_of_samples_rows = int(input()) print(‘Columns: Dimensions: Please enter …
Jan 06
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 …
Jan 05
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 …
Jan 05
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) #
Jan 05
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 …
Dec 30
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 …