Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down Expand Up @@ -826,4 +826,4 @@ query = f"""
docs = [doc for doc in dataset_db.aql.execute(query)]

print(json.dumps(docs, indent=2))
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down Expand Up @@ -826,4 +826,4 @@ query = f"""
docs = [doc for doc in dataset_db.aql.execute(query)]

print(json.dumps(docs, indent=2))
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down Expand Up @@ -826,4 +826,4 @@ query = f"""
docs = [doc for doc in dataset_db.aql.execute(query)]

print(json.dumps(docs, indent=2))
```
```