[IEEE 2017] Athene Platform: Bridging Fuzzy Logic and Ontologies for Smarter Financial Forecasting

Developing a system for time series data mining on the basis of F-transform and the domain-specific ontology

2017-06-01
Nadezhda G. Yarushkina, Aleksey A. Filippov, A. A. Romanov, Vadim S. Moshkin, E. N. Egov
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces an intelligent module for the "Athene" platform designed for financial management monitoring and time series forecasting. It integrates F-transform (F0 and F1) with domain-specific OWL ontologies and SWRL rules to provide expert-level linguistic recommendations and accurate numerical forecasts.

TL;DR

Managing a large organization's finances requires more than just numbers—it requires context. This paper presents a module for the Athene platform that combines F-transform (Fuzzy Transform) mathematics with Domain-Specific Ontologies. By using Genetic Algorithms to optimize how time series are segmented and SWRL rules to interpret results, the system offers both high-accuracy forecasting and "expert" linguistic recommendations (e.g., "Liquiditiy is critical") that non-IT specialists can understand.

Problem & Motivation: The Gap Between Math and Meaning

Most data mining tools behave like "black boxes"; they output a predicted value (e.g., ROI will be 5.2%) without explaining what that means for the business.

  1. Complexity: Traditional time series analysis requires deep statistical knowledge.
  2. Lack of Context: A 2% drop in one industry might be "seasonal," while in another, it’s a "catastrophe."
  3. Rigidity: Purely numerical models cannot easily incorporate the heuristic "rules of thumb" that human experts use.

The authors' insight was to use F-transform to filter noise and extract local trends, then feed those trends into a Semantic Web structure (Ontology) to give them business meaning.

Methodology: The Core Engine

The system relies on two sophisticated pillars:

1. Optimized Asymmetric F-Transform

F-transform is renowned for its filtering properties. Unlike standard smoothing, the authors use a Genetic Algorithm (GA) to optimize the "basic functions" that cover time series vertices.

  • Asymmetry: Unlike traditional symmetric functions, their GA allows the basic functions to cover different numbers of vertices on the left vs. the right.
  • Fitness Function: The GA minimizes the error between the model value and the actual last known vertex, ensuring the approximation is highly tuned to the most recent data.

F1-Transform Coefficient Formula The F1-transform captures "slope ratios," allowing the system to understand the 'intensity' of a trend (e.g., "Quick Growth").

2. The Ontological Inference

Using OWL (Web Ontology Language) and SWRL (Semantic Web Rule Language), the system maps numerical values to linguistic labels.

  • Structure: The ontology defines classes like Ifin (Financial Indices), Trends (Growth/Fall), and Rec (Recommendations).
  • Logic: A SWRL rule might look like: If (Borrowing_Level > Threshold) AND (Trend == "Quick Growth") -> Recommend("Urgent Audit").

Athene Architecture The architecture utilizes microservices, with Neo4j-based graph storage for ontologies and InfluxDB for time series data.

Experiments & Results

The authors tested their approach on the IRAFM 2015 competition dataset. They compared two internal methods:

  • Method 1 (Trend-based search): Achieved a Mean Absolute Percentage Error (MAPE) of 5.25%.
  • Method 2 (GA-Optimized F-Transform): Achieved a MAPE of 9.15%.

Interestingly, the two methods excelled on different types of series. The authors suggest a "hybrid" ensemble approach where the system selects the method with the minimum error for a specific series type.

Table of Results Comparison of forecasting accuracy across 10 different datasets.

Critical Insight & Conclusion

The true value of this work isn't just the forecasting accuracy—it's the interpretability. By moving from raw numbers to a "Knowledge Base," the Athene platform democratizes data mining. It allows financial managers to get an "expert opinion" generated by a machine that thinks in both numbers and linguistic logic.

Limitations: The reliance on GA for optimization can be computationally expensive as the number of basic functions increases. Furthermore, the accuracy of the recommendations depends heavily on the quality of the expert-written SWRL rules.

Future Outlook: Integrating these fuzzy-ontological methods with modern Large Language Models (LLMs) could potentially automate the creation of the SWRL rules themselves, closing the loop between raw data and human-level narrative analysis.

Find Similar Papers

Try Our Examples

  • Search for recent studies that combine F-transform with Deep Learning models like LSTMs or Transformers for long-term time series forecasting.
  • Which seminal papers by Irina Perfilieva established the theoretical foundations of F-transform, and how does the asymmetric selection in this paper modify the original theory?
  • Find research examining the integration of Knowledge Graphs or OWL ontologies with State Space Models (SSM) for industrial or financial monitoring.
Contents
[IEEE 2017] Athene Platform: Bridging Fuzzy Logic and Ontologies for Smarter Financial Forecasting
1. TL;DR
2. Problem & Motivation: The Gap Between Math and Meaning
3. Methodology: The Core Engine
3.1. 1. Optimized Asymmetric F-Transform
3.2. 2. The Ontological Inference
4. Experiments & Results
5. Critical Insight & Conclusion