Rami Krispin

Rami Krispin

@ramikrispin.bsky.social

Senior Manager Data Science and Engineering at ๏ฃฟ | Docker Captain ๐Ÿณ| Time-series analysis & forecasting My newsletters: Weekly updates: https://ramikrispin.substack.com AIOps: https://theaiops.substack.com Forecasting: https://theforecaster.substack.com

7,915 Followers 2,215 Following 1,177 Posts Joined Jan 2024
4 days ago
Preview
Forecasting AI Agent, AI Agents and Applications New Book | Issue 78 A weekly curated update on data science and engineering topics and resources.

My weekly newsletter is out!

This week's agenda:
๐Ÿ”น Open Source of the Week - the Heval project
๐Ÿ”น New learning resources
๐Ÿ”น Book of the week - AI Agents and Applications by Roberto Infante

ramikrispin.substack.com/p/forecastin...

#ai #datascience #forecasting #julialang

2 1 0 0
1 week ago
Post image

If you had told me a year ago that I would be having a philosophical discussion about feature development with two AI agents, I would have thought something was wrong with you...

What a day to live in.

#ai

4 0 1 0
1 week ago
Post image

My weekly newsletter is out! ๐Ÿ‘‡๐Ÿผ

open.substack.com/pub/ramikris...

#datascience #rstats #python

4 1 1 0
2 weeks ago
Preview
Time Series Forecasting in Python, the DuckLack R Library, New Tutorials| Issue 76 A weekly curated update on data science and engineering topics and resources.

My weekly newsletter is out!

This week's agenda:
๐Ÿ”น Open Source of the Week - The DuckLack R project by Travis Gerke, ScD
๐Ÿ”น New learning resources
๐Ÿ”นBook of the week - Time Series Forecasting in Python by Marco Peixeiro

ramikrispin.substack.com/p/time-serie...

#rstats #python #ai #datascience

4 3 0 0
3 weeks ago
YouTube
Fine-Tune an Open Source LLM with Claude Code/Codex (Hugging Face Model Trainer Skill) YouTube video by Alejandro AO

Fine-Tune an Open Source LLM with Claude Code/Codex ๐Ÿ‘‡๐Ÿผ

The following tutorial by Alejandro AO provides an introduction for fine-tune a small open source model with Codex using the Hugging Face model trainer skill and HF Jobs.

www.youtube.com/watch?v=HGPT...

#ai #llm

3 0 0 0
3 weeks ago
Hands-On: Running Local LLMs with Docker Model Runner In this hands-on webinar, youโ€™ll learn how to set up DMR, pull models from Docker Hub and Hugging Face, and run models via terminal.

I am going to run a workshop tomorrow about running LLMs locally with Docker Model Runner.

If you want to join, please RSVP:
www.eventbrite.com/e/hands-on-r...

#ai #llm #docker

2 1 0 0
3 weeks ago
Preview
The KAOS Project, Relational Database Book & New Tutorials Explore the KAOS open-source project, a new relational database book, and top tutorials on Python, AI, systems, and data engineering in this curated weekly roundup.

My weekly newsletter is out!

This weekโ€™s agenda:
๐Ÿ”น Open Source of the Week - The KAOS project
๐Ÿ”น New learning resources
๐Ÿ”น Book of the week - Grokking Relational Database Design by Qiang Hao and Michail Tsikerdekis

ramikrispin.substack.com/p/the-kaos-p...

#ai #datascience #dataengineering

0 0 0 0
1 month ago
Preview
The Shapash Project, New Python Book, OpenClaw Tutorials | Issue 74 Discover the Shapash open-source explainability project, a new Python book, OpenClaw tutorials, and top AI/ML learning resources in this curated weekly roundup.

My weekly newsletter is out ๐Ÿ‘‡๐Ÿผ

This weekโ€™s agenda:
- Open source - The Shapash project
- New tutorials
- Book of the week - Software Design for Python Programmers by Ronald Mak

ramikrispin.substack.com/p/the-shapas...

#ai #machinelearning #python

1 0 0 0
1 month ago

I am happy that a wall is separating me from this cut bobcat ๐Ÿ˜…

2 0 0 0
1 month ago
Video thumbnail

Only in Californiaโ€”sitting in a meeting room while a bobcat elegantly strolls by outside ๐Ÿพ

7 0 1 0
1 month ago

I had the same question, but I did not have the time yet to explore this library.

0 0 0 0
1 month ago
Post image

Capture this great view of San Francisco this morning ๐Ÿ‘‡๐Ÿผ

21 0 1 1
1 month ago
Preview
caretForecast Conformal Time Series Forecasting Using Machine Learning

The hexagon here is priceless ๐Ÿ˜Ž

taf-society.github.io/caretForecast/

#rstats #timeseries

16 2 1 0
1 month ago
Preview
The QueryChat Project, Mathematics of Machine Learning, New Tutorials Explore the QueryChat open-source project, math foundations of machine learning, and fresh tutorials on MLOps, data engineering, and AI tools in this curated roundup.

My weekly newsletter is out ๐Ÿ‘‡๐Ÿผ

Open source: the QueryChat
New tutorials
Book: Mathematics of Machine Learning

ramikrispin.substack.com/p/the-queryc...

#python #rstats #ai

2 1 0 0
1 month ago
Preview
Introduction to Multi-Stage Image Build for Python This post introduces the Multi-Stage build approach for setting up a lightweight dockerized Python development environment.

๐Ÿ’ก Why it matters: smaller images โ†’ faster CI/CD โ†’ less storage & network cost โ†’ reduced attack surface โ†’ happier developers.

If you want to learn more, please check my tutorial about multi-stage build:

medium.com/data-science...

2 0 0 0
1 month ago

5๏ธโƒฃ Install Only What You Need

Separate dev dependencies from production deps.

Use flags like --no-dev or careful requirements files so you install only what your app actually needs at runtime.

2 0 1 0
1 month ago

4๏ธโƒฃ Use .dockerignore to Cut Build Context

Exclude unnecessary files (.git, logs, IDE folders, virtual environments) so Docker doesnโ€™t send them into the build context โ€” this keeps images lean and speeds up builds.

1 0 1 0
1 month ago

3๏ธโƒฃ Minimize Layers

Every RUN / COPY / ADD adds a layer.

โžก๏ธ Combine related commands with && to reduce layers and eliminate intermediate files (although you won't gain much size reduction).

Fewer layers = smaller image.

1 0 1 0
1 month ago

2๏ธโƒฃ Use Multi-Stage Builds (Big Win!)

Multi-stage builds let you install tools and build dependencies in one stage, then only copy whatโ€™s needed into a clean final image. This can reduce the size by 60-90% compared to single-stage builds.

1 0 1 0
1 month ago

1๏ธโƒฃ Choose a Lean Base Image

Start smaller:

โœ”๏ธ python:3.x-slim instead of the full Python image

โœ”๏ธ python:3.x-alpine if compatible with your dependencies (and you are a brave developer ๐Ÿ˜†)

Smaller base = smaller final image and faster pulls.

1 0 1 0
1 month ago

Are you working with Python inside Docker containers? Here's how you can make your images slimmer ๐Ÿณ๐Ÿงต๐Ÿ‘‡๐Ÿผ

#python #docker #mlops

7 1 1 0
1 month ago
Preview
Pandas 3 Release, Machine Learning Systems & New Tutorials | Issue 72 Learn whatโ€™s new with Pandas 3, get ML systems insights, and explore top tutorials on JAX, FastAPI, and more in this curated data science roundup.

My weekly newsletter is out!

Open source: Pandas 3 release
New tutorials
New book: Introduction to Machine Learning Systems by Prof. Vijay Janapa Reddi

ramikrispin.substack.com/p/pandas-3-i...

#ai #python #machinelearning

4 0 0 0
1 month ago
pandas - Python Data Analysis Library

Pandas 3 is out! ๐Ÿ‘‡๐Ÿผ

pandas.pydata.org/community/bl...

Fun fact - pandas stands for PANel DAta and Spython.

#python #data

12 1 0 0
1 month ago
YouTube
Python FastAPI Tutorial (Part 1): Getting Started - Web App + REST API YouTube video by Corey Schafer

Getting started with FastAPI ๐Ÿ‘‡๐Ÿผ

www.youtube.com/watch?v=7AMj...

3 1 1 0
1 month ago
YouTube
Why JAX and Flax NNX? YouTube video by Google for Developers

Introduction to JAX and Flax NNX - the framework behind Google Gemini ๐Ÿ‘‡๐Ÿผ

www.youtube.com/watch?v=fcX0...

7 0 0 0
1 month ago
Preview
Statistical Analysis with Python, SQLGlot & MIT Deep Learning | Issue 71 A weekly curated update on data science and engineering topics and resources.

My weekly newsletter is out ๐Ÿ‘‡๐Ÿผ

Project: SQLGlot
New tutorials
Book: Statistical Analysis with Python

ramikrispin.substack.com/p/statistica...

#datascience #python #ai

4 0 0 0
1 month ago
YouTube
This Bash Trick Makes cd Much More Useful! YouTube video by Learn Linux TV

This is super cool ๐Ÿ‘‡๐Ÿผ

www.youtube.com/watch?v=DsmK...

4 0 0 0
1 month ago
Preview
Automate Change Point Detection in Time Series with Piecewise Regression A practical grid search approach for detecting trend changes in time series data

This tutorial is also available on Medium for subscribers:
medium.com/p/2abc6c9309c6

1 0 0 0
2 months ago

And we're live, Lecture A1 is online. Introduction to Bayesian workflow, generative models, estimands, estimators, estimates, error checking, beginnings of probability theory and Bayesian updating. www.youtube.com/watch?v=ztbY...

199 64 2 5
2 months ago
Post image

Here is an illustration of a stateless AI app ๐Ÿ‘‡๐Ÿผ

3 0 0 0