Difference between revisions of "Machine Learning Experiments"

From Software Studies
Jump to navigation Jump to search
Line 38: Line 38:


===Text related===
===Text related===
* [https://github.com/gsurma/text_predictor text predictor] by Greg Surma (python 2.7/3.+ with tensorflow (RNN+LSTM)
* [https://github.com/gsurma/text_predictor text predictor] by Greg Surma (python 2.7/3.+ with tensorflow (RNN+LSTM) and his article here: [https://towardsdatascience.com/text-predictor-generating-rap-lyrics-with-recurrent-neural-networks-lstms-c3a1acbbda79 Text Predictor - Generating Rap Lyrics with Recurrent Neural Networks (LSTMs)]
* [https://colab.research.google.com/drive/1XlmtcyMdPRQC6bw2HQYb3UPtVGKqUJ0a#scrollTo=8R0T0ei52FXS Semantic similarity chatbot (with movie dialog)] by Allison Parrish
* [https://colab.research.google.com/drive/1XlmtcyMdPRQC6bw2HQYb3UPtVGKqUJ0a#scrollTo=8R0T0ei52FXS Semantic similarity chatbot (with movie dialog)] by Allison Parrish
* Chinese receipt OCR using Tensorflow | SpikeFlow ([https://deeperic.wordpress.com/2017/02/18/chinese-ocr-tensorflow/ Blog] | [https://github.com/deeperic/SpikeFlow Github])
* Chinese receipt OCR using Tensorflow | SpikeFlow ([https://deeperic.wordpress.com/2017/02/18/chinese-ocr-tensorflow/ Blog] | [https://github.com/deeperic/SpikeFlow Github])
* [https://github.com/karpathy/recurrentjs Recurrentjs] by Andrej Karpathy, mainly for text training. "Sentences are input data and the networks are trained to predict the next character in a sentence." + his [https://www.datascienceweekly.org/data-scientist-interviews/training-deep-learning-models-browser-andrej-karpathy-interview interview] on why javascript and machine learning.
* [https://github.com/karpathy/recurrentjs Recurrentjs] by Andrej Karpathy, mainly for text training. "Sentences are input data and the networks are trained to predict the next character in a sentence." + his [https://www.datascienceweekly.org/data-scientist-interviews/training-deep-learning-models-browser-andrej-karpathy-interview interview] on why javascript and machine learning.
* Re-appropriation of Recurrentjs by [http://artist.ai/index.php/home/poems/ UCL Creative Hub]
* Re-appropriation of Recurrentjs by [http://artist.ai/index.php/home/poems/ UCL Creative Hub]
===Image related===
===Image related===
* Image paint: 1/ [http://cs.stanford.edu/people/karpathy/convnetjs/ ConvNetJS Library] by Andrej Karpathy 2/ [http://caza.la/synaptic/#/paint-an-image Synaptic.js] by Synaptic
* Image paint: 1/ [http://cs.stanford.edu/people/karpathy/convnetjs/ ConvNetJS Library] by Andrej Karpathy 2/ [http://caza.la/synaptic/#/paint-an-image Synaptic.js] by Synaptic

Revision as of 14:36, 9 December 2018

Introduction to Machine Learning

Cultural matters with Machine Learning

Technical explanation on Machine Learning

RNN/LSTM focus

Neural Network

Examples with source code

Mixed media (text/image)

Text related

Image related

Sound related

Projects

Text related

Artworks

Examples/Performance/Speculative design

Exhibition

Workshop

Conference

Preconference Workshop] (2018)

Demo/Experimental Projects

Learning resource

Teaching Machine Learning

Experiments/Tests

  • 11/2018: Try running LSTM/tensorflow training with Python (following text predictor)from my PhD thesis text
PhD thesis
  • 11/2018: Try running local ml5 + python training with English text (multiple manifestos) and generate 10000 characters text from multiple manifestos
manifestos
  • 06/2018: Try running LSTM ml5js with training simplied chinese data. Source from weiboscope 2012 week 1 deleted text
weiboscope text
  • 06/2018: Running LSTM ml5js example with my own training data
Training Process
Outcome Process
  • 2018: Running ml5.js example - Simple LSTM Generator Example on a local browser
Predicting what's the text
  • Running ml5.js example - Simple Image Classification Example on a local browser
Predicting what's the image with confidence level
  • Running spam data with RecurrentJS on a local browser
Running spam data with RecurrentJS
  • Running a customized neural network on a local browser
Learning XOR with Synaptic
  • Running a PNG file with Synaptic.js on a local browser
Learning a png file with Synaptic
  • Running a jpg file with ConvNetJS on a local browser
Learning a jpg file with ConvNetJS