DU framework - configuration

Hi Guys,

So have recently created an ML skill,

However I need to configure it get the labeled document and view the extraction and then put it an excel file.

I have done this before but took the document from a file.

Please help.

@Aki1111

Can you please elaborate…you create a skill only after doing labeling and then run pipeline…so can you please let us know what you are looking at

cheers

Hi @Aki1111

Can you try this-

  1. Install Python Activities in UiPath

  2. Prepare your ML Model and Python Script.

  • Create a Python script that utilizes your ML model to extract information from the document and save it to an Excel file.
  • Drag and drop the “Invoke Python Method” activity onto your UiPath workflow.
  • In the “FileName” property of the activity, specify the path to your Python script.
  • Define any input parameters required by your Python script, such as the path to the labeled document.
  • Optionally, set output parameters to retrieve the extracted information from the Python script.
  1. Read Labeled Document in UiPath:
  • Store the content of the document in a variable for further processing.
  1. Connect the output of the previous step (the document content) to the input parameter of the “Invoke Python Method” activity

5.Store the extracted information in suitable variables or data structures for further processing.
6. Export to Excel File:

Thanks!!