Building AI without a neural network
hivekit.io
Building AI without a neural network
1–10 of 50 posts
Re: Building AI without a neural network
#2We ran this over two years and saw impressive results - especially for the time. I feel, this very much was a "thinking system" in the same sense. And I concur - there are many architectures and approaches to built this sort of thing.
Re: Building AI without a neural network
#3Early in my career, I wrote sales funnel optimization algorithms for online-shops and travel websites. We've used an evolutionary algorithm approach - basically, a number of algos implementing competing strategies and aspects that could mutate, crossover, reproduce and die. We ran this over two years and saw impressive results - especially for the time. I feel, this very much was a "thinking system" in the same sense…
Basically, you create a "population" out of possible placement strategies for orders. You then cycle through "generations" that quickly adapt to the changing market conditions.
Ultimately, you end up with something that - on average - provides execution closer to the target price than traditional, more static strategies. But the problem for us was that the outliers where really far out. Basically, if it got it wrong, it got it really wrong and you were often stuck with a set of half executed orders that had to be cleaned up manually.
Re: Building AI without a neural network
#4Early in my career, I wrote sales funnel optimization algorithms for online-shops and travel websites. We've used an evolutionary algorithm approach - basically, a number of algos implementing competing strategies and aspects that could mutate, crossover, reproduce and die. We ran this over two years and saw impressive results - especially for the time. I feel, this very much was a "thinking system" in the same sense…
Re: Building AI without a neural network
#5Early in my career, I wrote sales funnel optimization algorithms for online-shops and travel websites. We've used an evolutionary algorithm approach - basically, a number of algos implementing competing strategies and aspects that could mutate, crossover, reproduce and die. We ran this over two years and saw impressive results - especially for the time. I feel, this very much was a "thinking system" in the same sense…
Similar to how we have things like NP-hard > NP > (maybe) P, you could have a classification based on how many (types of) information can be processed or something like that. Maybe a similar but separate scale for learning capacity?
Re: Building AI without a neural network
#6"Top down" never really works for complex systems, the economy being an obvious example. But we tend to ignore that when thinking about neural networks.
Re: Building AI without a neural network
#7Early in my career, I wrote sales funnel optimization algorithms for online-shops and travel websites. We've used an evolutionary algorithm approach - basically, a number of algos implementing competing strategies and aspects that could mutate, crossover, reproduce and die. We ran this over two years and saw impressive results - especially for the time. I feel, this very much was a "thinking system" in the same sense…
Evolution by natural selection is adaptive in the sense you describe, but no one would consider to be "thinking".
Re: Building AI without a neural network
#8Early in my career, I wrote sales funnel optimization algorithms for online-shops and travel websites. We've used an evolutionary algorithm approach - basically, a number of algos implementing competing strategies and aspects that could mutate, crossover, reproduce and die. We ran this over two years and saw impressive results - especially for the time. I feel, this very much was a "thinking system" in the same sense…
It seems the value of this type of approach is not the "thinking" (i.e., contextual understanding) but rather the computational speed of assessing random trials. Compared to evolutionary timescales, it's very, very fast but I wouldn't characterize "thinking" to the randomness of evolution, despite its success.
- uses the information it already has combined with new inputs to form new information based on both (aka reasoning)
- retains learned information over time (aka memory)
- contains feedback loops to eventually eradicate "wrong" information (aka learning)
- converges to similar conclusions in similar circumstances (aka reasoning or possibly instict)
At least several of the most important parts of thought are there, though it is obviously very different than our own mind. That's OK, both submarines and penguins can move underwater but they do it in very different ways. No reason to think that thought wouldn't have multiple ways in which it could be implemented.
Evolution is also almost certainly not self-aware but neither is a dog and we consider dogs to be capable of thinking too.
Re: Building AI without a neural network
#9It's interesting how when discussing neural networks "inspired by the human brain" always comes up when the brain, as far as we know, is emergent behavior from many little things coordinating, not architected. "Top down" never really works for complex systems, the economy being an obvious example. But we tend to ignore that when thinking about neural networks.
I wish the industry would be more transparent about where all these brilliant ideas come from (spoiler alert: academics from the 1930s-70s, not "genius founders").
Re: Building AI without a neural network
#10It's interesting how when discussing neural networks "inspired by the human brain" always comes up when the brain, as far as we know, is emergent behavior from many little things coordinating, not architected. "Top down" never really works for complex systems, the economy being an obvious example. But we tend to ignore that when thinking about neural networks.