Skip to content Skip to sidebar Skip to footer

Downscaling a Satellite Thermal Image from 1000m to 10m (Python) | by Mahyar Aboutalebi, Ph.D. šŸŽ“ | Mar, 2024

Thermal sharpening of Sentinel-3 images: From 1 Km to 10m using Python in Google Colab 13 min read Ā· 11 hours ago Sentinel-3 thermal image downscaled from 1000 m to 10 m, visualized by the author.šŸŒ… Introduction šŸ’¾ Downloading Sentinel-3 (1000 m) and Sentinel-2 images (10 m) āš™ļø Sentinel-3 Image Processing šŸŒ”ļø…

Read More

The German Tank Problem. Estimating your chances of winning theā€¦ | by Dorian Drost | Mar, 2024

Estimating your chances of winning the lottery with sampling Statistical estimates can be fascinating, canā€™t they? By just sampling a few instances from a population, you can infer properties of that population such as the mean value or the variance. Likewise, under the right circumstances, it is possible to estimate the total size of the…

Read More

TARNet and Dragonnet: Causal Inference Between S- And T-Learners | by Dr. Robert KĆ¼bler | Mar, 2024

Learn how to build neural networks for direct causal inference Photo by Geranimo on UnsplashBuilding machine learning models is fairly easy nowadays, but often, making good predictions is not enough. On top, we want to make causal statements about interventions. Knowing with high accuracy that a customer will leave our company is good, but knowing…

Read More

Visualize your RAG Data ā€” Evaluate your Retrieval-Augmented Generation System with Ragas | by Markus Stoll | Mar, 2024

How to use UMAP dimensionality reduction for Embeddings to show multiple evaluation Questions and their relationships to source documents with Ragas, OpenAI, Langchain and ChromaDB 13 min read Ā· 19 hours ago Retrieval-Augmented Generation (RAG) adds a retrieval step to the workflow of an LLM, enabling it to query relevant data from…

Read More

Impact of Rising Sea Levels on Coastal Residential Real Estate Assets | by Riddhisha Prabhu | Mar, 2024

Using scenario based stress testing to identify medium (2050) and long term (2100) sea level rise risks This project utilizes a scenario based qualitative stress testing approach to identify US coastal census tracts expected to adversely impacted by sea level rise (SLR) in the medium (2050) and long term (2100). One Baseline and two ā€˜plausible…

Read More

Particle Swarm Optimization (PSO) from scratch. Simplest explanation in python | by Aleksei Rozanov | Feb, 2024

First of all, letā€™s define our hypoparameters. Like in many other metaheuristic algorithms, these variables should be adjusted on the way, and there is no versatile set of values. But letā€™s stick to these ones: POP_SIZE = 10 #population size MAX_ITER = 30 #the amount of optimization iterations w = 0.2 #inertia weight c1…

Read More