- 47
- 72 159
My Knowlege space
Приєднався 26 лют 2022
Welcome to your digital library for machine learning and deep learning in water resources! Curated by a PhD candidate specializing in multi-hazard research, this channel offers insights into algorithms and models for applications like discharge prediction, rainfall-runoff models, and more. Whether you're interested in advanced techniques or practical applications in environmental science, you'll find resources here to support your journey.
Gradient Descent algorithm in Python
This video describes the details of the gradient descent algorithm and includes code for modeling using it.
What You’ll Learn:
1. The fundamentals of gradient descent algorithm
2. How to prepare and preprocess your dataset for analysis
3. Step-by-step coding using popular libraries like NumPy, Pandas, and Scikit-learn
4. Tips for visualizing your data and results
5. How to evaluate the performance of your model.
Previous videos:
1. Linear Regression Model in Python: A Step-by-Step Guide
ua-cam.com/video/VvSE-lerS_c/v-deo.html
2. How to calculate RMSE, Correlation, and other metrics in Python | Code
ua-cam.com/video/NujMKDwYHks/v-deo.html
3. How to develop a Multiple Regression Model in Matlab
ua-cam.com/video/CNV8Dfidb_0/v-deo.html
4. Flow direction concept and code
ua-cam.com/video/xcwrq6GMEZA/v-deo.html
5. Wavelet Neural Network
ua-cam.com/video/uCwJRvNxvG0/v-deo.html
6. Concept of Extreme learning machines (ELM)
ua-cam.com/video/J33wLfQtfuo/v-deo.html
Don’t forget to like, subscribe, and hit the notification bell for more programming tutorials!
(00:00) Introduction
(00:49) Description of Gradient descent algorithm
(06:01) Python inputs
(07.30) Model development
(13:17) Model loops
(12:48) Model development
(19:00) Model run
(20:38) Model testing
(24:37) Importance of Epochs
(25:54) Conclusions
What You’ll Learn:
1. The fundamentals of gradient descent algorithm
2. How to prepare and preprocess your dataset for analysis
3. Step-by-step coding using popular libraries like NumPy, Pandas, and Scikit-learn
4. Tips for visualizing your data and results
5. How to evaluate the performance of your model.
Previous videos:
1. Linear Regression Model in Python: A Step-by-Step Guide
ua-cam.com/video/VvSE-lerS_c/v-deo.html
2. How to calculate RMSE, Correlation, and other metrics in Python | Code
ua-cam.com/video/NujMKDwYHks/v-deo.html
3. How to develop a Multiple Regression Model in Matlab
ua-cam.com/video/CNV8Dfidb_0/v-deo.html
4. Flow direction concept and code
ua-cam.com/video/xcwrq6GMEZA/v-deo.html
5. Wavelet Neural Network
ua-cam.com/video/uCwJRvNxvG0/v-deo.html
6. Concept of Extreme learning machines (ELM)
ua-cam.com/video/J33wLfQtfuo/v-deo.html
Don’t forget to like, subscribe, and hit the notification bell for more programming tutorials!
(00:00) Introduction
(00:49) Description of Gradient descent algorithm
(06:01) Python inputs
(07.30) Model development
(13:17) Model loops
(12:48) Model development
(19:00) Model run
(20:38) Model testing
(24:37) Importance of Epochs
(25:54) Conclusions
Переглядів: 35
Відео
Linear Regression Model in Python: A Step-by-Step Guide
Переглядів 21421 день тому
Welcome to this comprehensive tutorial on building a linear regression model using Python! In this video, we’ll take you through the entire process, from data preprocessing to model evaluation, ensuring you have a solid understanding of linear regression and its practical applications. What You’ll Learn: 1. The fundamentals of linear regression and when to use it 2. How to prepare and preproces...
How to calculate RMSE, Correlation and other metrics in python | Code
Переглядів 832 місяці тому
Hello everyone In this video i will talk briefly about the code which i have used in my previous videos of neural network models to get the parameteric metrics in matlab. In the current video, i have adapted the matlab code to python to be used for getting performance metrics easily. You can use the code from the below link: github.com/Myknowledgespace/analysismetrics.git previous videos: 1. Fl...
How to code Flow direction | concept and code
Переглядів 993 місяці тому
In this video a detailed description of flow direction concept and code almost line by line are discussed to understand the concept of the code and write your own for your convinience. In general you can do this flow direction calculation in Qgis or other softwares but when we are developing our own models or tools we need to be able to have our own code to complete our tool. So feel free to us...
How to plot data on primary and inverted secondary axis using python
Переглядів 1466 місяців тому
In this video a detailed description of how we can plot a bar plot of data in primary and secondary axis using python. Previous videos: 1. Clip raster in Python ua-cam.com/video/82YzOMTzvXQ/v-deo.html 2. How to download DEM data | SRTM 90m data ua-cam.com/video/KA-1cvTZ6wU/v-deo.html 3. How to plot Shapefile in Python | Part-03 ua-cam.com/video/3LBfCD7iPRs/v-deo.html 4. How to plot Shapefile in...
How to Clip rasters in Python
Переглядів 327Рік тому
In this video a detailed description of the how we can clip raster in python is discussed. Two codes have been discussed and also why there are differences in the results of these two methods are discussed. 0:00 Introduction 0:28 Clip in Qgis 1:15 Why to do in Python? 2:19 Clipping methods 3:05 Method 1 7:05 Method 2 09:46 Differences in results Previous codes: 1. World Basin Shapefiles: A Down...
World Basin Shapefiles: A Download Guide
Переглядів 181Рік тому
In this video, a small talk about how you can dowload most of the subbasin in the world is shown. the website mentioned in the video is : riverbasins.wateractionhub.org/ If you like content regarding download data or developing various machine learning models in the domain of water resources, you can watch the below videos: 1. Extreme learning machine concept ua-cam.com/video/J33wLfQtfuo/v-deo....
How to download DEM data | SRTM 90m data
Переглядів 1,2 тис.Рік тому
In this video a small and easy explanation about how we can download SRTM 90m data for any loaction around the world is shown. The link to download the DEM data is: srtm.csi.cgiar.org/srtmdata/ If you like content regarding download data or developing various machine learning models in the domain of water resources, you can watch the below videos: 1. Extreme learning machine concept ua-cam.com/...
Raster Magic: How to Plot Raster Files in Python Like a Pro!
Переглядів 785Рік тому
In this video, a detailed explanation of how we can write a code for plotting a raster in python is explained in detail. the code used in this video is shown below: import geopandas as gpd import matplotlib.pyplot as plt from matplotlib.colors import from_levels_and_colors import contextily as ctx from mpl_toolkits.axes_grid1 import make_axes_locatable import rasterio.plot from matplotlib_scale...
How to plot Shapefile in Python | Part-03
Переглядів 297Рік тому
In this video a detailed explain about how a shapefile can be plotted in python is discussed. The main focus of the video is to be able to plot the shapefile with data like area of each portion of the shapefile and plot it with different colors for better understanding. Along with that it is also discussed how a base map can be added to the background of the plotted shapefile along with the det...
How to plot Shapefile in Python | Part-02
Переглядів 470Рік тому
In this video a detailed explain about how a shapefile can be plotted in python is discussed. Along with that it is also discussed how a base map can be added to the background of the plotted shapefile along with the details like north arrow, scalebar, legend and also make the shapefile transparent. Code used: import geopandas as gpd import matplotlib.pyplot as plt import matplotlib.ticker as t...
How to plot Shapefile in Python | Part-01
Переглядів 477Рік тому
This video is is the first in the series of videos which we will be producing with python for understanding and applying various models and codes in the domain of water resources. Plotting shapefile in python is carried out in 3 parts and this video is the part 1/3 of the series In this video , a short and simple code which can be used for plotting in python is explained. Code used import geopa...
Que es red neuronal artificial| ANN in 7 minutes
Переглядів 268Рік тому
En este video, se realiza una breve descripción de las redes neuronales artificiales, sus antecedentes, varios dominios que usan redes neuronales artificiales y cómo se pueden aplicar para un mejor modelado de varios propósitos.
Wavelet Neural Network (WT-FFNN)| Model development
Переглядів 1,3 тис.Рік тому
In this video a detailed description of the development of a Wavelet based Feed Forward Neural Network model with multi variable inputs for flood forecasting is developed. Along the course of the video various concepts and codes related to wavelet decomposition, normalization of the data, data division for model calibration and validation and error calculation are discussed and the videos of th...
Wavelet Neural Network Part 2 | Data Preparation| Thiessen Polygon
Переглядів 993Рік тому
Wavelet Neural Network Part 2 | Data Preparation| Thiessen Polygon
Rainfall-Runoff Modelling using ELM| Code
Переглядів 1,4 тис.2 роки тому
Rainfall-Runoff Modelling using ELM| Code
Understanding Extreme Learning Machines code| Matlab
Переглядів 3 тис.2 роки тому
Understanding Extreme Learning Machines code| Matlab
Concept of Extreme learning machines (ELM)
Переглядів 9 тис.2 роки тому
Concept of Extreme learning machines (ELM)
Runoff Forecasting using Narx Neural Network
Переглядів 2,1 тис.2 роки тому
Runoff Forecasting using Narx Neural Network
Understanding Narx Neural Network code| Matlab
Переглядів 3,7 тис.2 роки тому
Understanding Narx Neural Network code| Matlab
Accuracy of satellite rainfall data sets| code|Matlab
Переглядів 5732 роки тому
Accuracy of satellite rainfall data sets| code|Matlab
Analysis of Observed and Satellite rainfall data sets| Part 2
Переглядів 9222 роки тому
Analysis of Observed and Satellite rainfall data sets| Part 2
Comparison of Observed and Satellite data sets | Part 1
Переглядів 6552 роки тому
Comparison of Observed and Satellite data sets | Part 1
How to download satellite precipitation data sets | Part 2
Переглядів 2 тис.2 роки тому
How to download satellite precipitation data sets | Part 2
How to download satellite precipitation data | Part 01
Переглядів 1,4 тис.2 роки тому
How to download satellite precipitation data | Part 01
Types of Satellite Precipitation Data Sets
Переглядів 6552 роки тому
Types of Satellite Precipitation Data Sets