DU Framework - How to skip classify

Hi @Slavich

Try this:
First, remove the Classify Document activity from your workflow. Then, create a variable named ClassificationResults of type List. After that, assign an empty list to ClassificationResults using this code: ClassificationResults = New List(Of ClassificationResult)(). Finally, continue with the rest of your workflow, such as data extraction, without needing the classification step.

Or you can also take the help from below link:

1 Like