“I had the distinct privilege of managing Jason Katz as his Director of Engineering, AI for a few years. From day one, Jason stood out as an incredibly driven and hard-working engineer. His technical brilliance and consistent, high-leverage contributions quickly established him as one of the few true 10X engineers on the team. He has a rare combination of deep technical skill and the relentless energy to turn complex ideas into robust, scalable systems. Beyond his individual impact, I've watched Jason undergo tremendous growth as a leader. He naturally began to mentor his colleagues, take ownership of critical projects, and set an exceptional standard for quality and velocity. His ability to guide others and drive complex initiatives to completion shows that he has matured into an outstanding technical leader. Any organization would be exceptionally fortunate to have an engineer and leader of Jason's caliber. I highly recommend him without reservation.”
About
Services
Activity
-
Pretty amazed to see what’s all l̶e̶a̶k̶e̶d̶ coming next for Claude Code. Feels like OpenAI and Google may have got a head start on coding…
Pretty amazed to see what’s all l̶e̶a̶k̶e̶d̶ coming next for Claude Code. Feels like OpenAI and Google may have got a head start on coding…
Liked by Jason Katz
-
A PSA, and a warning: Sometime around Opus 4.6, AI became a legitimate thought partner. If you're writing a PRD, a strategy doc, an org change, or…
A PSA, and a warning: Sometime around Opus 4.6, AI became a legitimate thought partner. If you're writing a PRD, a strategy doc, an org change, or…
Liked by Jason Katz
-
You can’t ask for respect. You can’t buy it. You can only earn it. 20 behaviors that will make others respect you more: ♻️ Repost if these ideas…
You can’t ask for respect. You can’t buy it. You can only earn it. 20 behaviors that will make others respect you more: ♻️ Repost if these ideas…
Liked by Jason Katz
Experience & Education
Licenses & Certifications
-
-
-
-
-
-
-
-
-
-
Statistical Thinking in Python (Part 2)
DataCamp
Credential ID 9049357ec6533e8dacfb907902ec6ad867b1708a
Publications
-
Part II: Using A.I to Combat Fake News Modeling Update
Towards Data Science
-
Part III: Using A.I to Combat Fake News Final Model
Towards Data Science
See publicationSummarizing project process and final model creation
-
Using A.I. to Combat Fake News
Towards Data Science
Exploring machine learning and NLP uses to automate the process of identifying fake news
Other authorsSee publication -
Part II: Bengali.AI Handwritten Grapheme Classification Model Enhancements
Towards Data Science
-
Part III: Bengali.AI Handwritten Grapheme Classification Final Model
Towards Data Science
Courses
-
Applied Regression Analysis
PHP 1511
-
Appropriate Technology
ENGN 0930A
-
Artificial Intelligence
CSCI 1410
-
Computer Science: Integrated Introduction
CSCI0170
-
Data Engineering
DATA 1050
-
Data Fluency for All
CSCI0100
-
Data Science
CSCI 1951A
-
Data Science: Machine Learning
PH125.8x
-
Data and Society
DATA 2080
-
Decision Theory: Foundations and Applications
PHIL1550
-
Deep Learning
CSCI 1470
-
Deep Learning and Special Topics in Data Science
DATA 2040
-
Directed Research
BIOL 1950
-
Hands-on Data Science
DATA 1030
-
Honors Calculus
MATH0350
-
Individual Independent Study
CSCI 1970
-
Intermed Microeconomics(Math)
ECON1130
-
Intro to Scientific Computing
APMA0160
-
Introduction to Cognitive Science
CLPS0200
-
Introduction to Modelling
APMA 0200
-
Linear Algebra
MATH0520
-
Logic
PHIL0540
-
Making Decisions
CLPS 0220
-
Methods of Applied Math I + II
APMA0340
-
Methods of Applied Mathematics I, II
APMA0330
-
Operations Research : Probabilistic Methods
APMA 1200
-
Operations Research: Deterministic Models
APMA1210
-
Principles of Biostatistics and Data Analysis
PHP1510
-
Principles of Economics
ECON0110
-
Quantitative Methods in Psychology
CLPS0900
-
Reality Remix-Experimental VR
DATA 1200
-
Sports in American Society
AMST1600D
-
Statistical Inference
APMA1650
-
Statistical Inference II
APMA1660
-
Statistical Learning
DATA 2020
-
Statistical Learning and Big Data
PHP 2650
-
Statistics is Everywhere
PHP0100
-
The Digital World
CSCI 0020
Projects
-
Connect Four
See projectImplementation of the game Connect Four. Running the script produces an interactive game of Connect Four (in terminal) where you can play against another person, or against an AI Player that has been designed to think five moves ahead. All code is in the functional programming language Ocaml.
-
NBA Hackathon
See projectThere were two questions that were asked for the 2017 NBA Hackathon:
The first question asked to determine the probability that a team who always has a 80% chance to win never loses back to back games during an 82 game season. I found the answer of this question to be 5.88%, the answer was calculated four different ways:
• Dynamic programming, to get the answer deterministically
• An approximation using a derived formula
• An approximation using large scale simulation
• A…There were two questions that were asked for the 2017 NBA Hackathon:
The first question asked to determine the probability that a team who always has a 80% chance to win never loses back to back games during an 82 game season. I found the answer of this question to be 5.88%, the answer was calculated four different ways:
• Dynamic programming, to get the answer deterministically
• An approximation using a derived formula
• An approximation using large scale simulation
• A clever use of pascal's triangles to find the exact probability
The second question asked to find the exact date that each team was mathematically eliminated from playoff contention using the previous season's regular season results and all playoff tie breaking procedures. Using an object oriented approach, I was able to get the correct results. Code and further explanation available on Github. -
NBA Shots Interactive Web App
See projectGithub Repo:
https://github.com/jasonk33/NBA-Shots-Interactive-Web-App
Using R, I analyzed data from 10,000 NBA shots. The goal of the project was to model and predict field goal percentage. I discovered trends to increase field goal percentage by up to 20%. Using the Caret package, I performed high-level feature and model selection to create a Naive Bayes model that predicted shot precision with 65% accuracy. I created various visualizations to effectively display how field goal…Github Repo:
https://github.com/jasonk33/NBA-Shots-Interactive-Web-App
Using R, I analyzed data from 10,000 NBA shots. The goal of the project was to model and predict field goal percentage. I discovered trends to increase field goal percentage by up to 20%. Using the Caret package, I performed high-level feature and model selection to create a Naive Bayes model that predicted shot precision with 65% accuracy. I created various visualizations to effectively display how field goal percentage varied. I also used the package Shiny to build an interactive web tool to help coaches easily manipulate variables to see how effective shots were in different shooting zones. The tool can be accessed at:
https://jasonk33.shinyapps.io/NBA_Field_Goals/ -
MLB Data Analysis
Using R, I performed analysis on data from all MLB games dating backing to 1871. The project entailed heavy data cleaning, data manipulation, and the creation of several visualizations and predictive models. Visualizations include bar graphs to represent the home field advantage and road attendacne affects of each team, as well as a parcoord graph to display the relationship between various team statistics and overall team run production. Naive Bayes models were created to predict whether a…
Using R, I performed analysis on data from all MLB games dating backing to 1871. The project entailed heavy data cleaning, data manipulation, and the creation of several visualizations and predictive models. Visualizations include bar graphs to represent the home field advantage and road attendacne affects of each team, as well as a parcoord graph to display the relationship between various team statistics and overall team run production. Naive Bayes models were created to predict whether a team had won and how many runs a team had scored based on statsitcs from the game.
Results from the project can be viewed at: http://rpubs.com/jasonk33/237691
Data was acquired from retrosheet.orgOther creators -
-
Predicting Stock Price Direction Using Neural Networks
-
See project• Acquired trading data with Google Finance API
• Utilized NumPy and Pandas to create momentum based performance metrics
• Constructed a deep neural network using TensorFlow to predict whether a stock price would rise or fall over a given time period -
An Application of Markov Chains in Sports Rankings
-
See projectThere are many different ranking methods that can be used to predict the outcome of different sporting events. The focus of this project is the use of Markov chains for ranking teams in the NBA playoffs. The goal is to use the Markov method to make more accurate predictions of the outcomes of the playoffs based off of regular season performances than the NBA’s general rankings.
-
Data Science Job Scraping
-
See projectIn this project, all 20,000 data science jobs from Glassdoor were scraped and used to perform in depth analysis into the job market for data science. Individual skills, software, and qualification were analyzed using frequency and associated salaries to determine the value of different attributes from the point of view of the employer. A paper was also produced and is under review for publication at the Data Science Journal.
-
OpenML Machine Learning Evaluation
-
See project
This project utilized the vast amount of data on OpenML to get insights into what methods for machine learning produce the most accurate classifiers. OpenML is a platform where people use different datasets and machine learning methods for classification tasks. The results from all the user uploaded runs are stored and made available for others to view. Analysis into which sklearn and weka primitives are the most accurate across the data was conducted. Additionally, dataset features based…
This project utilized the vast amount of data on OpenML to get insights into what methods for machine learning produce the most accurate classifiers. OpenML is a platform where people use different datasets and machine learning methods for classification tasks. The results from all the user uploaded runs are stored and made available for others to view. Analysis into which sklearn and weka primitives are the most accurate across the data was conducted. Additionally, dataset features based on metadata were created and used to cluster datasets using kmeans. Analysis of how different types of datasets respond to different machine learning methods was investigated. -
A Julia Package for the CAOS Algorithm
-
See projectFor this project, an official Julia package was created for the implementation of the CAOS algorithm (Characteristic Attribute Organization System). Testing was also conducted on the entire mitochondrial gene set to validate the algorithm.
For more information, view the official paper here:
https://drive.google.com/file/d/1LQLdC5V-aD703zsUSA7S8b9ImGdZi_cC/view?usp=sharing
and the poster presentation…For this project, an official Julia package was created for the implementation of the CAOS algorithm (Characteristic Attribute Organization System). Testing was also conducted on the entire mitochondrial gene set to validate the algorithm.
For more information, view the official paper here:
https://drive.google.com/file/d/1LQLdC5V-aD703zsUSA7S8b9ImGdZi_cC/view?usp=sharing
and the poster presentation here:
https://drive.google.com/file/d/1jdNZGQ8Ak63_RPPrqTYTyyt-lRshJfvQ/view?usp=sharing
Honors & Awards
-
Joukowsky Scholar-Athlete Award
Brown University
The award is presented annually to two Brown students (one male and one female) who embody the best qualities of the scholar athlete by achieving success in both the classroom and in athletic competition—a reflection of Brown’s commitment to the totality of individual accomplishment.
-
Academic All-Ivy
Ivy League Athletics
Winter 2019
https://ivyleague.com/news/2019/4/11/general-academic-all-ivy-winter.aspx -
First Team All Ivy League 2019 (Long Jump)
Ivy League Track and Field
-
First Team All Ivy League 2018 (Long Jump)
Ivy League Track & Field
-
Second Team All Ivy League 2018 (Triple Jump)
Ivy League Track & Field
Languages
-
English
Native or bilingual proficiency
-
Spanish
Elementary proficiency
Recommendations received
12 people have recommended Jason
Join now to viewMore activity by Jason
-
Most underrated Claude Code feature: Preferred output style. AI doesn't need to hamper your learning if you don't want it to. We all operate in…
Most underrated Claude Code feature: Preferred output style. AI doesn't need to hamper your learning if you don't want it to. We all operate in…
Liked by Jason Katz
-
Claude Code reminds me of my kids at times. It heard me. It understood me. It's doing its own thing anyway. 🤷🏻♂️ Andrej Karpathy (co-founder of…
Claude Code reminds me of my kids at times. It heard me. It understood me. It's doing its own thing anyway. 🤷🏻♂️ Andrej Karpathy (co-founder of…
Liked by Jason Katz
-
The fastest growing GitHub projects this week: 1. garrytan/gstack (+3.6K stars) YC president Garry Tan open-sourced his exact Claude Code setup. 18…
The fastest growing GitHub projects this week: 1. garrytan/gstack (+3.6K stars) YC president Garry Tan open-sourced his exact Claude Code setup. 18…
Liked by Jason Katz
-
Companies aren't just laying people off due to AI. They're removing entire levels. Your next promotion might not work the way you think. There's a…
Companies aren't just laying people off due to AI. They're removing entire levels. Your next promotion might not work the way you think. There's a…
Liked by Jason Katz
-
This is the real rich life. Don’t buy into the consumerism the world wants you to.
This is the real rich life. Don’t buy into the consumerism the world wants you to.
Liked by Jason Katz
-
I stopped hitting my Claude Code Pro limits mid-session. The fix wasn't a smaller model or upgrading plan - it was 30 seconds of setup and zero…
I stopped hitting my Claude Code Pro limits mid-session. The fix wasn't a smaller model or upgrading plan - it was 30 seconds of setup and zero…
Liked by Jason Katz
-
Claude Code is my MVP, and here's my top advice I wish I'd known sooner: 1️⃣ Create a stellar Claude.MD file: The markdown file is the set of…
Claude Code is my MVP, and here's my top advice I wish I'd known sooner: 1️⃣ Create a stellar Claude.MD file: The markdown file is the set of…
Liked by Jason Katz
-
At the risk of sounding like a broken record, I'll repeat what I've said before. “Vibe coding” is a dangerous fantasy for code that ships to…
At the risk of sounding like a broken record, I'll repeat what I've said before. “Vibe coding” is a dangerous fantasy for code that ships to…
Liked by Jason Katz
-
Dear Developers: Here's how to get the most of your Claude MD file Here are 10 insights from building Claude Code projects the right way: P.S. My…
Dear Developers: Here's how to get the most of your Claude MD file Here are 10 insights from building Claude Code projects the right way: P.S. My…
Liked by Jason Katz
-
How good is Claude Code at reviewing real-world code? I ran a small experiment using historical PRs from a LinkedIn repository. For each case, I…
How good is Claude Code at reviewing real-world code? I ran a small experiment using historical PRs from a LinkedIn repository. For each case, I…
Liked by Jason Katz
-
People ask me what ML Engineers do. They imagine training models, tuning hyperparameters, running experiments. But If I look at day to day of my…
People ask me what ML Engineers do. They imagine training models, tuning hyperparameters, running experiments. But If I look at day to day of my…
Liked by Jason Katz
Other similar profiles
Explore top content on LinkedIn
Find curated posts and insights for relevant topics all in one place.
View top content