I hereby claim:
- I am vaibhav-jain on github.
- I am iamvaibhavjain (https://keybase.io/iamvaibhavjain) on keybase.
- I have a public key ASBgbSzYTnrZ-mIEoiD42y8fF4CMHUHMIQNfM4_qM68wyQo
To claim this, I am signing this object:
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
This file contains 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
$ git push -f aws master:master | |
Total 0 (delta 0), reused 0 (delta 0) | |
remote: master | |
To [email protected]:omapi | |
! [remote rejected] master -> master (pre-receive hook declined) | |
error: failed to push some refs to '[email protected]:omapi' |
This file contains 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
import sys | |
import inspect | |
from pprint import pprint | |
clsmembers = inspect.getmembers(sys.modules[__name__], inspect.isclass) | |
l = list() | |
for k, v in clsmembers: | |
l.append(k) | |
pprint(set(l)) |
This file contains 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
#!/usr/bin/env python | |
import os | |
import numpy as np | |
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' | |
import tflearn | |
from tflearn.data_utils import load_csv | |
from tflearn.datasets import titanic |
This file contains 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
#!/usr/bin/env python | |
import numpy as np | |
from sklearn import tree | |
from sklearn.datasets import load_iris | |
iris = load_iris() | |
test_tdx = [0, 50, 100] | |
# training data |
This file contains 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
#!/usr/bin/env python | |
# My first Machine Learning Program. | |
from sklearn import tree | |
""" | |
Apple & oranges problem [Weight, Texture] | |
""" | |
features1 = [ | |
[140, 0], |
NewerOlder