• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

train computers?

XienZo

Smash Lord
Joined
Apr 12, 2008
Messages
1,287
Why do people keep spreading these lies? More importantly, why do people continue to believe them? If you watch that video, the CPU Lucas was doing nothing new when he KO'd the person posting the vid. He had been doing the same thing at the very beginning of the video.

CPUs don't learn. I've been playing ZSS since the game came out and have even dittoed several CPU ZSSes, and CPU ZSSes are still as completely ******** as they were when I first got the game. Get this through your skulls, people.
People have only noted CPUs appearing to copy certain "auto-win" techniques (FALCON PAUNCHx10 in a row), and few have claimed that they can copy anything as complex as juggling suit pieces or even spacing in general.
 

ph00tbag

C(ϾᶘϿ)Ͻ
Joined
Mar 16, 2007
Messages
7,245
Location
NC
People have only noted CPUs appearing to copy certain "auto-win" techniques (FALCON PAUNCHx10 in a row), and few have claimed that they can copy anything as complex as juggling suit pieces or even spacing in general.
They should be able to notice that Flip Jump is rarely initiated over the stage. Fsmash is never used. Flip Jump helps recover. There have been NO changes in the CPUs ZSS metagame since I bought the game. I guarantee it.
 

XienZo

Smash Lord
Joined
Apr 12, 2008
Messages
1,287
They should be able to notice that Flip Jump is rarely initiated over the stage. Fsmash is never used. Flip Jump helps recover. There have been NO changes in the CPUs ZSS metagame since I bought the game. I guarantee it.
Eh, it seems they like to copy things that just kill or combos consistantly. They also seem to copy more of what TO do rather than what NOT to do.

However, given that the ZSS hasn't changed at all, its probable that at least, the ones in your game didn't learn.
 

Xebenkeck

Smash Lord
Joined
Mar 30, 2008
Messages
1,636
Location
My Head
They should be able to notice that Flip Jump is rarely initiated over the stage. Fsmash is never used. Flip Jump helps recover. There have been NO changes in the CPUs ZSS metagame since I bought the game. I guarantee it.
Just to let you know ZSS is the worst computer in the game. I tested this a long time ago, placing every cpu against each other, she went 1-35(she beat DDD). Even if it did learn something it wouldn't be noticable because they programmed her to be stupid, especially to someone who is proficient with her. Like i mentioned earlier, there is a noticable difference between cpu's on different machines, i guarentee you the ness cpu on my game is better then yours.

Also it isn't unheard of to have AI that learns, i recently bought NHL 09 for the Ps3, and on there it has an option that you can adjust that determines how fast the AI learns, and adjusts.
 

Paingel

Smash Apprentice
Joined
Sep 11, 2007
Messages
117
This is something I began to notice a few days after I got my copy of Brawl.

As a CompSci major having already taken and passed an AI class, I have to say that it's not impossible to have CPUs "learn" in this case.

If there were an infinite number of individual moves that a character could use, then it would be impossible. If there where a very large number of moves that a character could use, then it would be difficult, hence the difficulty in having complicated robots in this day and age.

But each individual character has less than 50 moves to learn from. It is not that hard to notice that some attacks are much more useful than others and then start using those attacks more often.

And quite frankly, I did notice that the Lvl 9 CPU Zelda on my game was seriously starting to catch up with me. I had a trick that I liked to use where I would make Din's Fire explode behind an opponent, causing them to fly towards me while spiraling so that I could have a follow up hit. This could be Zelda's bair or maybe a charged smash but.. w/e. After I used it for a while successfully, I began to notice that Zelda uses Din's Fire a lot more often. In fact it really messes with my camping game when it does this.

But CPU Zelda doesn't use it in the exact same way that I would. CPU Zelda uses it so that Din's Fire explodes in front of me, sending me away. But this shortcoming isn't too surprising. Technically it's still an off-center Din's Fire hit. Most likely, the CPU has some subroutine that says something like...

if(dinsFire.successRate() > SOMEPERCENT)
{
dinsFire.use();
}

Where use is yet another subroutine that has a very specific pre-defined way for using Din's Fire. So it might not really notice the finesse with which you actually use the move. It might just notice that that move tends to connect so that move = win. It's actually a fairly simple addition compared to all of the other AI work you'd already have to do. In fact it makes certain parts of the development easier instead of harder, as you don't have to make some arbitrary guess as to what common tactics are going to be.

Now, saying that it's POSSIBLE and saying that it's TRUE are two seperate things. I don't think we can tell with absolute 100% certainty that it's true or not without doing one of two things:

1) Reverse-engineering the compiled code for Brawl and trying to figure out if this code even exists. This is very difficult because it's like finding a needle in a haystack. Except it's harder because the needle is light brown and flimsy just like every other piece of hay in the haystack. Not really a good method. It could literally take years and I'm not kidding.

2) Keep an eye on the Brawl save file on the Wii to see what data is uploaded and where. This is much easier to do if you can get a program to do it for you. You will likely have to code this yourself. Chances are if there's any way for the CPU to keep track of this, it's in the save file. Also, it's very likely that the amount of data that changes between matches is pretty small. There will be some Time Played data changed, some KO count data changed, among other things. If any of the save data changes, some of it WILL be the success rate of each move, assuming that the code really works this way. It won't be impossible to track it down after this, but all of this work is going to still be pretty hard.

A third technique you could use would be to...
a) Copy your Brawl data onto an SD card
b) Remove said SD card
c) Delete all Brawl data from your Wii
d) Make a new Brawl file
e) Play against your mains, if they're a part of the starting line up.

But this is less likely to provide emperical and undeniable results, but if your main rocks on your real Brawl file and fails hard on the new Brawl file... you'll know. :p

And I could say more but it's already tl;dr
tl;dr version is...
It's not impossible for the AI to adjust to the player's tactics, and here's a way of possibly finding out whether or not this is true.

EDIT: Well the replay thing WOULD disprove this, so nevermind.
 

bobson

Smash Lord
Joined
Jul 28, 2008
Messages
1,674
EDIT: Well the replay thing WOULD disprove this, so nevermind.
Not necessarily. We haven't proved whether or not it stores the CPU data, just that the filesizes are the same. It's easily possible that it could store null data to keep the filesize constant or behavioral patterns overwrite others as they're learned.
 

Jihnsius

Smash Lord
Joined
Jun 17, 2004
Messages
1,301
Location
Austin, TX
I was the lead programmer for all three games. The computers don't learn. Want to know a secret? The computer is actually played live by one of sixty-thousand slave laborers in North Korea. Discussion over.
 

Radiation

Smash Apprentice
Joined
Jun 17, 2008
Messages
104
Location
New England
No, they're North Koreans and they're brainwashed so they can't learn. Duh.

[edit: did you guys really not know the north korean thing? it says so in the instruction manual]
 
Top Bottom