From 968d42aa07fdc14687901f5cdede61d601a14f23 Mon Sep 17 00:00:00 2001 From: maxkernbach Date: Fri, 15 Mar 2024 12:50:07 +0100 Subject: [PATCH 1/3] Fix feature_type --- .../3.12/data-science/arangographml/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/3.12/data-science/arangographml/getting-started.md b/site/content/3.12/data-science/arangographml/getting-started.md index 70d234f17d..2bc3e46030 100644 --- a/site/content/3.12/data-science/arangographml/getting-started.md +++ b/site/content/3.12/data-science/arangographml/getting-started.md @@ -308,7 +308,7 @@ The Featurization Specification asks that you input the following: and they can all be featurized in different ways. Supplying multiple features results in a single concatenated feature. - `feature_type`: Provide the feature type. Currently, the supported types - include `text`, `category`, and `numerical`. + include `text`, `category`, `numeric` and `label`. - `feature_generator` Optional: Adjust advanced feature generation parameters. - `feature_name`: The name of this Dict should match the attribute name of the 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: "collectionName": { "features": { "attribute_name_1": { - "feature_type": 'text' # Suported types: text, category, numerical, label + "feature_type": 'text' # Suported types: text, category, numeric, label "feature_generator": { # this advanced option is optional. "method": "transformer_embeddings", "feature_name": "movie_title_embeddings", @@ -826,4 +826,4 @@ query = f""" docs = [doc for doc in dataset_db.aql.execute(query)] print(json.dumps(docs, indent=2)) -``` \ No newline at end of file +``` From d00de92d5a1f56e8f62158ac8ab81235bdf40a02 Mon Sep 17 00:00:00 2001 From: maxkernbach Date: Fri, 15 Mar 2024 12:52:26 +0100 Subject: [PATCH 2/3] Fix feature_type --- .../3.11/data-science/arangographml/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/3.11/data-science/arangographml/getting-started.md b/site/content/3.11/data-science/arangographml/getting-started.md index 70d234f17d..2bc3e46030 100644 --- a/site/content/3.11/data-science/arangographml/getting-started.md +++ b/site/content/3.11/data-science/arangographml/getting-started.md @@ -308,7 +308,7 @@ The Featurization Specification asks that you input the following: and they can all be featurized in different ways. Supplying multiple features results in a single concatenated feature. - `feature_type`: Provide the feature type. Currently, the supported types - include `text`, `category`, and `numerical`. + include `text`, `category`, `numeric` and `label`. - `feature_generator` Optional: Adjust advanced feature generation parameters. - `feature_name`: The name of this Dict should match the attribute name of the 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: "collectionName": { "features": { "attribute_name_1": { - "feature_type": 'text' # Suported types: text, category, numerical, label + "feature_type": 'text' # Suported types: text, category, numeric, label "feature_generator": { # this advanced option is optional. "method": "transformer_embeddings", "feature_name": "movie_title_embeddings", @@ -826,4 +826,4 @@ query = f""" docs = [doc for doc in dataset_db.aql.execute(query)] print(json.dumps(docs, indent=2)) -``` \ No newline at end of file +``` From a3d24574b139e12e08366156f42cb117b93a2e88 Mon Sep 17 00:00:00 2001 From: maxkernbach Date: Fri, 15 Mar 2024 12:54:06 +0100 Subject: [PATCH 3/3] Fix feature_type --- .../3.10/data-science/arangographml/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/3.10/data-science/arangographml/getting-started.md b/site/content/3.10/data-science/arangographml/getting-started.md index 70d234f17d..fe260e05e6 100644 --- a/site/content/3.10/data-science/arangographml/getting-started.md +++ b/site/content/3.10/data-science/arangographml/getting-started.md @@ -308,7 +308,7 @@ The Featurization Specification asks that you input the following: and they can all be featurized in different ways. Supplying multiple features results in a single concatenated feature. - `feature_type`: Provide the feature type. Currently, the supported types - include `text`, `category`, and `numerical`. + include `text`, `category`, and `numeric` and `label`. - `feature_generator` Optional: Adjust advanced feature generation parameters. - `feature_name`: The name of this Dict should match the attribute name of the 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: "collectionName": { "features": { "attribute_name_1": { - "feature_type": 'text' # Suported types: text, category, numerical, label + "feature_type": 'text' # Suported types: text, category, numeric, label "feature_generator": { # this advanced option is optional. "method": "transformer_embeddings", "feature_name": "movie_title_embeddings", @@ -826,4 +826,4 @@ query = f""" docs = [doc for doc in dataset_db.aql.execute(query)] print(json.dumps(docs, indent=2)) -``` \ No newline at end of file +```