In [ ]:
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
import h5py
import seaborn

In [ ]:
with h5py.File('sample-1.h5', 'r') as file:
    features = file['x'][:]
    labels = file['y'][:]

In [ ]:
plt.scatter(features, labels)
plt.show()

In [ ]: