Skip to content

Commit 968d42a

Browse files
authored
Fix feature_type
1 parent a828cfc commit 968d42a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/content/3.12/data-science/arangographml/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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"""
826826
docs = [doc for doc in dataset_db.aql.execute(query)]
827827

828828
print(json.dumps(docs, indent=2))
829-
```
829+
```

0 commit comments

Comments
 (0)