Become a member
Sign in
Vaibhav Vasani
Vaibhav Vasani

Vaibhav Vasani

24 Following
10 Followers
  • Profile
  • Claps
  • Highlights

Highlighted by Vaibhav Vasani

See more

From Using categorical data in machine learning with python: from dummy variables to Deep category… by yonatan hadar

…n)
X_test_hash = copy.copy(X_test)
for i in range(X_train_hash.shape[1]):
X_train_hash.iloc[:,i]=X_train_hash.iloc[:,i].astype('str')
for i in range(X_test_hash.shape[1]):
X_test_hash.iloc[:,i]…

Claps from Vaibhav Vasani

See more

How to Automatically Import Your Favorite Libraries into IPython or a Jupyter Notebook

Will Koehrsen

What exactly can you do with Python? Here are Python's 3 main applications.

YK Sugi

How to build your own Neural Network from scratch in Python

James Loy