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
State | petrol | |
---|---|---|
AL | 163054 | |
AK | 1191884 | |
AZ | 67337 | |
AR | 87674 | |
CA | 1638019 | |
CO | 15552 | |
CT | 288349 | |
DE | 268773 | |
DC | 35499 |
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
State | Petroleum | |
---|---|---|
AL | 163054 | |
AK | 1191884 | |
AZ | 67337 | |
AR | 87674 | |
CA | 1638019 | |
CO | 15552 | |
CT | 288349 | |
DE | 268773 | |
DC | 35499 |
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
State,EnergyGeneration | |
AL,163054 | |
AK,1191884 | |
AZ,67337 | |
AR,87674 | |
CA,1638019 | |
CO,15552 | |
CT,288349 | |
DE,268773 | |
DC,35499 |
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
State | Petroleum | |
---|---|---|
AL | 163054 | |
AK | 1191884 | |
AZ | 67337 | |
AR | 87674 | |
CA | 1638019 | |
CO | 15552 | |
CT | 288349 | |
DE | 268773 | |
DC | 35499 |
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
State | EnergyGeneration | |
---|---|---|
AL | 142960819.054 | |
AK | 6541674.545 | |
AZ | 112066600.784 | |
AR | 57499168.782 | |
CA | 204824248.739 | |
CO | 50451388.159 | |
CT | 31172259.581 | |
DE | 5010634.062 | |
DC | 35499 |
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
.globl main | |
.data | |
new_line : .asciiz "\n" | |
.align 5 | |
space_char: .asciiz " " | |
.align 5 | |
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
''' | |
mnist digit recognition with tf | |
by Ali Aminian | |
''' | |
import numpy as np | |
import tensorflow as tf | |
from tensorflow.examples.tutorials.mnist import input_data |
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
''' | |
Summation of two numbers using RNN model | |
by Ali Aminian | |
''' | |
import random | |
import sys | |
import os | |
import numpy as np |
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
''' | |
Minimal Character-level RNN model. | |
By Ali Aminian | |
''' | |
import numpy as np | |