I hereby claim:
- I am antimatter15 on github.
- I am kkwok (https://keybase.io/kkwok) on keybase.
- I have a public key whose fingerprint is 1E98 6A49 07AC 5035 F965 9291 E1AC 1506 8D60 9685
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Larger LSTM Network to Generate Text for Alice in Wonderland | |
| # export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/include/ | |
| import numpy | |
| from keras.models import Sequential | |
| from keras.layers import Dense | |
| from keras.layers import Dropout | |
| from keras.layers import LSTM, Activation | |
| from keras.callbacks import ModelCheckpoint, LambdaCallback, TensorBoard | |
| from keras.utils import np_utils |
| #import <Foundation/Foundation.h> | |
| #import <Cocoa/Cocoa.h> | |
| int main(int argc, const char * argv[]) | |
| { | |
| @autoreleasepool { | |
| // Grab the current mouse location. | |
| CGPoint mouseLoc = CGEventGetLocation(CGEventCreate(NULL)); |
| // Szudzik's Elegant Pairing Function | |
| // http://szudzik.com/ElegantPairing.pdf | |
| function pair(x,y){ | |
| return y > x ? (y*y+x) : (x*x+x+y); | |
| } | |
| function unpair(z){ | |
| var q = Math.floor(Math.sqrt(z)), | |
| l = z - Math.pow(q, 2); |
| (* The f-rep syntax accepts four distinct types of atoms.X,Y,and Z \ | |
| are replaced by position in the world\[CloseCurlyQuote]s coordinate system at any \ | |
| given evaluation point. *) | |
| Antimony[x] := "X" | |
| Antimony[y] := "Y" | |
| Antimony[z] := "Z" | |
| (* Table A.1:Unary F-rep functions (pg. 93) *) |
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import './index.css'; | |
| import { forceSimulation, forceLink, forceCenter, forceManyBody } from 'd3-force'; | |
| class GraphNode extends React.Component { | |
| render(){ | |
| var node = this.props.node; |
This Gist was automatically created by Carbide, a free online programming environment.