Variable Assignment Invariant Neural Networks for Learning Logic Programs

Yin Jun Phua,Katsumi Inoue
2024-08-20
Abstract:Learning from interpretation transition (LFIT) is a framework for learning rules from observed state transitions. LFIT has been implemented in purely symbolic algorithms, but they are unable to deal with noise or generalize to unobserved transitions. Rule extraction based neural network methods suffer from overfitting, while more general implementation that categorize rules suffer from combinatorial explosion. In this paper, we introduce a technique to leverage variable permutation invariance inherent in symbolic domains. Our technique ensures that the permutation and the naming of the variables would not affect the results. We demonstrate the effectiveness and the scalability of this method with various experiments. Our code is publicly available at <a class="link-external link-https" href="https://github.com/phuayj/delta-lfit-2" rel="external noopener nofollow">this https URL</a>
Machine Learning,Artificial Intelligence
What problem does this paper attempt to address?
### What problems does this paper attempt to solve? This paper aims to solve problems such as difficulty in handling noisy data, inability to generalize to unobserved state transitions, and combinatorial explosion in dynamic system modeling. Specifically: 1. **Limitations of Symbolic Algorithms**: - Existing learning frameworks based on symbolic algorithms (such as LFIT) are interpretable and independently verifiable, but they treat all data as equivalently valid, so they are vulnerable to ambiguous, conflicting, or noisy data. - Symbolic algorithms require that all state transitions be observable, so they cannot generalize or predict unobserved data. 2. **Limitations of Neural Network Methods**: - Neural network methods based on rule extraction are prone to over - fitting. - More general implementations (such as classification rules) will encounter the problem of combinatorial explosion. 3. **Variable Permutation Invariance Problem**: - In existing neural network methods, although Set Transformer is used to ensure the invariance of the input state transition order, the variable permutation within the state still affects the model output, resulting in increased model complexity and difficulty in optimization. To solve these problems, the author proposes a new method - **δLFIT2**, which solves the variable permutation problem by introducing **variable - assignment - invariance technology** and makes the neural network architecture more easily optimized through improvement. Specific improvements include: - **Variable - Assignment - Invariance**: By rearranging variables so that variable names and their order do not affect the model results, thus simplifying the learning problem. - **Dynamic Rule Heads**: Build separate output layers for each rule - body length and load these layers dynamically as needed to reduce memory usage and improve training efficiency. - **Extension to Larger Systems**: Through the method of subset mapping, enable δLFIT2 to be applied to systems with more variables. These improvements make δLFIT2 perform better in handling noisy data, generalization ability, and handling large - scale systems.