Last active
May 22, 2020 19:29
-
-
Save karanpathak/6de43b46ee04a9874d0715f92dd4aadb to your computer and use it in GitHub Desktop.
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
input1 = np.vander(np.arange(10**4)).astype(np.float) | |
input2 = np.vander(np.random.uniform(low=0,high=10**5, size=5000)) | |
print("Shape of input1: ",input1.shape) | |
print("Shape of input2: ",input2.shape) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment