You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/feature_selection.md
+75-50Lines changed: 75 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,47 +1,45 @@
1
-
# Feature Selection in Keras Data Processor
1
+
# 🎯 Feature Selection in KDP
2
2
3
-
The Keras Data Processor includes a sophisticated feature selection mechanism based on the Gated Residual Variable Selection Network (GRVSN) architecture. This document explains the components, usage, and benefits of this feature.
3
+
## 📚 Overview
4
4
5
-
## Overview
5
+
KDP includes a sophisticated feature selection mechanism based on the Gated Residual Variable Selection Network (GRVSN) architecture. This powerful system automatically learns and selects the most important features in your data.
6
6
7
-
The feature selection mechanism uses a combination of gated units and residual networks to automatically learn the importance of different features in your data. It can be applied to both numeric and categorical features, either independently or together.
7
+
## 🧩 Core Components
8
8
9
-
##Components
9
+
### 1. 🔀 GatedLinearUnit
10
10
11
-
### 1. GatedLinearUnit
12
-
13
-
The `GatedLinearUnit` is the basic building block that implements a gated activation function:
11
+
The foundation of our feature selection system:
14
12
15
13
```python
16
14
gl = GatedLinearUnit(units=64)
17
15
x = tf.random.normal((32, 100))
18
16
y = gl(x)
19
17
```
20
18
21
-
Key features:
22
-
-Applies a linear transformation followed by a sigmoid gate
23
-
-Selectively filters input data based on learned weights
24
-
- Helps control information flow through the network
19
+
**Key Features:**
20
+
* 🔄 Applies linear transformation with sigmoid gate
21
+
* 🎛️ Selectively filters input data
22
+
* 🔍 Controls information flow through the network
25
23
26
-
### 2. GatedResidualNetwork
24
+
### 2. 🏗️ GatedResidualNetwork
27
25
28
-
The `GatedResidualNetwork` combines gated linear units with residual connections:
0 commit comments