The default content pack and artifacts
There is a default content pack provided by IBM® that contains a collection of artifacts, such as predictive models, reports, scripts, and images. A content author can modify this content pack to meet business needs.
At the root of the content pack, there is a file named solutionconfiguration.xml. For each level of the logical model hierarchy, you can define associations to content artifacts to load data, run predictions, and visualize results. This file contains a catalog of all artifacts in your solution. For each content artifact, there is a version number and a name, and what categories it belongs to. For example:
<predictiveModel version="1.0" name="text" path="predictive/DB_FBA_DATA_PREP.str"
isFeature="text" id="DB_FBA_DATA_PREP" author="IBM"/>
<predictiveModel version="1.0" name="text" path="predictive/DB_FBA_SCORING_EVENT.str"
isFeature="text" id="DB_FBA_SCORING_EVENT" author="IBM"/>
<predictiveModel version="1.0" name="text" path="predictive/DB_FBA_TEST_RESULTS.str"
isFeature="text" id="DB_FBA_TEST_RESULTS" author="IBM"/>
When you customize by adding a new artifact, you need to add a line like this:
<predictiveModel version="1.0" name="text" path="predictive/my_model.str"
isFeature="text" id="my_model" author="My Name"/>
If you change it, increment the version number.
<predictiveModel version="1.1" name="text" path="predictive/DB_FBA_TEST_RESULTS.str"
isFeature="text" id="DB_FBA_TEST_RESULTS" author="IBM"/>
To delete, remove a line.