Keras: Difference between revisions

From Hegemon Wiki
Jump to navigation Jump to search
No edit summary
Line 39: Line 39:


[https://www.reddit.com/r/rust/comments/5m20al/github_jwilmalacritty_a_crossplatform_gpu/ This Reddit post] About a GPU based terminal.
[https://www.reddit.com/r/rust/comments/5m20al/github_jwilmalacritty_a_crossplatform_gpu/ This Reddit post] About a GPU based terminal.

[http://wdobbie.com/post/gpu-text-rendering-with-vector-textures/ This post about distance fields + vector textures]


[https://erikbern.com/2016/01/21/analyzing-50k-fonts-using-deep-neural-networks/ Analyzing 50k fonts using deep neural networks] [https://github.com/erikbern/deep-fonts github]
[https://erikbern.com/2016/01/21/analyzing-50k-fonts-using-deep-neural-networks/ Analyzing 50k fonts using deep neural networks] [https://github.com/erikbern/deep-fonts github]

Revision as of 06:47, 5 January 2017

Keras Callbacks how-can-i-interrupt-training-when-the-validation-loss-isnt-decreasing-anymore

Embeddings

fast.ai

General

This has lots of good infos - Includes an AndrewNG talk and recommended papers.

Reddit best papers

RNN

Dimension mismatch in LSTM - Your input should be in this format (sequences, timesteps, dimensions). So based on your example, your input should be in (None, 8, 2). Your input now is (8,2).

Building Autoencoders in Keras - Includes LTSM!!!, Also shows a webserver graph showing progress. How to make a 2d graph. And how to interpolate between numbers...

Help: 'Wrong number of dimensions: expected 3, got 2 with shape (...)

cs231n-CNNs 10 - Recurrent Nerual Networks Lecture

Time Series Prediction with LSTMs

This guys ipython notebook

contextwindow function

Keras Sequence Preprocessing - keras.preprocessing.sequence.pad_sequences

Using Keras LSTM RNN for variable length sequence prediction - Recomends either zero-padding or batches of 1...

Good? - Specifically talks about sliding window. Alice in wonderland.

GANs

GANS

Font Aliasing

Can a CNN be trained to alias font glyphs. Can it work with 3D rotations?

This Reddit post About a GPU based terminal.

This post about distance fields + vector textures

Analyzing 50k fonts using deep neural networks github freetype-rs


Playing around with distance field font rendering

Valve paper