ICOR (Robot collab)
Re: ICOR (Robot collab)
when you start the scene, his memory is empty, but he learns when he does things
like,in every situation it tries stuff, but it saves the move when it is moving again
like,in every situation it tries stuff, but it saves the move when it is moving again
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
I'll explain you my idea.
There will be spinal cord and brain.
Spinal cord will store congenital reflexes, and robot can't change them.
And brain will store changeable reflexes (Classical conditioning), and robot will get them from real life like Pavlov’s dogs
There will be spinal cord and brain.
Spinal cord will store congenital reflexes, and robot can't change them.
And brain will store changeable reflexes (Classical conditioning), and robot will get them from real life like Pavlov’s dogs
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
I have an idea for a more physical neural network, which wouldn't involve lots of scripting, working on that right now. Maybe tonight I have something that I could show you guys.
- Vytas
- Posts: 49
- Joined: Mon Oct 26, 2009 8:18 pm
Re: ICOR (Robot collab)
It will be interesting to see 
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
I have a question regarding the robot. How are you going to get the input signals from the environment? lets say you want the robot to pick up all green boxes how would the the robot "see" the green box.
- Vytas
- Posts: 49
- Joined: Mon Oct 26, 2009 8:18 pm
Re: ICOR (Robot collab)
There will be a kind of sensory receptor. It will give the robot a velocity of object touching it, and I have some prototypes of this kind of sensor 
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
use touch sensors, pressure sensors, and color&touch sensors
- Code: Select all
onCollide sensors:
touch sensor:
onCollide: (e)=>{scene.my.sensor1=true}
color and touch sensor:
oncollide: (e)=>{scene.my.sensor2=true ; scene.my.senseCC2=e.other.color}
LaserHit sensors:
hit sensor:
onLaserHit: (e)=>{scene.my.lsensor1=true}
color and hit sensor:
onLaserHit: (e)=>{scene.my.lsensor2=true ; scene.my.lsenseCC2=e.geom.color}
Last edited by Bronie12345 on Wed Nov 04, 2009 7:25 pm, edited 1 time in total.
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
No, your pressure sensor is bad. It can't return velocity (pressure) of the object.
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
ok, i've edited the code
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
Well I guess you COULD have basic learning, such as the bot knowing where obstacles are and changing variables based on past "experiences", but we cannot make the bot do any complex actions (such as movement patterns) that we did not explicitly program it to do without hard work. It could be possible by creating a thyme scripting machine with a complex AI that can modify the script of the bot's "brain", but that would be astonishingly hard.
- oops_ur_dead
- Posts: 19
- Joined: Wed Nov 04, 2009 12:26 am
Re: ICOR (Robot collab)
I have an idea on how this bot could "learn". There are four layers of processing
Input (sensors)
Brain
Cortex
Output (engine)
Data comes in through the input. The input will set variables that the brain then reads. The brain controls the processing of the data based on constants and variables. The brain will change two sets of variables. The output variables and the learning variables. The cortex will read the learning variables and change certain variables that the brain reads to make decisions. For instance, if the brain receives lots of impact inputs, it will record these. The cortex will make the decision that the area is dangerous, and record the co-ordinates of the area in variables. The next time the brain enters this area, it will either be cautious or try to leave.
Input (sensors)
Brain
Cortex
Output (engine)
Data comes in through the input. The input will set variables that the brain then reads. The brain controls the processing of the data based on constants and variables. The brain will change two sets of variables. The output variables and the learning variables. The cortex will read the learning variables and change certain variables that the brain reads to make decisions. For instance, if the brain receives lots of impact inputs, it will record these. The cortex will make the decision that the area is dangerous, and record the co-ordinates of the area in variables. The next time the brain enters this area, it will either be cautious or try to leave.
- oops_ur_dead
- Posts: 19
- Joined: Wed Nov 04, 2009 12:26 am
Re: ICOR (Robot collab)
my idea of learning was:
1. it gets in a situation where it is stuck (can't move or something)
2. it's going to try how to get out of that situation
3. when it gets out, it saves the movements it made.
4. if it gets into that situation an other time, it does that actions over so it gets out.
5. when it gets out faster with diffrent movements, it saves that and does that next time
ill try to make a robot that can remember some stuff
(like, it can save if a situation is dangerous or not)
1. it gets in a situation where it is stuck (can't move or something)
2. it's going to try how to get out of that situation
3. when it gets out, it saves the movements it made.
4. if it gets into that situation an other time, it does that actions over so it gets out.
5. when it gets out faster with diffrent movements, it saves that and does that next time
ill try to make a robot that can remember some stuff
(like, it can save if a situation is dangerous or not)
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
Thats possible. The problem is that it will be hard to distinguish between what movements helped the robot get out of its positions, and which movements did not do much. We want the robot to be as efficient as possible, so it would be undesirable to save the movements that didn't help the situation. Otherwise, it is a good idea.
- oops_ur_dead
- Posts: 19
- Joined: Wed Nov 04, 2009 12:26 am
Re: ICOR (Robot collab)
like a short-period memory?
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
No, it will store information for long time.
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
ok, but when its not used, it 'forgets' the data
something like that?
my way of saving is diffrent...
it just uses the sensors to make a variable to save...
like, you have 6 sensors...
when all sensors are 'false', the storage code is: [0, 0, 0, 0, 0, 0]
when sensor number 4 becomes 'true', the storage code will be: [0, 0, 0, 1, 0, 0]
that's how it creates a variable for everything that could happend...
that's how i was thinking to do it...
and ill also put an accelerometer into it...
something like that?
my way of saving is diffrent...
it just uses the sensors to make a variable to save...
like, you have 6 sensors...
when all sensors are 'false', the storage code is: [0, 0, 0, 0, 0, 0]
when sensor number 4 becomes 'true', the storage code will be: [0, 0, 0, 1, 0, 0]
that's how it creates a variable for everything that could happend...
that's how i was thinking to do it...
and ill also put an accelerometer into it...
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
It forgets the data only when it isn't used for a LONG time. It is like your brain work.
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
Hmm.. if I may.. I'd like to join this collab ;D
Got one good idea wich I will post once i get it done
Got one good idea wich I will post once i get it done
If you have a question, have a dollar and call somebody that cares.
No really just PM me if you have a problem
No really just PM me if you have a problem
-

Sniperkasa - Posts: 493
- Joined: Tue Sep 01, 2009 5:34 pm
- Location: The bottom of a lake.
Re: ICOR (Robot collab)
Would you like to have a status, for example mechanic or neural programmer?
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
That is good, but as I said above it would be hard to distinguish between what moves helped and what moves did not.
For the robot, I think that we should have more sensors. Im working on an accelometer. The current contact sensors we have are kind of slow, because the robot has to physically touch the object to sense it. I suggest we replace it with lasers.
- oops_ur_dead
- Posts: 19
- Joined: Wed Nov 04, 2009 12:26 am
Re: ICOR (Robot collab)
an accelero-meter isn't that hard to build
but then it also measures the speed, so thats an exra
but then it also measures the speed, so thats an exra
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Re: ICOR (Robot collab)
I think that we should make a kind of artificial neural network. And then, we will optimize it replacing neurons with thyme scripts.
And, yes, about sensors. We should have a pressure sensor, because robot can understand
what is dangerous and what not.
And, yes, about sensors. We should have a pressure sensor, because robot can understand
what is dangerous and what not.
-

savask - Posts: 162
- Joined: Mon Oct 12, 2009 2:53 pm
- Location: Russia, Siberia
Re: ICOR (Robot collab)
that's a nice way to go, but a little above my scripting lvl...
anyway, im crrently working on something else (yes, also alot of scripting)
anyway, im crrently working on something else (yes, also alot of scripting)
When you make a comment at a scene, at least be brave enough to subscribe to that scene...
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
Don't go into a topic unprepared... Read the whole topic, including all the comments, before posting.
92% of teenagers have resorted to rap music. If you are part of the 8% who listens to real music, put this in your signature.
90% of teenagers today would die if Myspace/Facebook were completely destroyed. If you are one of the 10% who would be laughing their heads off, add this to your signature.
-

Bronie12345 - Posts: 451
- Joined: Mon Aug 31, 2009 8:52 pm
- Location: The Netherlands
Who is online
Users browsing this forum: No registered users and 2 guests




