Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

On this Page

Table of Contents
maxLevel2
excludeOlder Versions|Additional Resources|Related Links|Related Information

Overview


This Snap vectorizes sentences into a set of numeric fields. It takes two inputs:

  1. An array of tokenized words drawn from a set of input sentences. If your sentences are not already tokenized, use the Tokenizer Snap.
  2. A document containing the most common words in the training set. You can generate this document using the Common Words Snap.

It then processes the data received and outputs a count frequency of the most common words in the text in each sentence.

For example: in the first output, say we have an array containing all the tokens in each sentence in a dataset; and the frequency of the 100 most common words in the second input. The Bag of Words Snap enables you to list out the number of times each of the 100 most common words appear in each input sentence.

Expected Input and Output

Expected input:

  • First input view: An array of tokenized words drawn from a set of input sentences. If your sentences are not already tokenized, use the Tokenizer Snap.
  • Second input view: A document containing the most common words in a given dataset, together with their frequency. You can generate this document using the Common Words Snap.

Expected output: A document containing the count frequency of the most common words in the text field.

Expected upstream Snaps:

  • First input view: Any Snap that offers documents. For example: Tokenizer or Mapper.
  • Second input view: Any Snap that offers documents. For example: Common Words, or a combination of File Reader and JSON Parser Snaps.

Expected downstream Snaps: Any Snap that accepts documents. For example: Cross Validator, Trainer, or a combination of JSON Formatter and File Writer Snaps.

Prerequisites

None.

Configuring Accounts

Accounts are not used with this Snap.

Configuring Views

Input

This Snap has exactly two document input views.
OutputThis Snap has exactly one document output view.
ErrorThis Snap has at most one document error view.

Troubleshooting

None.

Limitations and Known Issues

None.

Modes


Snap Settings


LabelRequired. The name for the Snap. Modify this to be more specific, especially if there are more than one of the same Snap in the pipeline.
Token array field

Required. The field containing the array of tokens on which you want to apply the Bag of Words technique. This suggestible property is a JSONPath

Default value: None

Example: $text

Multiexcerpt include macro
nameSnap Execution
pageAnaplan Read


Multiexcerpt include macro
nameSnap_Execution_Introduced
pageAnaplan Read



Examples


Identifying the Occurrence Frequency of the Top-100 Common Words in a Tokenized Input Dataset

In this example, we demonstrate how you can use the Bag of Words Snap to capture the frequency with which members of a set of common words appear in a dataset of tokenized sentences.


Download this pipeline.

Expand
titleUnderstanding the pipeline

This pipeline contains the following Snaps:

  1. JSON Generator: Contains an array of tokens created using the Yelp dataset. For details on how you can create such an array, see the example in the Tokenizer documentation.
  2. Mapper: Enables you to retain only the text part of the input document, indicated in the Snap Settings as $text.
  3. File Reader: Picks up and reads the contents of the yelp_common_words.json file, which contains the top 100 common words in the Yelp dataset. For details on how you can create this file, review the example in the Tokenizer documentation.
  4. JSON Parser: Parses the input JSON data and offers documents as input to the Bag of Words Snap.
  5. Bag of Words: Generates a document detailing the frequency with which members of the set of common words received from the File Reader and JSON Parser Snaps appear in the dataset of tokenized sentences received from the JSON Generator and Mapper Snaps.

The JSON Generator Snap contains an array of tokens created using an extract of the Yelp dataset (you can review the entire dataset here) and makes it available to the Mapper Snap as a document. If you do not have an array of tokens, you can create one using the Tokenizer Snap.

Image Modified 


The Mapper Snap picks up the tokenized data in the input file coming from the JSON Generator Snap and maps it to the field $text, making all the relevant data accessible to the Bag of Words Snap:


The Bag of Words Snap is configured to pick up the input data coming in from the Mapper Snap:


The Bag of Words Snap runs the Mapper output (the array of tokenized words in each sentence) against the JSON Parser output (the array listing out the frequency of the 100 most common words in the same dataset) and creates a document detailing the frequency with which the common words appear in each sentence.

Download this pipeline.


Downloads

Multiexcerpt include macro
namedownload_instructions
pageOpenAPI

Attachments
patterns*.slp,*.zip

Insert excerpt
ML Natural Language Processing Snap Pack
ML Natural Language Processing Snap Pack
nopaneltrue