Hello Everyone,
I am complete new to AI center. There is a process in which, I need to extract info from request (free text String)
"Effective 1st October 2021 Johnny Depp has been promoted to Client Account Support Analyst and his salary has been increased to £19,000 per annum. This change has been approved by David Guetta, Compensation Partner. Could you please process this change in Workday"
so, from above string input, I want extract/identify,
Employee name - Johnny Depp
Effective date - 10/01/2021
Position - Client Account Support Analyst
Salary amount - £19000 per annum
and Process name - Compensation Change and Promotion (this identified based on scenario)
Currently trying to follow this demo (as is)Use Custom NER with Continuous Learning
but getting error
Traceback (most recent call last):
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/trainer_run.py", line 85, in main
wrapper.run()
File "/microservice/training_wrapper.py", line 57, in run
return self.training_plugin.model_run()
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/training_plugin.py", line 147, in model_run
raise e
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/training_plugin.py", line 135, in model_run
self.run_full_training()
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/training_plugin.py", line 165, in run_full_training
self.process_data()
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/training_plugin.py", line 428, in process_data
raise e
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/training_plugin.py", line 425, in process_data
self.process_data_model(self.local_dataset_directory)
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/training_plugin.py", line 123, in process_data_model
self.model.process_data(directory)
File "/microservice/train.py", line 60, in process_data
self.df_train, self.df_test = preprocess.preprocess_data(self.opt, split=True)
File "<frozen aicenter.ner.preprocess>", line 48, in preprocess_data
File "<frozen aicenter.ner.data_processors.base_data_processor>", line 22, in process_data
File "<frozen aicenter.ner.data_processors.conll_data_processor>", line 29, in process_files
File "/home/aicenter/.local/lib/python3.8/site-packages/pandas/util/_decorators.py", line 311, in wrapper
return func(*args, **kwargs)
File "/home/aicenter/.local/lib/python3.8/site-packages/pandas/core/reshape/concat.py", line 346, in concat
op = _Concatenator(
File "/home/aicenter/.local/lib/python3.8/site-packages/pandas/core/reshape/concat.py", line 403, in __init__
raise ValueError("No objects to concatenate")
ValueError: No objects to concatenate
2022-01-27 09:33:58,263 - uipath_core.storage.azure_storage_client:compose:138 - ERROR: Failed to compose file ['train.log.20220127093350', 'train.log.20220127093357'] to f61a39e7-a258-42d8-a524-9b32c8bad37d.log for bucket training-b8dbfefb-6f20-464b-9953-adebaf83bc70, error: [Errno 2] No such file or directory: 'trainer_run_logs/train.log.20220127093350'
2022-01-27 09:34:03,268 - uipath_core.utils.utils:_retries:199 - WARNING: Function: compose execution failed, retry count 1
2022-01-27 09:34:03,269 - uipath_core.storage.azure_storage_client:compose:138 - ERROR: Failed to compose file ['train.log.20220127093350', 'train.log.20220127093357'] to f61a39e7-a258-42d8-a524-9b32c8bad37d.log for bucket training-b8dbfefb-6f20-464b-9953-adebaf83bc70, error: [Errno 2] No such file or directory: 'trainer_run_logs/train.log.20220127093350'
2022-01-27 09:34:08,275 - uipath_core.utils.utils:_retries:199 - WARNING: Function: compose execution failed, retry count 2
2022-01-27 09:34:08,277 - uipath_core.storage.azure_storage_client:compose:138 - ERROR: Failed to compose file ['train.log.20220127093350', 'train.log.20220127093357'] to f61a39e7-a258-42d8-a524-9b32c8bad37d.log for bucket training-b8dbfefb-6f20-464b-9953-adebaf83bc70, error: [Errno 2] No such file or directory: 'trainer_run_logs/train.log.20220127093350'
2022-01-27 09:34:13,282 - uipath_core.utils.utils:_retries:196 - ERROR: Function: compose excecution failed, Max retry limit reached 3
2022-01-27 09:34:13,283 - uipath_core.trainer_run:_handle_upload_pending_files:52 - ERROR: Failed to upload pending log files,incomplete logs available to user, error: [Errno 2] No such file or directory: 'trainer_run_logs/train.log.20220127093350'
Traceback (most recent call last):
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core/trainer_run.py", line 91, in main
raise e
File "/home/aicenter/.local/lib/python3.8/site-packages/uipath_core.... (truncated).
Thank you in advance