Skip to content

Instantly share code, notes, and snippets.

@Praveenk8051
Created May 6, 2020 10:20
Show Gist options
  • Save Praveenk8051/50a9ef214469cde6e6e91299e1b924c8 to your computer and use it in GitHub Desktop.
Save Praveenk8051/50a9ef214469cde6e6e91299e1b924c8 to your computer and use it in GitHub Desktop.
load data for mnist
# load data and visualize the histogram
train = pd.read_csv("../input/train.csv")
test = pd.read_csv("../input/test.csv")
Y_train = train["label"]
X_train = train.drop(labels = ["label"],axis = 1)
g = sns.countplot(Y_train)
Y_train.value_counts()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment