Create an NLP model trained from data in a Postgres table and store it in an S3 bucket. Or use an NLP model to classify data in a Postgres table.
Train an NLP model from data in a Postgres table snd store it in a file on S3.
Variables
PostgreSQL database containing the table with data to train the model.
Schema of the table with data to train the model.
Name of the table with data to train the model.
Column with labels that the model should predict.
Column with the text to use to train the model.
Select the AWS Access Keys to use to access the S3 bucket where the model file will be stored.
Select the Shared Config that contains information about the S3 Bucket where the model file will be stored.
Folder path from the Folder Path Prefix in the S3 Bucket Connection to the folder where the model file will be stored.
Name of the file where the model data will be created.
Enable to append the creation date to the file name.
Enable to allow an existing file with the same File Name in the Target Folder to be overwritten.
Read an NLP model from a file on S3 and use it to classify data in a Postgres table.
Variables
Select the AWS Access Keys to use to access the S3 bucket where the model file exists.
Select the Shared Config that contains information about the S3 Bucket where the model file exists.
Full path, including file name, to the file where the model data is stored.
PostgreSQL database containing the table with the text that the model will generate labels for.
Schema of the table with the text data that the model will generate labels for.
Name of the table with the text data that the model will generate labels for.
Column containing the text data that the model will generate labels for.
Column containing the Primary key for the text data.
Name of the table where the labels generated by the model will be stored.