tdubon commited on
Commit
eb2b838
1 Parent(s): 7492a93

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -5
README.md CHANGED
@@ -34,12 +34,13 @@ pipeline_tag: "structured-data-classification"
34
  ---
35
 
36
  #TensorFlow Decision Forests for structured data classification
37
- <br />
38
- #### Use TF's Gradient Boosted Trees model in binary classification of structured data
 
39
  * Build a decision forests model by specifying the input feature usage.
40
  * Implement a custom Binary Target encoder as a Keras Preprocessing layer to encode the categorical features with respect to their target value co-occurrences, and then use the encoded features to build a decision forests model.
41
  <br />
42
- ###The example uses Tensorflow 7.0 or higher. It uses the US Census Income Dataset containing approximately 300k instances with 41 numerical and categorical variables. This is a binary classification problem to determine whether a person makes over 50k a year.
43
  <br />
44
- ###Author: Khalid Salama
45
- ###Adapted implementation: Tannia Dubon
34
  ---
35
 
36
  #TensorFlow Decision Forests for structured data classification
37
+ <br />
38
+ Use TF's Gradient Boosted Trees model in binary classification of structured data
39
+ <br />
40
  * Build a decision forests model by specifying the input feature usage.
41
  * Implement a custom Binary Target encoder as a Keras Preprocessing layer to encode the categorical features with respect to their target value co-occurrences, and then use the encoded features to build a decision forests model.
42
  <br />
43
+ The example uses Tensorflow 7.0 or higher. It uses the US Census Income Dataset containing approximately 300k instances with 41 numerical and categorical variables. This is a binary classification problem to determine whether a person makes over 50k a year.
44
  <br />
45
+ Author: Khalid Salama
46
+ Adapted implementation: Tannia Dubon