Modeling Price of ethereum with machine learning

Slides:



Advertisements
Similar presentations
A brief review of non-neural-network approaches to deep learning
Advertisements

Introduction to Recurrent neural networks (RNN), Long short-term memory (LSTM) Wenjie Pei In this coffee talk, I would like to present you some basic.
CS 732: Advance Machine Learning Usman Roshan Department of Computer Science NJIT.
Artificial Neural Networks
Alternative Parallel Processing Approaches Jonathan Sagabaen.
Backpropagation An efficient way to compute the gradient Hung-yi Lee.
Introduction to machine learning and data mining 1 iCSC2014, Juan López González, University of Oviedo Introduction to machine learning Juan López González.
PARALLELIZATION OF ARTIFICIAL NEURAL NETWORKS Joe Bradish CS5802 Fall 2015.
Introduction to Neural Networks Freek Stulp. 2 Overview Biological Background Artificial Neuron Classes of Neural Networks 1. Perceptrons 2. Multi-Layered.
Joe Bradish Parallel Neural Networks. Background  Deep Neural Networks (DNNs) have become one of the leading technologies in artificial intelligence.
Predicting the dropouts rate of online course using LSTM method
Chapter 13 Artificial Intelligence. Artificial Intelligence – Figure 13.1 The Turing Test.
Learning to Answer Questions from Image Using Convolutional Neural Network Lin Ma, Zhengdong Lu, and Hang Li Huawei Noah’s Ark Lab, Hong Kong
Xintao Wu University of Arkansas Introduction to Deep Learning 1.
CMPS 142/242 Review Section Fall 2011 Adapted from Lecture Slides.
Best viewed with Computer Modern fonts installed
Best viewed with Computer Modern fonts installed
End-To-End Memory Networks
CS 388: Natural Language Processing: LSTM Recurrent Neural Networks
Multilayer Perceptrons
Deep Learning.
Recursive Neural Networks
Recurrent Neural Networks for Natural Language Processing
Lecture 3: Linear Regression (with One Variable)
Recurrent Neural Networks
Show and Tell: A Neural Image Caption Generator (CVPR 2015)
A Hierarchical Model of Reviews for Aspect-based Sentiment Analysis
A Simple Artificial Neuron
ICS 491 Big Data Analytics Fall 2017 Deep Learning
Intelligent Information System Lab
Neural Networks 2 CS446 Machine Learning.
Overview ➔ Cryptocurrency Wallet App - One of the most popular Crypto wallet apps in Europe. Cryptocurrency Wallet App ➔ This Wallet app design and developed.
Self organizing networks
Neural Networks and Backpropagation
CSE P573 Applications of Artificial Intelligence Neural Networks
Prof. Carolina Ruiz Department of Computer Science
A critical review of RNN for sequence learning Zachary C
Convolutional Neural Networks
Grid Long Short-Term Memory
Advanced Artificial Intelligence
Image Captions With Deep Learning Yulia Kogan & Ron Shiff
A First Look at Music Composition using LSTM Recurrent Neural Networks
Recurrent Neural Networks
Tips for Training Deep Network
CSE 573 Introduction to Artificial Intelligence Neural Networks
Understanding LSTM Networks
Neural Networks Geoff Hulten.
Other Classification Models: Recurrent Neural Network (RNN)
Lecture 16: Recurrent Neural Networks (RNNs)
Combinational Circuits
Recurrent Encoder-Decoder Networks for Time-Varying Dense Predictions
Somi Jacob and Christian Bach
Artificial Neural Networks
Overview of deep learning
Artificial Neural Networks
Artificial Intelligence 10. Neural Networks
实习生汇报 ——北邮 张安迪.
Ethereum Virtual Machine
Backpropagation and Neural Nets
Meta Learning (Part 2): Gradient Descent as LSTM
Deep Learning Authors: Yann LeCun, Yoshua Bengio, Geoffrey Hinton
Attention for translation
Recurrent Neural Networks (RNNs)
Automatic Handwriting Generation
The Updated experiment based on LSTM
Recurrent Neural Networks
Bidirectional LSTM-CRF Models for Sequence Tagging
LHC beam mode classification
CRCV REU 2019 Aaron Honculada.
Prof. Carolina Ruiz Department of Computer Science
Presentation transcript:

Modeling Price of ethereum with machine learning Scott Cilento

What is ethereum? Blockchain technology “Append only” Used for computing power of network Cryptocurrency called “Ether” Famous for boom and subsequent bust in 2017-18

Dataset July 2015 – October 2018 (1164 observations) Blockchain attributes: Transactions Hash rate growth Block size (cap on processing and storage)

Dataset (cont.)

Regression

Price Prediction Regression models relationships of data Allows for prediction given transactions, growth rate, and block size Want to predict the future price Strong autocorrelation from “buzz”?

Neural Network Powerful, popular way to compute predictions How does it work? In short: matrix multiplication Backpropagation, gradient descent Source: https://www.digitaltrends.com/cool-tech/what-is-an-artificial-neural-network/

Neural Net and Time series Neural net for sequential data: Long short-term memory network Inputs: Ct-1 = memory from previous cell Ht-1 = output of previous cell Xt = observation at t Outputs: Ct = memory Ht = output Source: https://colah.github.io/posts/2015-08-Understanding-LSTMs/

LSTM in action