Genie Library
Note: This guide is currently only for Lumina developers.
Genie is a powerful Bayesian network modeling tool designed for probabilistic reasoning and decision analysis, making it invaluable for diagnosing complex systems, predicting outcomes, and updating beliefs as new data emerges. It excels at diagnostic reasoning, meaning it can infer probabilities opposite to the direction of the influence arrows—something widely used in fields like risk assessment, medical diagnosis, and predictive maintenance. However, while Genie excels at probabilistic reasoning, it lacks Analytica’s strengths in structured decision modeling, cost-benefit analysis, and multi-dimensional scenario exploration.
By integrating Genie with Analytica through the SMILE COM library, users can seamlessly combine probabilistic inference with powerful risk assessment and optimization tools. This connection enables, for instance, a pipeline risk management system where Genie predicts the probability of failure based on inspection data, while Analytica evaluates mitigation strategies and cost-effectiveness. Another example is equipment failure diagnostics, where Genie helps determine likely causes of a system failure, and Analytica models different response strategies to minimize downtime and costs. By linking these two tools, analysts can enhance decision-making with both predictive insights and strategic planning—creating a best-of-both-worlds solution.
Overview
We provide the Genie library to allow users to get the best parts of both softwares. The library is able to do the following:
- Read and automatically create an Analytica model using node attributes from the Genie model (identifiers, titles, colors, positions)
- Handle syntactical differences and update the Analytica node definitions
- Pass data between Analytica and a Genie model using COM calls
By supporting all SMILE COM functions with Analytica function equivalents, the library can send and receive data between Analytica and Genie. This communication is essential as it allows Analytica to instruct and receive updated values from Genie, effectively bringing Genie’s diagnostic inference capability to Analytica.
The result is an automated translation of Genie models into Analytica. These newly translated models maintain the diagnostic inference capabilities offered by Genie and the capability to pass information to and from ANAGRAM.
Download
You can download the Genie library here: Genie library.ana
Requirements
Analytica COM is used to pass data between Analytica and a Genie model and requires Enterprise or above. If you simply want to read and recreate a Genie model in Analytica then you do not need to enable COM calls. To enable this functionality, users will need to do the following:
1) Acquire a SMILE License key:
- For more information, you can visit the BayesFusion page on licensing: https://support.bayesfusion.com/docs/SMILE/licensing.html
2) Download files for COM installation:
- File:SmileCOM64.txt
- This is actually a DLL file (change the file extension from .txt to .dll) that will need to be registered (instructions below).
- File:SmileCOM.idl
- The .idl file contains the SmileNetwork and SmileLicense interface definitions supported by BayesFusion.
3) Register the DLLs to your Windows Registry.
- Open up the command prompt.
- Navigate to the folder the downloaded DLL is stored.
- Use the command 'regsvr32' to register your DLL file.
Importing
The import process reads the underlying XML-based format so that COM set up is not required. To import a Genie model:
1. Ensure the Genie model(s) you wish to import are located within the same folder as your Analytica model. 2. Use the 'File to Read' dropdown to select the desired Genie model. 3. Click 'Import selected model'
Communicating
To communicate with a Genie model, you must set up COM interactions (see the Requirements section above). The library supports all 20 functions supported by the SMILE COM wrapper. Included in the library are basic controls to help target your Genie models and select individual nodes in those models to interact with.
Functions
Model Initialization & File Handling:
SMILE_Initialize(Smile_License_COM_Object, license_key, variant_array)
- Validates SMILE licensing key to create SMILE COM objects and use the SMILE COM functions.
SMILE_ReadFile(Smile_Network_COM_Object; XDSL_File_Path)
- Reads the XDSL file from disk.
Inference & Evidence Management:
SMILE_UpdateBeliefs(Smile_Network_COM_Object)
- Updates the network (the model being read from) with any new evidence set.
SMILE_SetEvidence(Smile_Network_COM_Object, Node_ID, Evidence)
- Sets the evidence for the selected node.
SMILE_GetEvidence(Smile_Network_COM_Object, Node_ID)
- Returns the evidence from the selected node.
SMILE_IsEvidence(Smile_Network_COM_Object, Node_ID)
- Checks to see if evidence (obervation) is set.
SMILE_ClearEvidence(Smile_Network_COM_Object, Node_ID)
- Clears evidence (observation) from selected node.
SMILE_ClearAllEvidence(Smile_Network_COM_Object)
- Clears evidence for all nodes.
SMILE_SetTarget(Smile_Network_COM_Object, Node_ID, Bool)
- Sets selected node to either True (target) or False (not a target).
SMILE_IsTarget(Smile_Network_COM_Object, Node_ID)
- Returns if the selected node is set as a target.
SMILE_ClearAllTargets(Smile_Network_COM_Object)
- Clears targets for all nodes.
- Target nodes are always guaranteed to be updated by the inference algorithm. Other nodes, i.e., nodes that are not designated as targets, may be updated or not, depending on the internals of the algorithm used, but are not guaranteed to be updated. Focusing inference on the target nodes can reduce time and memory required to complete the calculation. When no targets are specified, SMILE assumes that all nodes are of interest to the user.
Node Information & Results:
SMILE_GetAllNodeIds(Smile_Network_COM_Object)
- Returns an array of all node handles (identifiers).
SMILE_GetNodeName(Smile_Network_COM_Object, Node_ID)
- Returns the node name attribute.
SMILE_GetNodeType(Smile_Network_COM_Object, Node_ID)
- Returns the node type attribute.
SMILE_GetOutcomeIds(Smile_Network_COM_Object, Node_ID)
- Returns Index elements tied to corresponding chance node.
SMILE_GetNodeValue(Smile_Network_COM_Object, Node_ID)
- Returns the specified node's value.
SMILE_GetNodeMean(Smile_Network_COM_Object, Node_ID)
- Returns the specified node's mean.
SMILE_GetNodeStdDev(Smile_Network_COM_Object, Node_ID)
- Returns the specified node's standard deviation.
Validation & Discretization:
SMILE_IsValueValid(Smile_Network_COM_Object, Node_ID)
- Validity status; a flag set to true by the inference algorithm after it succesfully completes the calculations for the given node.
SMILE_IsValueDiscretized(Smile_Network_COM_Object, Node_ID)
- Tells you whether your results are samples or discretized.
Belief Nets
https://docs.analytica.com/index.php/Bayes_nets_and_probabilistic_belief_networks
Enable comment auto-refresher