https://github.com/osiris-team/ahi-artificial-human-intelligence
A humble attempt of creating a digital human.
https://github.com/osiris-team/ahi-artificial-human-intelligence
ai artificial-intelligence java neural-network
Last synced: over 1 year ago
JSON representation
A humble attempt of creating a digital human.
- Host: GitHub
- URL: https://github.com/osiris-team/ahi-artificial-human-intelligence
- Owner: Osiris-Team
- License: mit
- Created: 2021-05-09T16:20:49.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-03-03T00:51:20.000Z (over 4 years ago)
- Last Synced: 2025-02-13T13:49:56.455Z (over 1 year ago)
- Topics: ai, artificial-intelligence, java, neural-network
- Language: Java
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AHI-Artificial-Human-Intelligence
A humble attempt of creating a digital human.
## Status
This project is in development. Any help is welcome.
## Example
- [Simple example on how to create and run a digital human](/src/test/java/AIPlayground.java)
## Research
Body
Contains all organs for a functioning organism.
The main organ of course being the brain, which is connected to I/O (Input/Output) organs to interact with the surrounding world.
Brain
Contains neurons. Because of hardware limitations its not possible to have the same amount of neurons a human has.
Currently we are creating brains with 1 million neurons (0,1% of a real average brain with 100 billion neurons).
Note that a real average brain also has 10000 synapses (connection to other neuron) per neuron.
So we are both in quantity of neurons and synapses in disadvantage,
which means that our artificial human, basically has shorter memory and is a bit dumber.
A real brain however has a maximal brainwave frequency of 30Hz, which means
that our artificial human has the possibility of thinking much faster than us.
Neuron
Can connect to other Neurons, which results in a Synapse and receive/send Signals over it.
Signal/Neurotransmitter
Can be sent/received by Neurons.
Can die when its not forwarded to another Neuron or has not enough strength.
Can either be excitatory (positive) or inhibitory (negative).
Memory
The path of Neurons a Signal took until it died.