Deep Neural Network as SQL+Python
Date: 2025.01.19
Location: Online
Part of PyWeb
Schedule
18:00
Deep Neural Network as SQL+Python by
Netanel Stern
Language: Hebrew
Length: 20 min
Short Outline: DNN with SQL + Python using Built-in SQL Functions
- Data Preprocessing in SQL:
- Use SQL's built-in functions (SUM(), AVG(), ROUND(), etc.) to perform calculations directly in the database.
- Fetch Processed Data in Python:
- Execute SQL queries with processed results using libraries like pandas and sqlalchemy.
- Feature Preparation in Python:
- Split the SQL output into features (X) and targets (y), normalize data, and handle missing values.
- Build and Train DNN Model:
- Create a neural network with libraries like TensorFlow/PyTorch.
- Train using preprocessed features as input.
- Store Results in SQL:
- Save predictions or results back into the database for further analysis.