An open API service indexing awesome lists of open source software.

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.

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.