Skip to content

Commit 1882842

Browse files
authored
reworded "data-frame" --> features dict.
1 parent 37b0423 commit 1882842

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/core/tutorials/estimators/linear.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@
623623
"\n",
624624
"Estimators use a system called [feature columns](https://www.tensorflow.org/guide/feature_columns) to describe how the model should interpret each of the raw input features. An Estimator expects a vector of numeric inputs, and feature columns describe how the model should convert each feature.\n",
625625
"\n",
626-
"Selecting and crafting the right set of feature columns is key to learning an effective model. A *feature column* can be either one of the raw columns in the original data frame (a *base feature column*), or any new columns created using transformations defined over one or multiple base columns (a *derived feature columns*).\n",
626+
"Selecting and crafting the right set of feature columns is key to learning an effective model. A *feature column* can be either one of the raw inputs in the original features `dict` (a *base feature column*), or any new columns created using transformations defined over one or multiple base columns (a *derived feature columns*).\n",
627627
"\n",
628628
"A feature column is an abstract concept of any raw or derived variable that can be used to predict the target label."
629629
]
@@ -1401,4 +1401,4 @@
14011401
]
14021402
}
14031403
]
1404-
}
1404+
}

0 commit comments

Comments
 (0)