This document explains how to adapt the original JH notebook from Kaggle to run it in the RedHat Openshift Data Science sandbox.
Original
import pandas as pd
import numpy as np
import tensorflow as tf| -- 1: We need to create the table to read the data | |
| CREATE TABLE IF NOT EXISTS hive.fraud.fraud_data | |
| ( | |
| time VARCHAR, | |
| v1 VARCHAR, | |
| v2 VARCHAR, | |
| v3 VARCHAR, | |
| v4 VARCHAR, | |
| v5 VARCHAR, |
This document explains how to adapt the original JH notebook from Kaggle to run it in the RedHat Openshift Data Science sandbox.
Original
import pandas as pd
import numpy as np
import tensorflow as tf