Author Topic: Pointless Information  (Read 71437 times)

0 Members and 6 Guests are viewing this topic.

Jazzem

  • Guest
Re: Pointless Information
« Reply #225 on: March 21, 2006, 07:38:38 PM »
I know this certainly isn't pointless, but my grandmother died today :(

Offline Chmera

  • Posts: 419
    • View Profile
Re: Pointless Information
« Reply #226 on: March 21, 2006, 09:28:35 PM »
Aww... *hugs*

Offline namida

  • Administrator
  • Posts: 12399
    • View Profile
    • NeoLemmix Website
Re: Pointless Information
« Reply #227 on: March 22, 2006, 03:38:02 AM »
My best advice is, when a relative dies, don't be sad that they're dead, be happy they won't ever have to put up with you again.
My Lemmings projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)

Offline Chmera

  • Posts: 419
    • View Profile
Re: Pointless Information
« Reply #228 on: March 22, 2006, 09:37:05 AM »
Nice one, Sunrise.  [smiley=winktounge.gif]

drumnbach

  • Guest
Re: Pointless Information
« Reply #229 on: March 23, 2006, 01:55:01 PM »
Quote from: Jazzem link=1089280056/225#225 date=1142969918
I know this certainly isn't pointless, but my grandmother died today :(
It warms my heart to see people grieving their grandparents because I was never close to mine. When they died, I wasn't affected at all. I feel I've missed out on something, especially when I see the relationship that my nephews and nieces have with my parents.

I have a 92 year old STEP grandmother though... I wish she'd hurry up and pop her clogs :P.

Offline Timballisto

  • Posts: 941
    • View Profile
Re: Pointless Information
« Reply #230 on: March 23, 2006, 11:48:56 PM »
Not so pointless request:

Does anyone care to help me out on something? &#A0;I'm trying to build a neural network in Qbasic. &#A0;I made a little experimental one like this:


             &#A0; Layer 1 &#A0; &#A0; Layer 2 &#A0; &#A0; Layer 3
             &#A0; --------      --------      --------

I-----W-----N-----W-----N-----W-----N-----W----O
                   -W- &#A0; &#A0;---- &#A0; -W- &#A0; &#A0;----             &#A0;
                        ----            ----
                   -W- &#A0; &#A0;---- &#A0; -W- &#A0; &#A0;----      
I-----W-----N-----W-----N-----W-----N-----W----O

The W's are the weights, and the N's are the nodes (or perceptrons, or artificial neurons, or whatever it is that you might call them), and the O's are outputs and the I's are inputs. &#A0;I wanted to figure out how to use backpropagation to train the network (in this case train it to produce outputs that were simply the inputs doubled) so I could apply it to a much larger net. &#A0;My stepdad and I ran through an explanation of it, but I can't code it into my program, because the explanations I found confuse me, mostly because it involves calc, and I'm in algebra 2 (wonderful), but also because it's not very clear how all the equations play into each other. &#A0;If anyone could explain how to code for backpropagation, that would be great. &#A0;Heck, if anyone could explain the algorithm itself (keep in mind my level of math) that alone would be great.

tseug

  • Guest
Re: Pointless Information
« Reply #231 on: March 24, 2006, 12:22:23 AM »
I'm back. :)

Uhh... timb I'd have to experiment.... (btw I'm taknig calc)

Offline namida

  • Administrator
  • Posts: 12399
    • View Profile
    • NeoLemmix Website
Re: Pointless Information
« Reply #232 on: March 24, 2006, 05:08:05 AM »
That doesn't sound pointless. Please post it in the "Pointful Information Topic".
My Lemmings projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)

MC Marshy

  • Guest
Re: Pointless Information
« Reply #233 on: March 24, 2006, 10:37:17 AM »
Quote from: Sunrise link=1089280056/225#232 date=1143176885
That doesn't sound pointless. Please post it in the "Pointful Information Topic".

I can't see a "Pointful Information Topic"

Offline Chmera

  • Posts: 419
    • View Profile
Re: Pointless Information
« Reply #234 on: March 24, 2006, 10:49:28 AM »
Maybe Sunrise was being pointless.  [smiley=winktounge.gif]

Offline Timballisto

  • Posts: 941
    • View Profile
Re: Pointless Information
« Reply #235 on: March 24, 2006, 04:19:31 PM »
Thanks Tseug.  If you turn up anything, let me know.

Offline ccexplore

  • Posts: 5311
    • View Profile
Re: Pointless Information
« Reply #236 on: March 24, 2006, 09:32:35 PM »
Quote from: Timballisto link=1089280056/225#230 date=1143157736
Not so pointless request:

Does anyone care to help me out on something? &#A0;I'm trying to build a neural network in Qbasic. &#A0;I made a little experimental one like this:
Is this for a school project or something? &#A0;Just curious, I want to know what you are trying to do with the neural network.

I wish I could help but it's been quite a while since the AI class I took in college.

Unfortunately the backprogation does involve calculus if I recall, at least in its theoretical foundation. &#A0;I'll have to look it up on the web again to refresh myself on the details.

This is kinda ambitious for you, wouldn't you say? &#A0;You said you don't even know calculus that well. &#A0;And even if you do, there's still the separate field of knowledge on how to program the computer to numerically calculate with the equations involved. &#A0;Which is why I'm really curious what the ultimate goal and purpose is of this.

[edit: try http://cortex.snowseed.com/neural_networks.htm, it includes some code which I think you might be able to translate pretty easily to QBasic]

Offline Timballisto

  • Posts: 941
    • View Profile
Re: Pointless Information
« Reply #237 on: March 24, 2006, 10:47:16 PM »
Actually, this is for school.  X( .  A bit ambitious?  Yep.  Oh well.  I think I can stil do it...it'll take time of course.  Fortunately the due date for this is still a ways off.  The bigger one that I already have set up (minus the training method) is meant to distinguish between three and four sided polygons (I already drew up 1000 of these using another program I made, so I'm good there).  The smaller one I'm using to experiment with, mostly to figure out how to train the system.  Right now it's meant to simply double the input values.  I'll check out the code and see what I can do with it.

Offline namida

  • Administrator
  • Posts: 12399
    • View Profile
    • NeoLemmix Website
Re: Pointless Information
« Reply #238 on: March 24, 2006, 10:48:08 PM »
His goal is to take over teh world.
My Lemmings projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)

Offline Timballisto

  • Posts: 941
    • View Profile
Re: Pointless Information
« Reply #239 on: March 24, 2006, 11:44:10 PM »
I have a question:  What does the"->" in the code mean?  Everthing else I'm okay with.