Add a New Plugin
The process of adding a new plugin to the PrCore system is straightforward and highly customizable. The system is designed to be extensible, allowing users to easily integrate new plugins to enhance its functionality.
Here are the steps to add a new plugin to the PrCore system:
- Create a new folder for the plugin in the
plugins
directory. - Create nessary files for the plugin.
- Modify the algorithm file, implement the
preprocess
,train
,predict
, andpredict_df
functions. - Add service section in the
docker-compose-custom.yml
file. - Rebuild the docker container.
That’s it! You’ve successfully added a new plugin to the PrCore system.
You can find more details about each step below.