Category: AI ML DS RL DL NN NLP Data Mining Optimization

Understanding indicators used to measure health quality

Justetc Social Services (non-profit)Jan 31 · 16 min read This code works with the data on the excel file: indicator-methodology.xls Purpose: Find out prominant indicators — this might also mean the critical aspect of health Find out the measurements that are used to find the quality Code Reference: This code heavily makes use of the code provided on …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/understanding-indicators-used-to-measure-health-quality/

Quality of Care, Health System Performance, Canada and Other Countries

Justetc Social Services (non-profit)Jan 31 · 5 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetsquality_of_care = pd.read_excel(‘../data/quality-of-care.xls’)quality_of_care.head() # find all indicatorsquality_of_care.set_index([‘Indicator’])indicators = pd.Index(quality_of_care[‘Indicator’]).unique()# find all yearsyears = quality_of_care[‘Data year’].dropna().unique()indicators[0], years(’30-Day In-Hospital Fatality: AMI’, array([2015, 2014, 2013, ‘Not applicable’, ‘2013’, ‘2014’, ‘2015’, ‘2012 to 2014’, …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/quality-of-care-health-system-performance-canada-and-other-countries/

primary-prescribing, Health System Performance, Canada and Others

Justetc Social Services (non-profit)Jan 31 · 5 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetsprescribing_primary = pd.read_excel(‘../data/prescribing-primary.xls’)prescribing_primary.head() # find all indicatorsprescribing_primary.set_index([‘Indicator’])indicators = pd.Index(prescribing_primary[‘Indicator’]).unique()# find all yearsyears = prescribing_primary[‘Data year’].dropna().unique()indicators[0], years(‘Antibiotics: Proportion of Second Line’, array([‘2015’, ‘2014’, 2015, ‘Not applicable’, 2014], dtype=object))# sort yearsyears = …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/primary-prescribing-health-system-performance-canada-and-others/

patient-safety, Health System Performance, Canada and Others

Justetc Social Services (non-profit)Jan 31 · 5 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetspatient_safety = pd.read_excel(‘../data/patient-safety.xls’)patient_safety.head() # find all indicatorspatient_safety.set_index([‘Indicator’])indicators = pd.Index(patient_safety[‘Indicator’]).unique()# find all yearsyears = patient_safety[‘Data year’].dropna().unique()indicators[0], years(‘Foreign Body Left In’, array([2015, ‘2014–2015’, ‘Not applicable’, 2014], dtype=object))# sort yearsyears = [ aYear …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/patient-safety-health-system-performance-canada-and-others/

non_med_determinants_visualizations, Health System Performance, Canada and Others

Justetc Social Services (non-profit)Jan 31 · 5 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetsnon_med_determinants = pd.read_excel(‘../data/non-med-determinants.xls’)non_med_determinants.head() # find all indicatorsnon_med_determinants.set_index([‘Indicator’])indicators = pd.Index(non_med_determinants[‘Indicator’]).unique()# find all yearsyears = non_med_determinants[‘Data year’].dropna().unique()indicators[0], years(‘Alcohol Consumption: Adults’, array([‘2014’, ‘2015’, ‘2013’, 2015, ‘Not applicable’, ‘2016’], dtype=object))# sort yearsyears = [ …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/non_med_determinants_visualizations-health-system-performance-canada-and-others/

interactive_health_status_visualizations, Health System Performance, Canada and Others

Justetc Social Services (non-profit)Jan 31 · 5 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetshealth_status = pd.read_excel(‘../data/health-status.xls’)health_status.head() # find all indicatorshealth_status.set_index([‘Indicator’])indicators = pd.Index(health_status[‘Indicator’]).unique()# find all yearsyears = health_status[‘Data year’].unique()indicators[0], years[0](‘Cancer Mortality (F)’, ‘2013’)# sort yearsyears = [ int(aYear) for aYear in years if (aYear …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/interactive_health_status_visualizations-health-system-performance-canada-and-others/

health_status_visualizations, Health System Performance, Canada and Others

Justetc Social Services (non-profit)Jan 31 · 4 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetshealth_status = pd.read_excel(‘../data/health-status.xls’)health_status.head() health_status.set_index([‘Indicator’])#health_status.loc[health_status[‘Cancer Mortality (F)’]]#health_status.index.unique()indicators = pd.Index(health_status[‘Indicator’]).unique()years = health_status[‘Data year’].unique()indicators[0], years[0](‘Cancer Mortality (F)’, ‘2013’)cancer_mortality_2013 = health_status.loc[ (health_status[‘Indicator’] == indicators[0]) & (health_status[‘Data year’] == years[0]) ]cancer_mortality = health_status.loc[ (health_status[‘Indicator’] == …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/health_status_visualizations-health-system-performance-canada-and-others/

access_to_care, primary-prescribing, Health System Performance, Canada and Others

Justetc Social Services (non-profit)Jan 31 · 5 min read import pandas as pdimport matplotlib.pyplot as plt%matplotlib inlinefrom __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetsaccess_to_care = pd.read_excel(‘../data/access-to-care.xls’)access_to_care.head() # find all indicatorsaccess_to_care.set_index([‘Indicator’])indicators = pd.Index(access_to_care[‘Indicator’]).unique()# find all yearsyears = access_to_care[‘Data year’].dropna().unique()indicators[0], years(‘Inability to Pay for Medical Bills’, array([‘2016’, 2016, ‘Not applicable’, ‘2015’, ‘2013’], dtype=object))# sort yearsyears …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/access_to_care-primary-prescribing-health-system-performance-canada-and-others/

How to use ipywidgets, interactive as used in the project

Justetc Social Services (non-profit)Jan 31 · 1 min read from __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetsdef f(x): return xinteract(f, x=10);interactive(children=(IntSlider(value=10, description=’x’, max=30, min=-10), Output()), _dom_classes=(‘widget-…interact(f, x=True);interactive(children=(Checkbox(value=True, description=’x’), Output()), _dom_classes=(‘widget-interact’,))interact(f, x=’Hi there!’);interactive(children=(Text(value=’Hi there!’, description=’x’), Output()), _dom_classes=(‘widget-interact’,))@interact(x=True, y=1.0)def g(x, y): return (x, y)interactive(children=(Checkbox(value=True, description=’x’), FloatSlider(value=1.0, description=’y’, max=3.0, …interact(f, x=[‘apples’,’oranges’]);interactive(children=(Dropdown(description=’x’, options=(‘apples’, ‘oranges’), value=’apples’), Output()), _do…from …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/how-to-use-ipywidgets-interactive-as-used-in-the-project/

IPywidgets, interactive

Justetc Social Services (non-profit)·Jan 31 from __future__ import print_functionfrom ipywidgets import interact, interactive, fixed, interact_manualimport ipywidgets as widgetsdef f(x): return xinteract(f, x=10);interactive(children=(IntSlider(value=10, description=’x’, max=30, min=-10), Output()), _dom_classes=(‘widget-…interact(f, x=True);interactive(children=(Checkbox(value=True, description=’x’), Output()), _dom_classes=(‘widget-interact’,))interact(f, x=’Hi there!’);interactive(children=(Text(value=’Hi there!’, description=’x’), Output()), _dom_classes=(‘widget-interact’,))@interact(x=True, y=1.0)def g(x, y): return (x, y)interactive(children=(Checkbox(value=True, description=’x’), FloatSlider(value=1.0, description=’y’, max=3.0, …interact(f, x=[‘apples’,’oranges’]);interactive(children=(Dropdown(description=’x’, options=(‘apples’, ‘oranges’), value=’apples’), Output()), _do…from IPython.display …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/ipywidgets-interactive/

This file will contain visualization code for 6 health performance aspects

Justetc Social Services (non-profit)Jan 31 · 29 min read Indicator visualizations will be in a separate ipynb file (visualize-indicators-final.ipynb) Visualizations can be created using the UI interface i.e. Select options and execute the code block after to get the visualizations. I have placed a separate section at the end of this file where research questions and plots as …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/this-file-will-contain-visualization-code-for-6-health-performance-aspects/

About the Project : Benchmarking Canada’s Health Care Systems: International Comparisons, 2017

Justetc Social Services (non-profit)Jan 31 · 1 min read Project : Benchmarking Canada’s Health Care Systems: International Comparisons, 2017 By Sayed Ahmed Objective: Visualize the performance of Canadian Healthcare System Performance against other countries Short Description : Analyze, compare, and visualize the performance of Canadian healthcare system against other countries using public dataset. The dataset provides benchmark comparison data …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/about-the-project-benchmarking-canadas-health-care-systems-international-comparisons-2017/

Misc. Plot – 4

Ref: https://www.wolframalpha.com/

Permanent link to this article: https://bangla.sitestree.com/misc-plot-4/

Misc Plots – 3

Permanent link to this article: https://bangla.sitestree.com/misc-plots-3/

Misc Plots

Misc Plots: Ref: https://www.wolframalpha.com/ ***. ***. *** Note: Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-plots-2/

Misc. Plots

Ref: https://www.wolframalpha.com/ —- Note: Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-plots/

Euclidean Norm of a Matrix

Euclidean Norm of a Matrix Ref: http://mathworld.wolfram.com/FrobeniusNorm.html ***. ***. *** Note: Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/euclidean-norm-of-a-matrix/

Misc. Data Science: Clustering

"Model-based clustering assumes that the data were generated by a model and tries to recover the original model from the data. The model that we recover from the data then defines clusters and an assignment of documents to clusters. A commonly used criterion for estimating the model parameters is maximum likelihood.nlp.stanford.edu › IR-book › html …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-data-science-clustering/

Misc. Optimization Resources

L0 Norm, L1 Norm, L2 Norm & L-Infinity Norm https://medium.com/@montjoile/l0-norm-l1-norm-l2-norm-l-infinity-norm-7a7d18a4f40c *** Iterative Solutions of Linear Systems https://www.math.uh.edu/~jingqiu/math4364/iterative_linear_system.pdf *** How statistical Norms improve modeling https://towardsdatascience.com/norms-penalties-and-multitask-learning-2f1db5f97c1f Project Example: Optimization: http://www.cs.cmu.edu/~aarti/Class/10725_Fall17/past_projects.html https://web.stanford.edu/class/ee392o/#projects https://ece.uwaterloo.ca/~ece602/Projects/2017/Project21/main.html Area and Project Example: http://www.ece.tufts.edu/ee/194CO/project_14.pdf Sensor and Optimization: Could be a good read. http://homepages.rpi.edu/~mitchj/phdtheses/daryn/ramsdd.pdf ***. ***. *** Note: Older short-notes from this site are posted …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-optimization-resources/

Part -1 : Bootstrapping, Bagging, Random Forests

What is a Classification Tree: www.solver.com › classification-tree Classification Tree | solver A Classification tree labels, records, and assigns variables to discrete classes. A Classification tree can also provide a measure of confidence that the classification is correct. A Classification tree is built through a process known as binary recursive partitioning. Pros and Cons of …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/part-1-bootstrapping-bagging-random-forests/

KL Divergence: Entropy: Cross Entropy: Example Use Cases. Equations as well.

KL Divergence in Picture and Examples “Kullback–Leibler divergence is the difference between the Cross Entropy H for PQ and the true Entropy H for P.” [1] “And this is what we use as a loss function while training Neural Networks. When we have an image classification problem, the training data and corresponding correct labels represent …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/kl-divergence-entropy-cross-entropy-example-use-cases-equations-as-well/

Misc. : Classifier Performance and Model Selection

Cross Validation: ” en.wikipedia.org Cross-validation is a resampling procedure used to evaluate machine learning models on a limited data sample. The procedure has a single parameter called k that refers to the number of groups that a given data sample is to be split into. As such, the procedure is often called k-fold cross-validation.May 23, …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-classifier-performance-and-model-selection/

NLP : AI and ML

Feature Selection " Filter Methods Wrapper Methods Embedded Methods Feature Selection Checklist Do you have domain knowledge? Are your features commensurate? Do you suspect interdependence of features? If "Weka: “Feature Selection to Improve Accuracy and Decrease Training Time“. Scikit-Learn: “Feature Selection in Python with Scikit-Learn“. R: “Feature Selection with the Caret R Package“" " Reference …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/nlp-ai-and-ml/

Misc. Optimization:

"Linear programming (LP, also called linear optimization) is a method to achieve the best outcome (such as maximum profit or lowest cost) in a mathematical model whose requirements are represented by linear relationships. en.wikipedia.org › wiki › Linear_programming Linear programming – Wikipedia " "Branch and bound (BB, B&B, or BnB) is an algorithm design paradigm …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-optimization/

Misc Basic Statistics for Data Science

Hypergeometric Distribution “In probability theory and statistics, the hypergeometric distribution is a discrete probability distribution that describes the probability of successes (random draws for which the object drawn has a specified feature) in draws, without replacement, from a finite population of size that contains exactly objects with that feature, wherein each draw is either a …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-basic-statistics-for-data-science/

The Kalman Filter: Theory : Example: Equations: Applications

The Kalman Filter: An algorithm for making sense of fused sensor insight “The Kalman filter is relatively quick and easy to implement and provides an optimal estimate of the condition for normally distributed noisy sensor values under certain conditions. Mr. Kalman was so convinced of his algorithm that he was able to inspire a friendly …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/the-kalman-filter-theory-example-equations-applications/

Why You Don’t Need to Be Bezos to Worry About Spyware

Why You Don’t Need to Be Bezos to Worry About Spyware " 5. Could that happen to me? Yes, but the likelihood of that varies greatly. If you are a lawyer, journalist, activist or politician in possession of sensitive data, or an enemy of a regime that has little regard for human rights, you could …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/why-you-dont-need-to-be-bezos-to-worry-about-spyware/

Misc. Math. Data Science. Machine Learning. Optimization. Vector, PCA, Basis, Covariance

Misc. Math. Data Science. Machine Learning. Optimization. Vector, PCA, Basis, Covariance Orthonormality: Orthonormal Vectors “In linear algebra, two vectors in an inner product space are orthonormal if they are orthogonal and unit vectors. A set of vectors form an orthonormal set if all vectors in the set are mutually orthogonal and all of unit length. …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-math-data-science-machine-learning-optimization-vector-pca-basis-covariance/

Misc Math, Data Science, Machine Learning, PCA, FA

“In mathematics, a set B of elements (vectors) in a vector space V is called a basis, if every element of V may be written in a unique way as a (finite) linear combination of elements of B. The coefficients of this linear combination are referred to as components or coordinates on B of the …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-math-data-science-machine-learning-pca-fa/

‘Scam’ fundraisers reap millions in the name of heart-tugging causes

"The call centers in Alabama, along with others in Nevada, New Jersey, and Florida, raise money on behalf of “scam PACs,” slang among critics for political action committees that purport to support worthy causes but in reality hand over little of the money for political – or charitable – purposes. Instead, the bulk of the …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/scam-fundraisers-reap-millions-in-the-name-of-heart-tugging-causes/

Optimization, Data Science, Math

Optimization Problem: Advances in Missile Guidance, Control, and Estimation Preview: https://play.google.com/books/reader?id=A2PMBQAAQBAJ&hl=en_GB&pg=GBS.PR14 https://books.google.ca/books?id=A2PMBQAAQBAJ&pg=PA595&lpg=PA595&dq=force+moment+interaction+with+thrusters&source=bl&ots=BruxnXwLzp&sig=ACfU3U39G-l3xDzbotOBJHcMV5uR7DkciQ&hl=en&sa=X&ved=2ahUKEwjZpsT44afnAhXRJt8KHfPYCroQ6AEwCnoECAoQAQ#v=onepage&q=force%20moment%20interaction%20with%20thrusters&f=false "What is the difference between affine and linear? 4 Answers. A linear function fixes the origin, whereas an affine function need not do so. An affine function is the composition of a linear function with a translation, so while the linear part fixes …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/optimization-data-science-math/

Misc. Math for Data Science, Engineering, and/or Optimization

What is the Inverse of a Matrix? https://www.mathsisfun.com/algebra/matrix-inverse.html What is Norm? “In linear algebra, functional analysis, and related areas of mathematics, a norm is a function that satisfies certain properties pertaining to scalability and additivity, and assigns a strictly positive real number to each vector in a vector space over the field of real or …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-math-for-data-science-engineering-and-or-optimization/

Investing in an ever-changing world

"Anything can happen in the short term but over a few decades the equity market has always produced very significant gains including periods of war, countless recessions and economic shocks. The best financial advice you can give to your children, grandchildren, nieces and nephews is to start as early as possible, stay invested and continue …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/investing-in-an-ever-changing-world/

Misc. Math. Might Relate to Optimization

find the equation for a line http://www.webmath.com/_answer.php Parametric forms for lines and vectors https://www.futurelearn.com/courses/maths-linear-quadratic-relations/0/steps/12128 Solving Systems of Linear Equations Using Matrices https://www.mathsisfun.com/algebra/systems-linear-equations-matrices.html Affine Space ” ” Subspace https://www.wolframalpha.com/input/?i=subspace “What is an affine set? A set is called “affine” iff for any two points in the set, the line through them is contained in the set. …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-math-might-relate-to-optimization/

Industry Job Prospect for Graph Mining

Industry Job Prospect for Graph Mining Sample Jobs https://www.careerbuilder.com/jobs-graph-mining https://www.indeed.com/q-Graph-Mining-jobs.html For example, Google works in the following areas of Graph Mining. Google has jobs for such. Also, Facebook and any other social networking site will have jobs in relation to Graph Mining. Computational Biology, Medicine Research, Drug Discovery, Disease Diagnosis, Transportation, Scheduling, Shipping Scheduling will …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/industry-job-prospect-for-graph-mining-3/

Part X: Engineering Optimization: Mathematical Optimization

Good intro to: Quadratic Forms and Convexity https://www.dr-eriksen.no/teaching/GRA6035/2010/lecture4.pdf Concave Upward and Downward https://www.mathsisfun.com/calculus/concave-up-down-convex.html Convex functions and K-Convexityhttps://ljk.imag.fr/membres/Anatoli.Iouditski/cours/convex/chapitre_3.pdf *** . *** . *** . *** Note: Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/part-x-engineering-optimization-mathematical-optimization/

Industry Job Prospect for Graph Mining

Industry Job Prospect for Graph Mining Sample Jobs https://www.careerbuilder.com/jobs-graph-mining https://www.indeed.com/q-Graph-Mining-jobs.html For example, Google works in the following areas of Graph Mining. Google has jobs for such. Also, Facebook and any other social networking site will have jobs in relation to Graph Mining. Computational Biology, Medicine Research, Drug Discovery, Disease Diagnosis, Transportation, Scheduling, Shipping Scheduling will …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/industry-job-prospect-for-graph-mining-2/

20 January, 2020 08:01

Background Required for taking a Graph Mining Course: As long as you are interested, you can check a Graph Mining course. However, a background in Computer Science/Engineering or related will be of great help. If you have taken courses such as Data Structure, Algorithms (and Computer Networks to some extent) – many course materials will …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/20-january-2020-0801/

Bayesian Statistics and Machine Learning

Bayesian Statistics and Machine Learning “Bayesian inference is a method of statistical inference in which Bayes’ theorem is used to update the probability for a hypothesis as more evidence or information becomes available. Bayesian inference is an important technique in statistics, and especially in mathematical statistics.” en.wikipedia.org › wiki › Bayesian_inference Bayesian inference – Wikipedia …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/bayesian-statistics-and-machine-learning/

Salt

"DESCRIPTION Pass the Salt is an investigation into the mysteries of one of our most fundamental elements. It’s a search for the real answers regarding the mounting debate about the benefits and dangers of salt. https://gem.cbc.ca/media/the-nature-of-things/season-59/episode-9/38e815a-0122947a376" *** Note: Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/salt/

Optimization and Linear Algebra/Math from the Internet

Optimization and Linear Algebra/Math from the Internet First order taylor approximation formula? https://www.thestudentroom.co.uk/showthread.php?t=1247928 Hessian Matrix https://en.wikipedia.org/wiki/Hessian_matrix "In mathematics, the Hessian matrix or Hessian is a square matrix of second-order partial derivatives of a scalar-valued function, or scalar field. It describes the local curvature of a function of many variables." Use in optimization "Hessian matrices are …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/optimization-and-linear-algebra-math-from-the-internet/

SeDuMi MATLAB add-on: solve optimization problems with linear, quadratic and semidefiniteness constraints

SeDuMi MATLAB add-on: solve optimization problems with linear, quadratic and semidefiniteness constraints "Abstract SeDuMi is an add-on for MATLAB, which lets you solve optimization problems with linear, quadratic and semidefiniteness constraints. It is possible to have complex valued data and variables in SeDuMi. Moreover, large scale optimization problems are solved efficiently, by exploiting sparsity. This …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/sedumi-matlab-add-on-solve-optimization-problems-with-linear-quadratic-and-semidefiniteness-constraints/

Lesson 1: The (Linear) Kalman Filter: State Estimation and Localization for Self-Driving Cars

https://www.coursera.org/lecture/state-estimation-localization-self-driving-cars/lesson-1-the-linear-kalman-filter-7DFmY https://d3c33hcgiwev3.cloudfront.net/gWbwrisXEem4egrIUlgmqg.processed/full/360p/index.webm?Expires=1579392000&Signature=gLd7RN8aqZhrNLNLl-huuNsIrkWnUp8gPUAMNqk6Xnkx0lmkMKE8XdXs5v7GGSMvq9ieVeR7MAi2bDz6pxUhgWspfMtnZZ2k2ZpKKzKdNoiFHW-zBVcnFTq~yPyC0ssd1gHzenk2SHqPBu1BhkHTqz7nhdXU08UQS-Z1w7qhwcw_&Key-Pair-Id=APKAJLTNE6QMUY6HBC5A *** *** Note: Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/lesson-1-the-linear-kalman-filter-state-estimation-and-localization-for-self-driving-cars/

Investing

Outlook 2020 stock market: https://www.greaterfool.ca/2020/01/04/outlook-3/ One approach of Investing (taking care of money/investment/financial aspect of life) in Stock Market in the Developed World. https://www.greaterfool.ca/2020/01/01/be-it-resolved/Note: Some Older short-notes from this site are posted on Medium: https://medium.com/@SayedAhmedCanada *** . *** *** . *** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/investing/

Misc. Optimization. Machine Learning

“What is machine learning optimization? Optimization is the most essential ingredient in the recipe of machine learning algorithms. It starts with defining some kind of loss function/cost function and ends with minimizing the it using one or the other optimization routine.Sep 5, 2018” https://towardsdatascience.com/demystifying-optimizations-for-machine-learning-c6c6405d3eea Ordered vector space “Given a vector space V over the real …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-optimization-machine-learning/

Design optimization

Design optimization https://medium.com/generative-design/design-optimization-2ec2ba3b40f7 Learning from nature https://medium.com/generative-design/learning-from-nature-fe5b7290e3de *** . **** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com Online and Offline Training: http://Training.SitesTree.com FB Group on Learning/Teaching: https://www.facebook.com/banglasalearningschool Our …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/design-optimization/

The World is for Polymaths: An Interview with Sajid Amit, Academic, Researcher, and Development Strategist (Part One)

" The World is for Polymaths: An Interview with Sajid Amit, Academic, Researcher, and Development Strategist (Part One) Future Startup Face to Face | The Interview November 4, 2019 0 “When you have multiple lenses with which to consider a problem, it is an incredible advantage. The world is for polymaths,” says Sajid Amit as …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/the-world-is-for-polymaths-an-interview-with-sajid-amit-academic-researcher-and-development-strategist-part-one/

Linear Algebra

https://link-springer-com.libaccess.lib.mcmaster.ca/book/10.1007%2F978-3-319-11080-6 Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com Online and Offline Training: http://Training.SitesTree.com FB Group on Learning/Teaching: https://www.facebook.com/banglasalearningschool Our free or paid events on IT/Data Science/Cloud/Programming/Similar: https://www.facebook.com/justetcsocial Get access to …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/linear-algebra/

linkedin profile

Director/Course Designer/Trainer Justetc (Just Et Cetera) Social Services Non-profit. As we can basis, as time and schedule permit basis. Courses: https://SitesTree.com/training (Free and/or low cost workshops and training). Events: http://facebook.com/justetcsocial. Subject areas in order: Big-Data & Machine Learning (ML, DL, NN, RL, NLP, Visualization), Cloud, Linux/System Admin, Security, DBMS/BI, Web/Mobile/Software Dev. Sayed Ahmed BSc. Eng. …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/linkedin-profile/

How Big Tech is helping transform cars into smartphones

How Big Tech is helping transform cars into smartphones "Those services – streaming video, vehicle performance upgrades, dashboard commerce – could answer a pressing need for automakers. They need to learn how to milk their hardware for revenue long after vehicles roll off dealers’ lots. Tech companies see cars and the time people spend in …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/how-big-tech-is-helping-transform-cars-into-smartphones/

Misc: SVN and Git

SVN Vs Git: Which One Is Best For Your Needs? https://hackbrightacademy.com/blog/svn-vs-git/ For me: it is Git (Sure, Github) *** SVN: Basic Work Cycle: Simple Commands http://svnbook.red-bean.com/en/1.0/ch03s05.html SVN (Subversion): A simple workflow " update to merge the latest changes from the server into your working copy; Perform whatever modifications you need to do; update again to …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-svn-and-git/

Math/Stat/CS/DS Topics that you need to know (with Cognitive, Psychomotor, Affective domain skills) to become a true and great Data Scientist

"The core topics are cross-validation, shrinkage methods (ridge regression, the LASSO, etc.), neural networks, gradient boosting, separating hyperplanes, support vector machines, basis expansion and regularization (e.g., smoothing splines, wavelet smoothing, kernel smoothing), generalized additive models, bump hunting, multivariate adaptive regression splines (MARS), self-organizing maps, mixture model-based clustering, ensemble learning, and p>>n problems. For computing, the …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/math-stat-cs-ds-topics-that-you-need-to-know-with-cognitive-psychomotor-affective-domain-skills-to-become-a-true-and-great-data-scientist/

version control with subversion

"Version Control with Subversion Introduction " Version Control with Subversion, a free book about the ubiquitous Apache™ Subversion® version control system " published by O’Reilly Media. Online Versions of the Book " For Subversion 1.7 View the multiple-page HTML edition of the book. [tar.bz] View the single-page HTML edition of the book. [tar.bz] View the …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/version-control-with-subversion/

Tracking and Detection: With Machine Learning

Tracking-Learning-Detection https://ieeexplore.ieee.org/abstract/document/6104061 Learning to identify and track faces in image sequences https://ieeexplore.ieee.org/abstract/document/670958 Target Tracking Using Machine Learning and Kalman Filter in Wireless Sensor Networks https://ieeexplore.ieee.org/abstract/document/6841003 Multivariate Relevance Vector Machines for Tracking https://link.springer.com/chapter/10.1007/11744078_10 Pose estimation and tracking using multivariate regression https://www.sciencedirect.com/science/article/abs/pii/S0167865508000573 Long-Term Correlation Tracking http://openaccess.thecvf.com/content_cvpr_2015/html/Ma_Long-Term_Correlation_Tracking_2015_CVPR_paper.html Learning-based approach to real time tracking and analysis of faces https://ieeexplore.ieee.org/abstract/document/840618 …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/tracking-and-detection-with-machine-learning/

Sensor Resource Management Resources

potential research What is Sensor Resource Management (SRM) "Sensor resource management (SRM) technology controls one or more sensors to support tracking and fusion." https://www.baesystems.com/en-us/product/sensor-resource-management-srm A survey of radar resource management algorithms https://ieeexplore.ieee.org/abstract/document/4564804 Sensor management: Past, Present, and Future https://arxiv.org/pdf/1109.2363.pdf SENSORS AND RELATED RESEARCH https://www.nsf.gov/about/budget/fy2007/pdf/9-NSF-WideInvestments/48-FY2007.pdf ******** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/sensor-resource-management-resources/

Matlab: Sensor Fusion and Tracking Toolbox

Sensor Fusion and Tracking Toolbox Design and simulate multisensor tracking and positioning systems https://www.mathworks.com/products/sensor-fusion-and-tracking.html#trajectory-scenario-generation ***** . *** . *** Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com Online and Offline Training: …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/matlab-sensor-fusion-and-tracking-toolbox/

Matlab: Tracking and Estimation

Tracking and Motion Estimation — Examples Track a Face in Scene Face Detection and Tracking Using Live Video Acquisition Tracking Pedestrians from a Moving Car Track pedestrians using a camera mounted in a moving car. Using Kalman Filter for Object Tracking https://www.mathworks.com/help/vision/examples.html?category=tracking-and-motion-estimation&s_tid=CRUX_gn_example https://www.mathworks.com/help/vision/examples.html?category=computer-vision-with-simulink&s_tid=CRUX_lftnav_example_tracking-and-motion-estimation Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/matlab-tracking-and-estimation/

Social and Cultural Awareness for IT jobs

Automating Inequalityhttps://virginia-eubanks.com/books/ Weapons of Math Destruction https://weaponsofmathdestructionbook.com/ ******************* Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com Online and Offline Training: http://Training.SitesTree.com FB Group on Learning/Teaching: https://www.facebook.com/banglasalearningschool Our free or paid events …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/social-and-cultural-awareness-for-it-jobs/

Part 4: Some Basic Math/Stat Concepts for the wanna be Data Scientists

Part 4: Some Basic Math/Stat Concepts for the wanna be Data Scientists Also for the Engineers in General Quadratic form “In multivariate statistics, if is a vector of random variables, and is an -dimensional symmetric matrix, then the scalar quantity is known as a quadratic form in . ” Ref: https://en.wikipedia.org/wiki/Quadratic_form_(statistics) Please also check matrix …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/part-4-some-basic-math-stat-concepts-for-the-wanna-be-data-scientists/

Part 3: Some Basic Math/Stat Concepts for the wanna be Data Scientists

Conditional Probability and PDF “The conditional probability of an event B is the probability that the event will occur given the knowledge that an event A has already occurred. This probability is written P(B|A), notation for the probability of B given A. ” “In the case where events A and B are independent (where event …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/part-3-some-basic-math-stat-concepts-for-the-wanna-be-data-scientists/

Part 2: Some basic Math/Statistics concepts that Data Scientists (the true ones) will usually know/use

Part 2: Some basic Math/Statistics concepts that Data Scientists (the true ones) will usually know/use (came across, studied, learned, used) Covariance and Correlation “Covariance is a measure of how two variables change together, but its magnitude is unbounded, so it is difficult to interpret. By dividing covariance by the product of the two standard deviations, …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/part-2-some-basic-math-statistics-concepts-that-data-scientists-the-true-ones-will-usually-know-use/

Part 1: Some Math/Stat Background that (true) Data Scientists will know/use: from the internet

Chebyshev’s inequality “In probability theory, Chebyshev’s inequality (also called the Bienaymé–Chebyshev inequality) guarantees that, for a wide class of probability distributions, no more than a certain fraction of values can be more than a certain distance from the mean. Specifically, no more than 1/k2 of the distribution’s values can be more than k standard deviations …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/part-1-some-math-stat-background-that-true-data-scientists-will-know-use-from-the-internet/

Test: Estimation, Tracking, Probability, Data Science

Chebyshev’s inequality "In probability theory, Chebyshev’s inequality (also called the Bienaymé–Chebyshev inequality) guarantees that, for a wide class of probability distributions, no more than a certain fraction of values can be more than a certain distance from the mean. Specifically, no more than 1/k2 of the distribution’s values can be more than k standard deviations …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/test-estimation-tracking-probability-data-science/

digital pen

Wacom Huion Gaomon Parblo https://www.amazon.ca/Wacom-Drawing-Software-Included-CTL4100/dp/B079HL9YSF/ref=pd_sbs_147_t_1/137-1911729-0010732?_encoding=UTF8&pd_rd_i=B079HL9YSF&pd_rd_r=074faca6-26a6-4641-a332-ce30be389507&pd_rd_w=IlKml&pd_rd_wg=Nkchc&pf_rd_p=9926bb69-42b9-46e4-b788-f665992e326d&pf_rd_r=80CN0VDRKW9R930AA6JV&refRID=80CN0VDRKW9R930AA6JV&th=1 https://www.amazon.com/Wacom-CTL4100-Graphics-Software-included/dp/B079HL9YSF/ref=dp_ob_title_ce https://www.amazon.ca/1060Plus-Graphics-Drawing-Pressure-Sensitivity/dp/B01DZLKYEW/ref=sr_1_11_sspa?keywords=huion&qid=1549776343&s=gateway&sr=8-11-spons&psc=1 https://www.amazon.ca/dp/B07KTWH92W/ref=sspa_dk_detail_4?psc=1&pd_rd_i=B07KTWH92W&pd_rd_w=JpuEc&pf_rd_p=4b7c8c1c-293f-4b1e-a49a-8787dff31bcb&pd_rd_wg=iTLjs&pf_rd_r=GETQN0DH9BFBH4VQDZ9B&pd_rd_r=748b80f9-aa5e-43b9-837d-6723ebc269c4&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUFEMFowQ1BIT0ZBOU8mZW5jcnlwdGVkSWQ9QTA0NjgyNDYySEJJR1BBNklCR1kwJmVuY3J5cHRlZEFkSWQ9QTA5Nzc4NTUzMlEwUjRGRDU5MVhZJndpZGdldE5hbWU9c3BfZGV0YWlsJmFjdGlvbj1jbGlja1JlZGlyZWN0JmRvTm90TG9nQ2xpY2s9dHJ1ZQ== https://www.amazon.ca/dp/B07KTWH92W/ref=sspa_dk_detail_4?psc=1&pd_rd_i=B07KTWH92W&pd_rd_w=JpuEc&pf_rd_p=4b7c8c1c-293f-4b1e-a49a-8787dff31bcb&pd_rd_wg=iTLjs&pf_rd_r=GETQN0DH9BFBH4VQDZ9B&pd_rd_r=748b80f9-aa5e-43b9-837d-6723ebc269c4&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUFEMFowQ1BIT0ZBOU8mZW5jcnlwdGVkSWQ9QTA0NjgyNDYySEJJR1BBNklCR1kwJmVuY3J5cHRlZEFkSWQ9QTA5Nzc4NTUzMlEwUjRGRDU5MVhZJndpZGdldE5hbWU9c3BfZGV0YWlsJmFjdGlvbj1jbGlja1JlZGlyZWN0JmRvTm90TG9nQ2xpY2s9dHJ1ZQ== https://www.amazon.ca/Huion-Graphics-Drawing-Tablet-Board/dp/B00TB0TTAC/ref=sr_1_15?keywords=wacom+bamboo&qid=1577324928&sr=8-15 https://www.amazon.ca/Graphics-Drawing-Pressure-Eco-Friendly-Battery-Free/dp/B075V3ZS99/ref=sr_1_20_sspa?keywords=wacom+bamboo&qid=1577324928&sr=8-20-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEyS04xWEtFS1g0WkFEJmVuY3J5cHRlZElkPUEwMTk5NzkyM045M0NBTE5DQ1VUJmVuY3J5cHRlZEFkSWQ9QTAzMTg2MjMyT0xMV1FNNkI3VlBCJndpZGdldE5hbWU9c3BfYnRmJmFjdGlvbj1jbGlja1JlZGlyZWN0JmRvTm90TG9nQ2xpY2s9dHJ1ZQ== https://forum.deviantart.com/art/digital/2472027/ https://forum.deviantart.com/art/digital/2333282/ https://www.reddit.com/r/DigitalPainting/comments/ap1bh7/picked_some_tablets_wacom_huion_gaomon_but_could/ https://www.aliexpress.com/item/32871479347.html?spm=a2g0o.productlist.0.0.25eca677yYEntH&algo_pvid=e977074d-0813-4e27-ba5d-084c5f3cef84&algo_expid=e977074d-0813-4e27-ba5d-084c5f3cef84-0&btsid=cc674771-f08e-4480-984d-a210f1d55b33&ws_ab_test=searchweb0_0,searchweb201602_6,searchweb201603_53 https://www.aliexpress.com/wholesale?catId=0&initiative_id=SB_20191225173733&SearchText=digital+pen https://www.youtube.com/watch?v=a5Kqpnx8fvw https://www.wacom.com/en-us/products/smartpads/bamboo-folio https://www.teachthought.com/technology/how-to-screencast-like-the-khan-academy/ Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com Online and Offline Training: …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/digital-pen/

Overview on optimization concepts: From the Internet

Optimization Concepts: Convex sets: "A convex set is a set of points such that, given any two points A, B in that set, the line AB joining them lies entirely within that set. Intuitively, this means that the set is connected (so that you can pass between any two points without leaving the set) and …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/overview-on-optimization-concepts-from-the-internet/

Mysql: Repair database and/or tables

" mysqldump db_name t1 > dump.sql mysql db_name < dump.sql mysqldump db_name > dump.sql mysql db_name < dump.sql mysqldump –all-databases > dump.sql mysql < dump.sql ALTER TABLE t1 ENGINE = InnoDB; REPAIR TABLE t1; mysqlcheck –repair –databases db_name … mysqlcheck –repair –all-databases " Reference: https://dev.mysql.com/doc/refman/5.7/en/rebuilding-tables.html — Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/mysql-repair-database-and-or-tables/

Magento 2: Indexing Options

sudo php bin/magento indexer:info design_config_grid Design Config Grid customer_grid Customer Grid catalog_category_product Category Products catalog_product_category Product Categories catalogrule_rule Catalog Rule Product catalog_product_attribute Product EAV cataloginventory_stock Stock inventory Inventory catalogrule_product Catalog Product Rule catalog_product_price Product Price scconnector_google_remove Google Product Removal Feed scconnector_google_feed Google Product Feed catalogsearch_fulltext Catalog Search— Sayed Ahmed BSc. Eng. in Comp. Sc. & …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/magento-2-indexing-options/

posted by rafiq

The video is created by Sayed. Rafiq (contractor of Justetc/8112223 Canada Inc.) just bought this from our old site to this site. [All articles where it says: Posted by Rafiq — just mean Rafiq is not the author/creator/writer/in the video — he just did the data entry] — Sayed Ahmed BSc. Eng. in Comp. Sc. …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/posted-by-rafiq/

Insert Products into Magento Programmatically

Magento 2 – how to add products in Magento using REST API and C # https://www.iperiusbackup.net/en/magento-2-data-load-through-rest-api-interface-and-c/ magento-2-create-product-programmatically.html https://www.mageplaza.com/devdocs/magento-2-create-product-programmatically.html insert product programmatically https://magento.stackexchange.com/questions/62036/insert-product-programmatically Programmatically (manually) creating simple Magento product https://inchoo.net/magento/programming-magento/programatically-manually-creating-simple-magento-product/ By Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/insert-products-into-magento-programmatically/

Administering Magento 2 on AWS Platform

Varnish: Configuring Varnish Server i.e. a Cache Server https://varnish-cache.org/docs/5.1/reference/varnishd.html#http-resp-hdr-len /opt/bitnami/varnish/varnishd varnishd [-a address[:port][,PROTO]] [-b host[:port]] [-C] [-d] [-F] [-f config] [-h type[,options]] [-I clifile] [-i identity] [-j jail[,jailoptions]] [-l vsl[,vsm]] [-M address:port] [-n name] [-P file] [-p param=value] [-r param[,param…]] [-S secret-file] [-s [name=]kind[,options]] [-T address[:port]] [-t TTL] [-V] [-W waiter] [-x parameter|vsl|cli|builtin] [-?] — …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/administering-magento-2-on-aws-platform/

Find answers to the questions to know more on Radar. Sure, you can apply the knowledge in sel-driving car engineering?

What is echo signal in radar? "Noun. 1. radar echo – an electronic signal that has been reflected back to the radar antenna; contains information about the location and distance of the reflecting object. electronic signal – a signal generated by electronic means. Radar echo – definition of radar echo by The Free Dictionary" https://www.thefreedictionary.com …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/find-answers-to-the-questions-to-know-more-on-radar-sure-you-can-apply-the-knowledge-in-sel-driving-car-engineering/

Radar Equations

Describe/Explain Radar operation? i.e. for example, how is radar used to detect an aeroplane? Show radar components and how they function to detect an aeroplane and how is the distance calculated https://www.explainthatstuff.com/radar.html What is the equation to calculate the range to a target using Radar Systems. Use speed of light in the equation. https://www.radartutorial.eu/01.basics/Distance-determination.en.html R …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/radar-equations/

Radar Details: Radars in relation to self-driving vehicles

Irrespective you see the term ‘self-driving vehicles’ or not: the answers to these questions are related to self-driving vehicles. What are the different types of Radars? What is a Pulse Radar? What is a Continuous Wave Radar? What is a Surveillance Radar? What is MTI-Moving Target Indication? What is a Pulse Doppler Radar? What is …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/radar-details-radars-in-relation-to-self-driving-vehicles/

Radar/Lidar Detection and Self-Driving Agents

What are basic Radar functions? Whatever comes to your mind? Though the goal is not to find core radar applications; however, functions of radars that are used in the applications. What is the goal of the radar function named: Detection? Answer, in terms of signals Does radar take images of an area? if so, 2D …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/radar-lidar-detection-and-self-driving-agents/

C++ Libraries

#include <iostream> #include <vector> #include <deque> #include <list> #include <set> #include <map> #include <string> #include <algorithm> #include <iterator> #include <functional> #include <numeric> By Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/c-libraries/

Git LFS: Large File System

To use Homebrew, run brew install git-lfs To use MacPorts, run port install git-lfs git lfs track "*.tar.gz" git add path/to/file.tar.gz git commit -m "add file.psd" git push origin master Reference: https://help.github.com/en/github/managing-large-files/configuring-git-large-file-storage Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/git-lfs-large-file-system/

Mysql error after upgrading magento 2.3.2 to 2.3.3

Solution to: SQLSTATE[HY000]: General error: 1419 You do not have the SUPER privilege and binary logging is enabled (you might want to use the less safe log_bin_trust_function_creators variable), query was: CREATE TRIGGER trg_catalog_product_entity_after_insert AFTER INSERT ON catalog_product_entity FOR EACH ROW BEGIN INSERT IGNORE INTO `scconnector_google_feed_cl` (`entity_id`) VALUES (NEW.`entity_id`); END Sol: mysql -u root -p set …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/mysql-error-after-upgrading-magento-2-3-2-to-2-3-3/

Update Magento 2 to the latest version

Update Magento 2 to the latest version—https://devdocs.magento.com/guides/v2.3/comp-mgr/cli/cli-upgrade.html Work with Github large file system —install: Git-lfs: https://help.github.com/en/github/managing-large-files/installing-git-large-file-storage —How to work with: https://help.github.com/en/github/managing-large-files/configuring-git-large-file-storage Sure, had to deal with i.e. work with By Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/update-magento-2-to-the-latest-version/

Stochastic Processes and Related Terms

What is a Random Variable? Ans: "In probability and statistics, a random variable, random quantity, aleatory variable, or stochastic variable is described informally as a variable whose values depend on outcomes of a random phenomenon." In probability theory, "a random variable is understood as a measurable function defined on a probability space whose outcomes are …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/stochastic-processes-and-related-terms/

Stock Market Today

Stock Market Today (Mostly up, also lately mostly up). XUS ETF price increase: $20 to $52 in 6 years https://www.morningstar.ca/ca/report/etf/performance.aspx?t=0P0000YUAU&lang=en-CA By Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, http://SitesTree.com Online and …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/stock-market-today/

How To Set Up Apache Virtual Hosts on Ubuntu 16.04

How To Set Up Apache Virtual Hosts on Ubuntu 16.04 https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-16-04 Yes, implemented these in the past at work. Also, did for myself.. By Sayed Ahmed BSc. Eng. in Comp. Sc. & Eng. (BUET) MSc. in Comp. Sc. (U of Manitoba, Canada) MSc. in Data Science and Analytics (Ryerson University, Canada) Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: http://Bangla.SaLearningSchool.com, …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/how-to-set-up-apache-virtual-hosts-on-ubuntu-16-04/

Misc. Statistics, Engineering, and Sensors

Learn more about Nonparametric Test https://www.sciencedirect.com/topics/medicine-and-dentistry/nonparametric-test Sensor Management for Large-Scale Multisensor-Multitarget Tracking," in Integrated Tracking, Classification, and Sensor Management: Theory and Applications http://download.e-bookshelf.de/download/0000/7142/31/L-G-0000714231-0002366034.pdf Approaches to Multisensor Data Fusion in Target Tracking: A Survey https://www.computer.org/csdl/journal/tk/2006/12/k1696/13rRUxBa56w Sensor fusion https://en.wikipedia.org/wiki/Sensor_fusion Sensor Fusion: Sensor fusion is the process of merging data from multiple sensors such that to reduce the …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/misc-statistics-engineering-and-sensors/

Can you answer these random questions on Data Science Project Development

Questions to answer 1. What does a data science project usually involve? What is the common theme across data science projects? 2. Does industry projects and research projects differ? Why and to what extent? 3. What are the some dataset repositories? Where can you get them? 4. Are all public datasets perfect for doing a …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/can-you-answer-these-random-questions-on-data-science-project-development/

Might be of Interest to the readers of this platform

Self Learning AI-Agents Part II: Deep Q-Learning https://towardsdatascience.com/self-learning-ai-agents-part-ii-deep-q-learning-b5ac60c3f47 Canada’s flawed financial advice industryCommissions and conflicting interests persist – when are we going to get the value we deserve? https://www.morningstar.ca/ca/news/196072/canadas-flawed-financial-advice-industry.aspx Whatever the Future Holds, Stocks Are Not Priced for a Recession https://www.bloomberg.com/news/articles/2019-10-06/whatever-the-future-holds-stocks-are-not-priced-for-a-recession?srnd=premium-canada Machine Learning Model Deployment: Strategy to Implementation https://www.youtube.com/watch?v=xEG8u62TB2Q — Sayed Ahmed Linkedin: https://ca.linkedin.com/in/sayedjustetc Blog: …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/might-be-of-interest-to-the-readers-of-this-platform/

Join a Graph Mining Course

If you are interested to get access to a course (under development) on Graph Mining (Part of AI/Data Science/Analytics/ML), please request using the following Google Form (or just inform us your email in a way so that we can give you access): https://docs.google.com/forms/d/e/1FAIpQLSerGzkN9WlWW6SyDwaV-zdcYuSpXXODk9JIBTp7–EA_WTUCg/viewform?usp=sf_link Or use the event to show your interest and inform the email …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/join-a-graph-mining-course/

Graph Mining: Introducing Graphs: Learn by finding answers to the following questions?

Graph Mining: Introducing Graphs: Learn by finding answers to the following questions? Questions What is a Graph? Give an example of a Graph? What are the different Types of Graphs? i.e. Try to give some examples of different ways how Graphs are classified? What is a directed Graph? What is an undirected Graph? What are …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/graph-mining-introducing-graphs-learn-by-finding-answers-to-the-following-questions/

Graph Mining: What is Graph Mining? Learn by finding answers to the following questions. Can you answer the following questions?

Graph Mining: What is Graph Mining? Learn by finding answers to the following questions. Can you answer the following questions? What is Graph Mining? What is a Graph anyway? Is Graph mining just a kind of Machine Learning? i.e. is Machine Learning the only primary component of Graph Mining? Does Graph Mining involve Only Statistics? …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/graph-mining-what-is-graph-mining-learn-by-finding-answers-to-the-following-questions-can-you-answer-the-following-questions/

Graph Mining: Community Detection: Learn by finding answers to the following questions. Can you answer the following questions on Community Detection?

Graph Mining: Community Detection: Learn by finding answers to the following questions. Can you answer the following questions on Community Detection? What is a community anyway? Describe from your real-world/social understanding of it? Can you relate it to the Graphs concept in Computer Science? In your daily life do you interact with a community in …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/graph-mining-community-detection-learn-by-finding-answers-to-the-following-questions-can-you-answer-the-following-questions-on-community-detection/

Our Most Accessed Short Notes

Top Posts Title Views Home page / Archives 131,199 উচ্চ মাধ্যমিক সিলেবাস অনুযায়ী একাদশ-দ্বাদশ শ্রেণীর বইসমূহের পাঠ্যক্রম (কারিকুলাম) 20,177 এইচ টি এম এল কোর্স সমূহ । HTML Courses in Bangla 11,088 Computer hardware bangla tutorial -24 (কম্পিউটার হার্ডওয়্যার বাংলা টিউটোরিয়াল) 8,055 সি এস এস কোর্স সমূহ । CSS Courses in bangla 7,141 CT scan or …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/our-most-accesses-short-notes/

Important Basic Concepts: Statistics for Big Data

Important Basic Concepts: Statistics for Big Data Graphical : Exploratory Data Analysis (EDA) methods? First of all, EDA is about exploring the data and understanding if the data will be good for the experiment and study. Graphs and plots can easily show the data patterns. The raw data can be difficult to understand for patterns …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/important-basic-concepts-statistics-for-big-data/

Questions Answered by Exploratory Data Analysis (EDA)

Questions Answered by Exploratory Data Analysis (EDA) What are the key properties of a Dataset (Center, Spread, Skew, probability distribution, correlation, outliers) 1. What is the center of the data (mean, median, mode) 2. How much spread is there in the data? (Variance, Standard deviation, Quartiles, Interquartile Range (IQR), Example: IQR = Q3 – Q1) …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/questions-answered-by-exploratory-data-analysis-eda/

Best Practices in Data Preparation

Best Practices in Data Preparation 1. Check data formats (Image, CSV, PC, Mac, mainframe, text, structured, unstructured) 2. Verify data types (numbers, text, floats, currencies, nominal, ordinal, interval, range) 3. Graph your Data (Scatter, Histogram, bar, line) 4. Verify the data (data accuracy, data makes sense) 5. Identify outliers ( Examples: very large or very …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/best-practices-in-data-preparation/

Visualization of Multivariate Charts

Dataset Types Tables, Networks, Spatial https://www.cs.ubc.ca/~tmm/talks/minicourse14/vad16nasa.pdf Attribute Types Categorical, Ordered, Quantitative Multivariate Charts Scatter Plot, Heat Map, Bubble Chart, Parallel Coordinates, Radar Plot Scatter Plot https://en.wikipedia.org/wiki/Scatter_plot Scatter Plot : Details: Patterns https://mste.illinois.edu/courses/ci330ms/youtsey/scatterinfo.html Scatter Plot and Trend Line https://www.mathsisfun.com/data/scatter-xy-plots.html Scatterplot Details https://www150.statcan.gc.ca/n1/edu/power-pouvoir/ch9/scatter-nuages/5214827-eng.htm GRAPHICS: COMBINING TWOWAY SCATTERPLOTS | STATA LEARNING MODULES https://stats.idre.ucla.edu/stata/modules/graph8/twoway-scatter-combine/ Multiple overlaid scatterplots https://www.stata.com/support/faqs/graphics/gph/graphdocs/multiple-overlaid-scatterplots/index.html Visualization …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/visualization-of-multivariate-charts/

PERCEPTION and Data Visualization: Concepts, Examples, Code, Projects

PERCEPTION Data Visualization for Human Perception "Data visualization is the graphical display of abstract information for two purposes: sense-making (also called data analysis) and communication. … In other words, to visualize data effectively, we must follow design principles that are derived from an understanding of human perception." https://www.interaction-design.org/literature/book/the-encyclopedia-of-human-computer-interaction-2nd-ed/data-visualization-for-human-perception The Role of Visual Perception in Data …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/perception-and-data-visualization-concepts-examples-code-projects/

Text Visualization: Concepts, Examples, Code (Python, R, Matlab), Example Projects

Text Visualization Data Visualization Of President Obama’s Inauguration Speech https://blog.capitalogix.com/public/2009/01/data-visualization-of-president-obamas-inauguration-speech.html Text Visualization Course at Washington University https://courses.cs.washington.edu/courses/cse512/16sp/lectures/CSE512-Text.pdf Why Visualize Text? https://www.teachervision.com/reading-comprehension/visualizing You can visualize text to find key concepts in a speech. Obama’s Speech: https://www.nytimes.com/2009/09/10/us/politics/10obama.text.html Example: Speech/Article Visualizations https://economix.blogs.nytimes.com/2009/09/09/obama-in-09-vs-clinton-in-93/?mtrref=undefined&gwh=EA5A091DC9E658A2DCC9513805FEAC3F&gwt=pay&assetType=REGIWALL 1993 Speech: Bill Clinton https://economix.blogs.nytimes.com/2009/09/09/bill-clinton-on-health-care-1993/ 1993 vs 2009. https://economix.blogs.nytimes.com/2009/09/09/obama-in-09-vs-clinton-in-93/ Wordtree https://www.jasondavies.com/wordtree/?source=8bd3e76f64f2d614410435434e2fb1fd&amp;prefix Text Visualization Overview https://courses.cs.washington.edu/courses/cse512/16sp/lectures/CSE512-Text.pdf Introduction …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/text-visualization-concepts-examples-code-python-r-matlab-example-projects/

Time Series: Concepts, Visualizations, Example Code, Example Projects

Permanent link to this article: https://bangla.sitestree.com/time-series-concepts-visualizations-example-code-example-projects/

Hierarchical Visualization: Examples, Implementations, Theory, and Projects

Hierarchical Visualization Hierarchical Visualization in R http://www.r-chart.com/2010/07/hierarchical-visualizations-in-r-and.html Hierarchical cluster analysis on famous data sets – enhanced with the dendextend package https://cran.r-project.org/web/packages/dendextend/vignettes/Cluster_Analysis.html Tree Plots https://plot.ly/python/tree-plots/ A Python framework for the analysis and visualization of trees. http://etetoolkit.org/ Hierarchy https://en.wikipedia.org/wiki/Hierarchy Organizational Chart https://upload.wikimedia.org/wikipedia/commons/8/86/Departments_in_advertising_agencies.jpg Brackets https://en.wikipedia.org/wiki/Bracket_(tournament)#/media/File:SixteenPlayerSingle Introduction to Graphs http://btechsmartclass.com/data_structures/introduction-to-graphs.html https://www.csee.umbc.edu/courses/undergraduate/341/fall98/frey/ClassNotes/Class14/RootedTree.jpg Tree Data Structure https://en.wikipedia.org/wiki/Tree_(data_structure) Unrooted Tree https://image.slidesharecdn.com/phylogeneticanalysis-111117220939-phpapp01/95/phylogenetic-analysis-16-728.jpg?cb=1321568578 cyclicVSacyclic …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/hierarchical-visualization-examples-implementations-theory-and-projects/

GEO VISUALIZATION: Data Visualization

GEO VISUALIZATION spatial data https://searchsqlserver.techtarget.com/definition/spatial-data File:Latitude and Longitude of the Earth.svg https://en.wikipedia.org/wiki/File:Latitude_and_Longitude_of_the_Earth.svg Geographic coordinate system https://en.wikipedia.org/wiki/GWhy are all world maps wrong?eographic_coordinate_system How To Read GPS Coordinates https://www.ubergizmo.com/how-to/read-gps-coordinates/ Geographic coordinate conversion https://en.wikipedia.org/wiki/Geographic_coordinate_conversion GPS coordinates converter https://www.gps-coordinates.net/gps-coordinates-converter GPS coordinates converter https://www.gps-coordinates.net/gps-coordinates-converter Map Projection https://en.wikipedia.org/wiki/Map_projection Why are all world maps wrong? https://www.quora.com/Why-are-all-world-maps-wrong Map Projections – types and distortion …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/geo-visualization-data-visualization/

NETWORK VISUALIZATION : Data Visualization

NETWORK VISUALIZATION Example: http://graphs.grevian.org/resources/static/images/example1.png Graph http://mathworld.wolfram.com/Graph.html DIRECTED, UNDIRECTED, WEIGHTED, UNWEIGHTED GRAPH REPRESENTATION IN ADJACENCY LIST, MATRIX REFERENCE SHEET https://quickgrid.wordpress.com/2015/05/29/directed-undirected-weighted-unweighted-graph-representation-in-adjacency-list-matrix-reference-sheet/ Graphs in Computer Science http://web.cecs.pdx.edu/~sheard/course/Cs163/Doc/Graphs.html Types of Graphs https://www.javatpoint.com/types-of-graphs Finite State Machines https://brilliant.org/wiki/finite-state-machines/ A D3 Network Graph http://bl.ocks.org/jose187/4733747 Fisheye Distortion https://bost.ocks.org/mike/fisheye/ http://www.michelecoscia.com/wp-content/uploads/2012/08/demon2.png Arc Layout http://bl.ocks.org/sjengle/5431779 Gridlayout http://opentutorials.cgl.ucsf.edu/images/b/bc/GridLayout.png Circular Layout https://66.media.tumblr.com/8162e2b68064b3aff0fcc5f9be90c016/tumblr_inline_mtcb19aG1n1qzro4y.png An A to Z of extra …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/network-visualization-data-visualization/

Data Visualization Misc

Data Visualization Overview: —————————- Data Visualization: About Data Visualization http://guides.library.duke.edu/c.php?g=289678&p=1930713 I Can See Clearly Now: A Survey of Data Visualization Techniques & Practice https://www.slideshare.net/myles_harrison/i-can-see-clearly-now-a-survey-of-data-visualization-techniques-practice-31179055 Visualization in Data Science: What is it for? http://guides.library.duke.edu/c.php?g=289678&p=1930713 Anscombe’s quartet https://en.wikipedia.org/wiki/Anscombe’s_quartet Storytelling and data visualization… So what? https://www.dapresy.com/storytelling-and-data-visualization/ Visualization Types https://guides.library.duke.edu/datavis/vis_types Junk Charts https://junkcharts.typepad.com/junk_charts/2012/10/expanding-circles-of-error.html Visualization Analysis & Design https://www.cs.ubc.ca/~tmm/talks/minicourse14/vad16nasa.pdf — Python …

Continue reading

Permanent link to this article: https://bangla.sitestree.com/data-visualization-misc/

Load more