tensorflow/lite/g3doc/api_docs/python/tflite_model_maker/recommendation/spec.md
page_type: reference description: APIs for recommendation specifications.
<link rel="stylesheet" href="/site-assets/css/style.css"> <!-- DO NOT EDIT! Automatically generated file. --> <div itemscope itemtype="http://developers.google.com/ReferenceObject"> <meta itemprop="name" content="tflite_model_maker.recommendation.spec" /> <meta itemprop="path" content="Stable" /> <meta itemprop="property" content="EncoderType"/> <meta itemprop="property" content="FeatureType"/> </div>View source on GitHub
APIs for recommendation specifications.
input_spec = recommendation.spec.InputSpec(
activity_feature_groups=[
# Group #1: defines how features are grouped in the first Group.
dict(
features=[
# First feature.
dict(
feature_name='context_movie_id', # Feature name
feature_type='INT', # Feature type
vocab_size=3953, # ID size (number of IDs)
embedding_dim=8, # Projected feature embedding dim
feature_length=10, # History length of 10.
),
# Maybe more features...
],
encoder_type='CNN', # CNN encoder (e.g. CNN, LSTM, BOW)
),
# Maybe more groups...
],
label_feature=dict(
feature_name='label_movie_id', # Label feature name
feature_type='INT', # Label type
vocab_size=3953, # Label size (number of classes)
embedding_dim=8, # label embedding demension
feature_length=1, # Exactly 1 label
),
)
model_hparams = recommendation.spec.ModelHParams(
hidden_layer_dims=[32, 32], # Hidden layers dimension.
eval_top_k=[1, 5], # Eval top 1 and top 5.
conv_num_filter_ratios=[2, 4], # For CNN encoder, conv filter mutipler.
conv_kernel_size=16, # For CNN encoder, base kernel size.
lstm_num_units=16, # For LSTM/RNN, num units.
num_predictions=10, # Number of output predictions. Select top 10.
)
spec = recommendation.ModelSpec(
input_spec=input_spec, model_hparams=model_hparams)
# Or:
spec = model_spec.get(
'recommendation', input_spec=input_spec, model_hparams=model_hparams)
class Feature: A ProtocolMessage
class FeatureGroup: A ProtocolMessage
class InputSpec: A ProtocolMessage
class ModelHParams: Class to hold parameters for model architecture configuration.
EncoderType Enum (valid: BOW, CNN, LSTM).
</td> </tr><tr> <td> FeatureType<a id="FeatureType"></a> </td> <td> Instance of `google.protobuf.internal.enum_type_wrapper.EnumTypeWrapper`FeatureType Enum (valid: STRING, INT, FLOAT).
</td> </tr> </table>