Steps
Here, we will simplify the usage process for better understanding. The process is divided into two steps: upload the event log and send new data.
This event log file should only contains already completed cases. Together with the event log, the some definitions are needed: columns definition, case attributes, outcome definition, and treatment definition. Then the system will train the models for later use.
flowchart LR log(Event log) --> project(Project) def(Definitions) --> project project --> model(Trained models)
There are two ways to send new data to the system.
You can upload a new dataset to get the results. The new dataset should only contains ongoing cases. The system will prescribe the results for these cases.
flowchart LR log(New dataset) --> project(Project) project --> result(Results)
You also can let your business management system stream the new events data to PrCore. PrCore will process the new events data and provide prescription results after the data is processed.
flowchart LR data(Stream data) -.-> project(Project) project -.-> result(Results)
Now you have a basic understanding of the PrCore system. You can go to the detailed steps page to learn more about the usage process.