This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ostream> | |
#include <string> | |
#include "vStacks.h" | |
using namespace std; | |
int main(int argc, char** argv) { | |
virtualStack* thisThing = new spamNode("Hello"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How nessecary is this? | |
class Gene: | |
def __init__(self, inNeuron, outNeuron, weight = 1): | |
# inNeuron and outNeuron represent array indices | |
self.inNeuron = inNeuron | |
self.outNeuron = outNeuron | |
self.weight = weight | |
def compareOuts(self, otherGene): | |
if self.outNeuron < otherGene.outNeuron: return -1 | |
elif self.outNeuron > otherGene.outNeuron: return 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# My first layered neural network thingy, | |
# Whooooo. | |
# No Theano just yet. Maybe Numpy. | |
# Numpy will require me to express everything | |
# with as little iteration as possible. That's | |
# what bugs me about that library >_<. You can | |
# only hope everything broadcasts correctly! | |
import numpy | |
import theano |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prefixTable = { | |
"" : 0 , "k" : 5 , "s" : 10, "t" : 15, "n" : 20, | |
"h" : 25, "m" : 30, "y" : 35, "r" : 40, "w" : 45, | |
"g" : 50, "z" : 55, "d" : 60, "p" : 65, "b" : 70, | |
"j" : 75, "ky": 80, "sh": 85, "ny": 90, "hy": 95, | |
"py": 100, "by": 105, "my": 110, "ch": 115, "ry": 120, | |
"gy": 125, "f" : 130, "ts": 135, "v" : 140, | |
"elongations" : 145, | |
"nn" : 150, ".": 151, "," : 152, "smalltsu" : 153, " " : 154, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(newmailsend.muf) | |
$include #3 (ansilib.muf) | |
$include #6 (Useful.muf) | |
( words appearing in this program in order: | |
greenline - pushes a greenline onto the stack. | |
usage - notifies the caller the basic commands. | |
usage2 - notifies the caller some more advanced commands. | |
sendusage - If a string is on the stack, it'll notify it to |
OlderNewer