@@ -308,7 +308,7 @@ The Featurization Specification asks that you input the following:
308308 and they can all be featurized in different ways. Supplying multiple features
309309 results in a single concatenated feature.
310310 - ` feature_type ` : Provide the feature type. Currently, the supported types
311- include ` text ` , ` category ` , and ` numerical ` .
311+ include ` text ` , ` category ` , ` numeric ` and ` label ` .
312312 - ` feature_generator ` Optional: Adjust advanced feature generation parameters.
313313 - ` feature_name ` : The name of this Dict should match the attribute name of the
314314 document stored in ArangoDB. This overrides the name provided for the parent Dict.
@@ -319,7 +319,7 @@ The Featurization Specification asks that you input the following:
319319 " collectionName" : {
320320 " features" : {
321321 " attribute_name_1" : {
322- " feature_type" : ' text' # Suported types: text, category, numerical , label
322+ " feature_type" : ' text' # Suported types: text, category, numeric , label
323323 " feature_generator" : { # this advanced option is optional.
324324 " method" : " transformer_embeddings" ,
325325 " feature_name" : " movie_title_embeddings" ,
@@ -826,4 +826,4 @@ query = f"""
826826docs = [doc for doc in dataset_db.aql.execute(query)]
827827
828828print (json.dumps(docs, indent = 2 ))
829- ```
829+ ```
0 commit comments