Skip to content

Commit 6e1797d

Browse files
Logo
1 parent 49b0ecb commit 6e1797d

File tree

1 file changed

+77
-3
lines changed

1 file changed

+77
-3
lines changed

README.md

Lines changed: 77 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,78 @@
1-
# Project status
1+
# AIKA: Artificial Intelligence for Knowledge Acquisition
22

3-
# About the AIKA Neural Network
4-
AIKA (**A**rtificial **I**ntelligence for **K**nowledge **A**cquisition)
3+
## Overview
4+
AIKA (Artificial Intelligence for Knowledge Acquisition) is an innovative approach to neural network design, diverging from traditional architectures that rely heavily on rigid matrix and vector operations.
5+
6+
The AIKA Project introduces a flexible, sparse, and non-layered network representation, derived from a type hierarchy. By separating the static structure of the neural network from its dynamic activation network, AIKA enables efficient, context-aware processing. This approach ensures that only the relevant neurons and synapses are activated during the processing of input data, maintaining sparsity and computational efficiency, even in large networks with millions of neurons.
7+
8+
### Key Features
9+
- **Sparse Activation**: Only relevant network components are activated, reducing computational overhead.
10+
- **Type Hierarchy**: Defines various neuron types (e.g., excitatory, inhibitory) to model network architecture and behavior.
11+
- **Non-Layered Representation**: Moves away from fixed-layered topologies, allowing dynamic activation sequences driven by input data.
12+
13+
### Design Philosophy
14+
AIKA is inspired by:
15+
1. **Predicate Logic**: Using individual constants to model unique identifiers.
16+
2. **Biological Neural Networks**: Incorporating concepts of temporally synchronized spike activity.
17+
18+
## Project Structure
19+
20+
### Fields Module
21+
This module contains the mathematical core of AIKA, featuring:
22+
23+
- **Graph-Based Representation**: Declarative graph structures to represent the mathematical models.
24+
- **Type Hierarchy**: Representing network elements such as neurons, synapses, and activations.
25+
- **Event-Driven Updates**: Asynchronous state changes propagated via an event queue to maintain processing order.
26+
27+
The `Fields Module` acts as the foundation for building and instantiating the neural network. It ensures that state changes
28+
in the mathematical model are asynchronously propagated through the network.
29+
30+
### Neural Network Module
31+
The Neural Network Module introduces a conceptual separation between:
32+
33+
1. **Neurons and Synapses**: Representing the static knowledge acquired by the network.
34+
2. **Activations and Links**: Representing the dynamic information inferred from input data.
35+
36+
#### Key Concepts
37+
- **Dual Graph Structure**: Separate graphs for neurons (knowledge representation) and activations (input-specific inference).
38+
- **Dynamic Activation**: Multiple activations for a single neuron, each tied to specific occurrences in the input data.
39+
- **Flexible Topology**: Abandoning fixed-layered architectures, the sequence of activations adapts dynamically to the input data.
40+
- **Linker Component**: Translates the neural network's structure into the activation network while propagating binding signals.
41+
42+
## Getting Started
43+
44+
### Prerequisites
45+
- Java 23 or higher
46+
- Maven for dependency management
47+
48+
### Installation
49+
Clone the repository and build the project using Maven:
50+
```bash
51+
# Clone the repository
52+
git clone https://github.com/aika-algorithm/aika.git
53+
54+
# Navigate to the project directory
55+
cd aika
56+
57+
# Build the project using Maven
58+
mvn clean install
59+
```
60+
61+
### Usage
62+
1. Instantiate the neural network using the `Fields Module`.
63+
2. Use the `Neural Network Module` to process input data and generate activations.
64+
3. Explore the sparse activation network and analyze the results.
65+
66+
## Contributing
67+
We welcome contributions from the open-source community! To contribute:
68+
1. Fork the repository.
69+
2. Create a new branch (`feature/your-feature-name`).
70+
3. Commit your changes.
71+
4. Submit a pull request.
72+
73+
## License
74+
This project is licensed under the Apache License Version 2.0. See the [LICENSE](LICENSE) file for details.
75+
76+
---
77+
78+
Start exploring AIKA and join us in advancing the future of neural network design!

0 commit comments

Comments
 (0)