Accelerating Data Science through Feature Platform, Transformers and GenAI

FeatureByte
Accelerating Data Science
through Feature Platform,
Transformers and GenAI
Sept 2023
Xavier Conort
with the help of Google Bard, ChatGPT and FeatureByte!
FeatureByte
Agenda
2
● Define feature engineering
● The features I like to extract from transactional data
● Why feature engineering can be hard
● Pain points solved by Feature Platforms
● The magic of Transformers
● How Generative AI helped FeatureByte build a context-aware
automated feature ideation
FeatureByte
A little about me
3
Actuary
Learnt to formulate
mathematically
insurance problems and
solved them with data.
Kaggle addict
Learnt to have fun with
data.
Chief Data Scientist,
DataRobot
Learnt to codify best practices.
Co-founder,
FeatureByte
Solving remaining pain points
and planning to have fun with
data again!
FeatureByte
Define feature
engineering
FeatureByte 5
FeatureByte
2 types of features
6
1. Transformed features:
a. combine columns, binning…
b. model specific: scaling, one-hot encoding, embedding, reducing, …
2. Features from raw data:
a. From regular time series
b. From transactional data
c. From slowly changing dimension tables
Well covered by books and blogs, well supported by
tools like sklearn and automated by Auto-ML
Pretty well covered by books and blogs and
automated by Auto-ML, TS package or deep learning
The most exciting but challenging feature
engineering task.
FeatureByte
The features I like to
extract from
transactional data
FeatureByte 8
across a variety of signal types and entities associated with the use case
1. Attribute: gets the attribute of the entity at a point-in-time
2. Frequency: counts the occurrence of events
3. Recency: measures the time since the latest event
4. Timing: relates to when the events happened
5. Latest event: attributes of the latest event
6. Stats: aggregates a numeric column's values
7. Diversity: measures the variability of data values
8. Stability: compares recent events to those of earlier periods
9. Similarity: compares an individual entity feature to a group
10. Most frequent: gets the most frequent value of a categorical column
11. Bucketing: aggregates a column's values across categories of a categorical column.
12. Attribute stats: collects stats for an attribute of the entity
13. Attribute change: measures the occurrence or magnitude of changes to slowly changing attributes
14. Location…
The MEANINGFUL ones!
FeatureByte 9
Dimension table with
static description on
products
Item table with details on
purchased products in
customer invoices
Event table
where each
row indicates
an invoice in a
Grocery shop
Slowly Changing Dimension table that contains
data on customers that change over time.
Simple example of transaction data: A Grocery Dataset
FeatureByte 10
Invoice x Similarity
Customer x Diversity
Customer x Attribute change
Customer x Similarity
FeatureByte 11
Customer x Timing
Features inspired by Owen Zhang, Kaggle
Grandmaster
FeatureByte 12
More than 100 examples in the tutorials of FeatureByte’s free and
source available package
FeatureByte
Why feature
engineering can be hard
FeatureByte
Feature Engineering with transactional data is Complex and Challenging
14
1. Transactional data can be
XXXL
2. Feature space can be
infinite
3. High risk of time leakage
and training-serving
inconsistencies: need to be
point-in-time accurate
4. Feature engineering
strategy varies with the
data semantics
5. Garbage-in Garbage-out
FeatureByte
3 skills come into play
15
DOMAIN
EXPERTISE
DATA
ENGINEERING
DATA
SCIENCE
DW
SAAS
SOURCES
MODEL
TRAINING
MODEL
PREDICTION
STREAMING
FeatureByte
… while 3 innovations are already radically simplifying the effort
16
DOMAIN
EXPERTISE
DATA
ENGINEERING
DATA
SCIENCE
Generative AI is
getting close to
emulate a
Domain Expert
Feature
Platforms are
simplifying data
engineering
Off the Shelf
Transformers are
revolutionizing NLP
FeatureByte
Pain points solved by
feature platforms
FeatureByte 18
Pain Point How a Feature Platform is addressing it
High latency in feature computation Pre-computes features and stores them in
an online store for low latency
Disappointing production accuracy caused
by inconsistency of feature values between
training and production
Ensures point-in-time correctness and
training-serving consistency
Code for efficient time travel operations in
SQL is complex
Declarative framework in Python to simplify
the creation of features
Waiting to experiment with our new feature
ideas can be frustrating
Automated backfilling to compute features at
any point in time in the past
Painful search for existing features Feature Catalog to share and reuse features
Uncertainties when our new features will be
finally deployed
Unified solution to ensure smooth transition
from experimentation to deployment
FeatureByte
The magic of
Transformers
FeatureByte 20
FeatureByte
What do I think about Transformers?
21
1. As a scientist: they are beautiful.
2. As a data scientist: they are awesome.
3. As a MLOps engineer: another transformation to operationalize.
4. As a product manager: they are opening up new horizons!
FeatureByte
Immediate benefits of Transformers
22
1. Radically simplify a complex task (NLP)
2. In many cases, don’t need any training for great outcomes! Can be used off
the shelf to transform raw text columns of transactional data:
a. Text embedding,
b. Name Entity Recognition,
c. Sentiment analysis,
d. Keyword extraction,
e. Extract specific information in a table structure…
3. I just need to aggregate the outputs in a meaningful way
FeatureByte
Do I still need Feature Platforms for Transformers?
23
Feature Platforms can improve Transformers operationalization
1. Point-in-Time correctness
2. Low latency thanks to the pre-computation of features that involve
transformers
3. Caching (via partial aggregations or other mechanisms) to reduce expensive
transformer calls
4. Transformer Library
FeatureByte
Can Deep Learning also replace traditional feature engineering?
24
Maybe in the future, but less magic expected…
1. I have not seen anything convincing yet apart from:
a. regular time series
b. sequences of event (successful results for recommendation system)
2. If solutions emerge, it won’t be pre-trained Off the Shelf Transformers like
for NLP and you will need a lot of data to train them to get meaningful
results.
3. And for many of us, it may not pass the model validation process:
a. not explainable enough
b. and maybe not robust enough if your data is not XXXL
FeatureByte 25
"Semantics is to artificial intelligence as physics is
to engineering."
John McCarthy, considered to be one of the most important figures in the
history of artificial intelligence
"Creativity is just connecting things."
Steve Jobs
So why do I think Transformers are revolutionary?
FeatureByte
How Generative AI can
help feature
engineering
FeatureByte
Areas where Generative AI is already doing great
27
Generative AI:
1. is already very familiar with data modeling concepts
2. can recognize the semantic of the data columns well beyond numeric and
string if meaningful names or good descriptions are provided
3. already possesses deep domain knowledge that can help
a. take some important decisions in the feature engineering process
b. assess how relevant a feature is to a use case
FeatureByte
How FeatureByte’s Copilot is currently leveraging GenAI
28
Description of Data
(tables, columns, entities)
Data Semantics &
Domain Insights
Feature Ideation
Engine
Feature code &
descriptions
Relevance Score
and Explanation
GenAI GenAI
Context-aware
Feature suggestions
Description of Use Case
(domain, context, target)
that are interpretable and
relevant! And editable.
FeatureByte 29
FeatureByte
Generative AI is already
familiar with data
modeling concepts
FeatureByte
Knows best practices
31
FeatureByte
Knows what is an entity which is a key concept in feature engineering
32
FeatureByte
Generative AI can
recognize data columns
semantics
FeatureByte
Make the difference between different types of numeric columns
34
FeatureByte
Generative AI can help
design your feature
engineering strategy
FeatureByte
Example: Can recommend strategy to filter data
36
FeatureByte
Generative AI can
assess the feature
relevance to a use case
FeatureByte
Plain English explanation
38
FeatureByte
… even for complex features
39
FeatureByte
… and is sharing its domain knowledge during the process
40
FeatureByte
Conclusion
FeatureByte
The 3 innovations are accelerating Data Science by
42
1. Reducing time-to-value thanks to:
a. quicker experimentation, and smooth transition to deployment
2. Increasing production accuracy thanks to:
a. training / serving consistency
b. transformers
c. context aware feature generation
3. Increasing Transparency thanks to:
a. Plain English descriptions of features
b. Relevance explanations to a use case
FeatureByte
and are opening up new horizons
43
New opportunities to:
● bridge the gap between features and non-technical stakeholders and
contribute to better Model Explainability and stronger regulation
● boost your creativity and domain knowledge
● build solutions and not only models!
● and more time to explore other advanced solutions like causal modelling +
A/B testing that may be better addressing your use cases
FeatureByte
Thanks!
If you are curious to know more about Featurebyte
White Paper on FeatureByte Copilot
Video of FeatureByte Enterprise
Github Repo of the free and source available engine: https://github.com/featurebyte/featurebyte
Documentation: https://docs.featurebyte.com/0.5/
1 von 44

Recomendados

Accelerating Data Science through Feature Platform, Transformers, and GenAI von
Accelerating Data Science through Feature Platform, Transformers, and GenAIAccelerating Data Science through Feature Platform, Transformers, and GenAI
Accelerating Data Science through Feature Platform, Transformers, and GenAIFeatureByte
189 views46 Folien
Streamlining Data Science Workflows with a Feature Catalog von
Streamlining Data Science Workflows with a Feature CatalogStreamlining Data Science Workflows with a Feature Catalog
Streamlining Data Science Workflows with a Feature CatalogGoDataDriven
124 views21 Folien
Considerations for Abstracting Complexities of a Real-Time ML Platform, Zhenz... von
Considerations for Abstracting Complexities of a Real-Time ML Platform, Zhenz...Considerations for Abstracting Complexities of a Real-Time ML Platform, Zhenz...
Considerations for Abstracting Complexities of a Real-Time ML Platform, Zhenz...HostedbyConfluent
315 views40 Folien
Scaling & Transforming Stitch Fix's Visibility into What Folks will love von
Scaling & Transforming Stitch Fix's Visibility into What Folks will loveScaling & Transforming Stitch Fix's Visibility into What Folks will love
Scaling & Transforming Stitch Fix's Visibility into What Folks will loveJune Andrews
76 views43 Folien
Agile Mumbai 2022 - Rohit Handa | Combining Human and Artificial Intelligence... von
Agile Mumbai 2022 - Rohit Handa | Combining Human and Artificial Intelligence...Agile Mumbai 2022 - Rohit Handa | Combining Human and Artificial Intelligence...
Agile Mumbai 2022 - Rohit Handa | Combining Human and Artificial Intelligence...AgileNetwork
12 views21 Folien
Simplify Feature Engineering in Your Data Warehouse von
Simplify Feature Engineering in Your Data WarehouseSimplify Feature Engineering in Your Data Warehouse
Simplify Feature Engineering in Your Data WarehouseFeatureByte
64 views28 Folien

Más contenido relacionado

Similar a Accelerating Data Science through Feature Platform, Transformers and GenAI

How we integrate Machine Learning Algorithms into our IT Platform at Outfittery von
How we integrate Machine Learning Algorithms into our IT Platform at OutfitteryHow we integrate Machine Learning Algorithms into our IT Platform at Outfittery
How we integrate Machine Learning Algorithms into our IT Platform at OutfitteryOUTFITTERY
1.6K views81 Folien
Feature store: Solving anti-patterns in ML-systems von
Feature store: Solving anti-patterns in ML-systemsFeature store: Solving anti-patterns in ML-systems
Feature store: Solving anti-patterns in ML-systemsAndrzej Michałowski
2.5K views30 Folien
Ml ops and the feature store with hopsworks, DC Data Science Meetup von
Ml ops and the feature store with hopsworks, DC Data Science MeetupMl ops and the feature store with hopsworks, DC Data Science Meetup
Ml ops and the feature store with hopsworks, DC Data Science MeetupJim Dowling
498 views42 Folien
BSSML16 L10. Summary Day 2 Sessions von
BSSML16 L10. Summary Day 2 SessionsBSSML16 L10. Summary Day 2 Sessions
BSSML16 L10. Summary Day 2 SessionsBigML, Inc
303 views29 Folien
Continuum Analytics and Python von
Continuum Analytics and PythonContinuum Analytics and Python
Continuum Analytics and PythonTravis Oliphant
4.7K views94 Folien
Practical data science von
Practical data sciencePractical data science
Practical data scienceDing Li
142 views41 Folien

Similar a Accelerating Data Science through Feature Platform, Transformers and GenAI(20)

How we integrate Machine Learning Algorithms into our IT Platform at Outfittery von OUTFITTERY
How we integrate Machine Learning Algorithms into our IT Platform at OutfitteryHow we integrate Machine Learning Algorithms into our IT Platform at Outfittery
How we integrate Machine Learning Algorithms into our IT Platform at Outfittery
OUTFITTERY1.6K views
Ml ops and the feature store with hopsworks, DC Data Science Meetup von Jim Dowling
Ml ops and the feature store with hopsworks, DC Data Science MeetupMl ops and the feature store with hopsworks, DC Data Science Meetup
Ml ops and the feature store with hopsworks, DC Data Science Meetup
Jim Dowling498 views
BSSML16 L10. Summary Day 2 Sessions von BigML, Inc
BSSML16 L10. Summary Day 2 SessionsBSSML16 L10. Summary Day 2 Sessions
BSSML16 L10. Summary Day 2 Sessions
BigML, Inc303 views
Practical data science von Ding Li
Practical data sciencePractical data science
Practical data science
Ding Li142 views
Serverless machine learning architectures at Helixa von Data Science Milan
Serverless machine learning architectures at HelixaServerless machine learning architectures at Helixa
Serverless machine learning architectures at Helixa
Data Science Milan259 views
Applying linear regression and predictive analytics von MariaDB plc
Applying linear regression and predictive analyticsApplying linear regression and predictive analytics
Applying linear regression and predictive analytics
MariaDB plc249 views
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure von Fei Chen
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning InfrastructureML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
Fei Chen3.9K views
ODSC West 2022 – Kitbashing in ML von Bryan Bischof
ODSC West 2022 – Kitbashing in MLODSC West 2022 – Kitbashing in ML
ODSC West 2022 – Kitbashing in ML
Bryan Bischof81 views
Agile Data Rationalization for Operational Intelligence von Inside Analysis
Agile Data Rationalization for Operational IntelligenceAgile Data Rationalization for Operational Intelligence
Agile Data Rationalization for Operational Intelligence
Inside Analysis1.9K views
Digital_IOT_(Microsoft_Solution).pdf von ssuserd23711
Digital_IOT_(Microsoft_Solution).pdfDigital_IOT_(Microsoft_Solution).pdf
Digital_IOT_(Microsoft_Solution).pdf
ssuserd237114 views
Balancing Infrastructure with Optimization and Problem Formulation von Alex D. Gaudio
Balancing Infrastructure with Optimization and Problem FormulationBalancing Infrastructure with Optimization and Problem Formulation
Balancing Infrastructure with Optimization and Problem Formulation
Alex D. Gaudio847 views
Managers guide to effective building of machine learning products von Gianmario Spacagna
Managers guide to effective building of machine learning productsManagers guide to effective building of machine learning products
Managers guide to effective building of machine learning products
Gianmario Spacagna683 views
The Data Science Process - Do we need it and how to apply? von Ivo Andreev
The Data Science Process - Do we need it and how to apply?The Data Science Process - Do we need it and how to apply?
The Data Science Process - Do we need it and how to apply?
Ivo Andreev6K views
The Art Of Performance Tuning - with presenter notes! von Jonathan Ross
The Art Of Performance Tuning - with presenter notes!The Art Of Performance Tuning - with presenter notes!
The Art Of Performance Tuning - with presenter notes!
Jonathan Ross111 views
DIGITAL DESIGN THROUGH VERILOG von Aliyahh King
DIGITAL DESIGN THROUGH VERILOGDIGITAL DESIGN THROUGH VERILOG
DIGITAL DESIGN THROUGH VERILOG
Aliyahh King5 views
Data Engineer's Lunch #85: Designing a Modern Data Stack von Anant Corporation
Data Engineer's Lunch #85: Designing a Modern Data StackData Engineer's Lunch #85: Designing a Modern Data Stack
Data Engineer's Lunch #85: Designing a Modern Data Stack
Anant Corporation151 views
Doing Analytics Right - Building the Analytics Environment von Tasktop
Doing Analytics Right - Building the Analytics EnvironmentDoing Analytics Right - Building the Analytics Environment
Doing Analytics Right - Building the Analytics Environment
Tasktop144 views

Último

CryptoBotsAI von
CryptoBotsAICryptoBotsAI
CryptoBotsAIchandureddyvadala199
42 views5 Folien
Bronack Skills - Risk Management and SRE v1.0 12-3-2023.pdf von
Bronack Skills - Risk Management and SRE v1.0 12-3-2023.pdfBronack Skills - Risk Management and SRE v1.0 12-3-2023.pdf
Bronack Skills - Risk Management and SRE v1.0 12-3-2023.pdfThomasBronack
31 views31 Folien
Initiating and Advancing Your Strategic GIS Governance Strategy von
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategySafe Software
198 views68 Folien
Netmera Presentation.pdf von
Netmera Presentation.pdfNetmera Presentation.pdf
Netmera Presentation.pdfMustafa Kuğu
22 views50 Folien
LLMs in Production: Tooling, Process, and Team Structure von
LLMs in Production: Tooling, Process, and Team StructureLLMs in Production: Tooling, Process, and Team Structure
LLMs in Production: Tooling, Process, and Team StructureAggregage
65 views77 Folien
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... von
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Moses Kemibaro
38 views38 Folien

Último(20)

Bronack Skills - Risk Management and SRE v1.0 12-3-2023.pdf von ThomasBronack
Bronack Skills - Risk Management and SRE v1.0 12-3-2023.pdfBronack Skills - Risk Management and SRE v1.0 12-3-2023.pdf
Bronack Skills - Risk Management and SRE v1.0 12-3-2023.pdf
ThomasBronack31 views
Initiating and Advancing Your Strategic GIS Governance Strategy von Safe Software
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
Safe Software198 views
LLMs in Production: Tooling, Process, and Team Structure von Aggregage
LLMs in Production: Tooling, Process, and Team StructureLLMs in Production: Tooling, Process, and Team Structure
LLMs in Production: Tooling, Process, and Team Structure
Aggregage65 views
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... von Moses Kemibaro
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Moses Kemibaro38 views
Digital Personal Data Protection (DPDP) Practical Approach For CISOs von Priyanka Aash
Digital Personal Data Protection (DPDP) Practical Approach For CISOsDigital Personal Data Protection (DPDP) Practical Approach For CISOs
Digital Personal Data Protection (DPDP) Practical Approach For CISOs
Priyanka Aash171 views
Measurecamp Brussels - Synthetic data.pdf von Human37
Measurecamp Brussels - Synthetic data.pdfMeasurecamp Brussels - Synthetic data.pdf
Measurecamp Brussels - Synthetic data.pdf
Human37 27 views
"Node.js vs workers — A comparison of two JavaScript runtimes", James M Snell von Fwdays
"Node.js vs workers — A comparison of two JavaScript runtimes", James M Snell"Node.js vs workers — A comparison of two JavaScript runtimes", James M Snell
"Node.js vs workers — A comparison of two JavaScript runtimes", James M Snell
Fwdays14 views
"Node.js Development in 2024: trends and tools", Nikita Galkin von Fwdays
"Node.js Development in 2024: trends and tools", Nikita Galkin "Node.js Development in 2024: trends and tools", Nikita Galkin
"Node.js Development in 2024: trends and tools", Nikita Galkin
Fwdays37 views
Future of AR - Facebook Presentation von Rob McCarty
Future of AR - Facebook PresentationFuture of AR - Facebook Presentation
Future of AR - Facebook Presentation
Rob McCarty66 views
Cocktail of Environments. How to Mix Test and Development Environments and St... von Aleksandr Tarasov
Cocktail of Environments. How to Mix Test and Development Environments and St...Cocktail of Environments. How to Mix Test and Development Environments and St...
Cocktail of Environments. How to Mix Test and Development Environments and St...
The Power of Generative AI in Accelerating No Code Adoption.pdf von Saeed Al Dhaheri
The Power of Generative AI in Accelerating No Code Adoption.pdfThe Power of Generative AI in Accelerating No Code Adoption.pdf
The Power of Generative AI in Accelerating No Code Adoption.pdf
Saeed Al Dhaheri44 views
Business Analyst Series 2023 - Week 4 Session 7 von DianaGray10
Business Analyst Series 2023 -  Week 4 Session 7Business Analyst Series 2023 -  Week 4 Session 7
Business Analyst Series 2023 - Week 4 Session 7
DianaGray10152 views
PCCC23:日本AMD株式会社 テーマ2「AMD EPYC™ プロセッサーを用いたAIソリューション」 von PC Cluster Consortium
PCCC23:日本AMD株式会社 テーマ2「AMD EPYC™ プロセッサーを用いたAIソリューション」PCCC23:日本AMD株式会社 テーマ2「AMD EPYC™ プロセッサーを用いたAIソリューション」
PCCC23:日本AMD株式会社 テーマ2「AMD EPYC™ プロセッサーを用いたAIソリューション」
NTGapps NTG LowCode Platform von Mustafa Kuğu
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform
Mustafa Kuğu474 views
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」 von PC Cluster Consortium
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... von The Digital Insurer
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...

Accelerating Data Science through Feature Platform, Transformers and GenAI

  • 1. FeatureByte Accelerating Data Science through Feature Platform, Transformers and GenAI Sept 2023 Xavier Conort with the help of Google Bard, ChatGPT and FeatureByte!
  • 2. FeatureByte Agenda 2 ● Define feature engineering ● The features I like to extract from transactional data ● Why feature engineering can be hard ● Pain points solved by Feature Platforms ● The magic of Transformers ● How Generative AI helped FeatureByte build a context-aware automated feature ideation
  • 3. FeatureByte A little about me 3 Actuary Learnt to formulate mathematically insurance problems and solved them with data. Kaggle addict Learnt to have fun with data. Chief Data Scientist, DataRobot Learnt to codify best practices. Co-founder, FeatureByte Solving remaining pain points and planning to have fun with data again!
  • 6. FeatureByte 2 types of features 6 1. Transformed features: a. combine columns, binning… b. model specific: scaling, one-hot encoding, embedding, reducing, … 2. Features from raw data: a. From regular time series b. From transactional data c. From slowly changing dimension tables Well covered by books and blogs, well supported by tools like sklearn and automated by Auto-ML Pretty well covered by books and blogs and automated by Auto-ML, TS package or deep learning The most exciting but challenging feature engineering task.
  • 7. FeatureByte The features I like to extract from transactional data
  • 8. FeatureByte 8 across a variety of signal types and entities associated with the use case 1. Attribute: gets the attribute of the entity at a point-in-time 2. Frequency: counts the occurrence of events 3. Recency: measures the time since the latest event 4. Timing: relates to when the events happened 5. Latest event: attributes of the latest event 6. Stats: aggregates a numeric column's values 7. Diversity: measures the variability of data values 8. Stability: compares recent events to those of earlier periods 9. Similarity: compares an individual entity feature to a group 10. Most frequent: gets the most frequent value of a categorical column 11. Bucketing: aggregates a column's values across categories of a categorical column. 12. Attribute stats: collects stats for an attribute of the entity 13. Attribute change: measures the occurrence or magnitude of changes to slowly changing attributes 14. Location… The MEANINGFUL ones!
  • 9. FeatureByte 9 Dimension table with static description on products Item table with details on purchased products in customer invoices Event table where each row indicates an invoice in a Grocery shop Slowly Changing Dimension table that contains data on customers that change over time. Simple example of transaction data: A Grocery Dataset
  • 10. FeatureByte 10 Invoice x Similarity Customer x Diversity Customer x Attribute change Customer x Similarity
  • 11. FeatureByte 11 Customer x Timing Features inspired by Owen Zhang, Kaggle Grandmaster
  • 12. FeatureByte 12 More than 100 examples in the tutorials of FeatureByte’s free and source available package
  • 14. FeatureByte Feature Engineering with transactional data is Complex and Challenging 14 1. Transactional data can be XXXL 2. Feature space can be infinite 3. High risk of time leakage and training-serving inconsistencies: need to be point-in-time accurate 4. Feature engineering strategy varies with the data semantics 5. Garbage-in Garbage-out
  • 15. FeatureByte 3 skills come into play 15 DOMAIN EXPERTISE DATA ENGINEERING DATA SCIENCE DW SAAS SOURCES MODEL TRAINING MODEL PREDICTION STREAMING
  • 16. FeatureByte … while 3 innovations are already radically simplifying the effort 16 DOMAIN EXPERTISE DATA ENGINEERING DATA SCIENCE Generative AI is getting close to emulate a Domain Expert Feature Platforms are simplifying data engineering Off the Shelf Transformers are revolutionizing NLP
  • 17. FeatureByte Pain points solved by feature platforms
  • 18. FeatureByte 18 Pain Point How a Feature Platform is addressing it High latency in feature computation Pre-computes features and stores them in an online store for low latency Disappointing production accuracy caused by inconsistency of feature values between training and production Ensures point-in-time correctness and training-serving consistency Code for efficient time travel operations in SQL is complex Declarative framework in Python to simplify the creation of features Waiting to experiment with our new feature ideas can be frustrating Automated backfilling to compute features at any point in time in the past Painful search for existing features Feature Catalog to share and reuse features Uncertainties when our new features will be finally deployed Unified solution to ensure smooth transition from experimentation to deployment
  • 21. FeatureByte What do I think about Transformers? 21 1. As a scientist: they are beautiful. 2. As a data scientist: they are awesome. 3. As a MLOps engineer: another transformation to operationalize. 4. As a product manager: they are opening up new horizons!
  • 22. FeatureByte Immediate benefits of Transformers 22 1. Radically simplify a complex task (NLP) 2. In many cases, don’t need any training for great outcomes! Can be used off the shelf to transform raw text columns of transactional data: a. Text embedding, b. Name Entity Recognition, c. Sentiment analysis, d. Keyword extraction, e. Extract specific information in a table structure… 3. I just need to aggregate the outputs in a meaningful way
  • 23. FeatureByte Do I still need Feature Platforms for Transformers? 23 Feature Platforms can improve Transformers operationalization 1. Point-in-Time correctness 2. Low latency thanks to the pre-computation of features that involve transformers 3. Caching (via partial aggregations or other mechanisms) to reduce expensive transformer calls 4. Transformer Library
  • 24. FeatureByte Can Deep Learning also replace traditional feature engineering? 24 Maybe in the future, but less magic expected… 1. I have not seen anything convincing yet apart from: a. regular time series b. sequences of event (successful results for recommendation system) 2. If solutions emerge, it won’t be pre-trained Off the Shelf Transformers like for NLP and you will need a lot of data to train them to get meaningful results. 3. And for many of us, it may not pass the model validation process: a. not explainable enough b. and maybe not robust enough if your data is not XXXL
  • 25. FeatureByte 25 "Semantics is to artificial intelligence as physics is to engineering." John McCarthy, considered to be one of the most important figures in the history of artificial intelligence "Creativity is just connecting things." Steve Jobs So why do I think Transformers are revolutionary?
  • 26. FeatureByte How Generative AI can help feature engineering
  • 27. FeatureByte Areas where Generative AI is already doing great 27 Generative AI: 1. is already very familiar with data modeling concepts 2. can recognize the semantic of the data columns well beyond numeric and string if meaningful names or good descriptions are provided 3. already possesses deep domain knowledge that can help a. take some important decisions in the feature engineering process b. assess how relevant a feature is to a use case
  • 28. FeatureByte How FeatureByte’s Copilot is currently leveraging GenAI 28 Description of Data (tables, columns, entities) Data Semantics & Domain Insights Feature Ideation Engine Feature code & descriptions Relevance Score and Explanation GenAI GenAI Context-aware Feature suggestions Description of Use Case (domain, context, target) that are interpretable and relevant! And editable.
  • 30. FeatureByte Generative AI is already familiar with data modeling concepts
  • 32. FeatureByte Knows what is an entity which is a key concept in feature engineering 32
  • 33. FeatureByte Generative AI can recognize data columns semantics
  • 34. FeatureByte Make the difference between different types of numeric columns 34
  • 35. FeatureByte Generative AI can help design your feature engineering strategy
  • 36. FeatureByte Example: Can recommend strategy to filter data 36
  • 37. FeatureByte Generative AI can assess the feature relevance to a use case
  • 39. FeatureByte … even for complex features 39
  • 40. FeatureByte … and is sharing its domain knowledge during the process 40
  • 42. FeatureByte The 3 innovations are accelerating Data Science by 42 1. Reducing time-to-value thanks to: a. quicker experimentation, and smooth transition to deployment 2. Increasing production accuracy thanks to: a. training / serving consistency b. transformers c. context aware feature generation 3. Increasing Transparency thanks to: a. Plain English descriptions of features b. Relevance explanations to a use case
  • 43. FeatureByte and are opening up new horizons 43 New opportunities to: ● bridge the gap between features and non-technical stakeholders and contribute to better Model Explainability and stronger regulation ● boost your creativity and domain knowledge ● build solutions and not only models! ● and more time to explore other advanced solutions like causal modelling + A/B testing that may be better addressing your use cases
  • 44. FeatureByte Thanks! If you are curious to know more about Featurebyte White Paper on FeatureByte Copilot Video of FeatureByte Enterprise Github Repo of the free and source available engine: https://github.com/featurebyte/featurebyte Documentation: https://docs.featurebyte.com/0.5/