Skip to content

Instantly share code, notes, and snippets.

@Chiraagkv
Created February 25, 2022 06:40
Show Gist options
  • Save Chiraagkv/5895aace6624fbc2e45890148d6a07b3 to your computer and use it in GitHub Desktop.
Save Chiraagkv/5895aace6624fbc2e45890148d6a07b3 to your computer and use it in GitHub Desktop.
import numpy as np
def hypothesis_function(θ, x):
return np.matmul(np.array(θ).T, np.array(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment