diff --git a/build.py b/build.py index 0b86a28..fe51985 100644 --- a/build.py +++ b/build.py @@ -1,22 +1,131 @@ +import requests +import pandas as pd +from collections import defaultdict + def get_user_repos_count(username): - pass + url = "https://api.github.com/users/%s/repos"%username + request = requests.get(url) + + if request.status_code != 200: + return -1 + + repositories = request.json() + return len(repositories) def get_user_liked_repos_count(username): - pass + url = "https://api.github.com/users/%s/starred"%username + request = requests.get(url) + + if request.status_code != 200: + return -1 + starred = request.json() + return len(starred) # Getting 30 whereas actual count is 71 !!! + # solution seen here + # https://stackoverflow.com/questions/30636798/get-user-total-starred-count-using-github-api-v3 def get_user_liked_repos(username): - pass + liked_repos = [] + + url = "https://api.github.com/users/%s/starred"%username + request = requests.get(url) + + if request.status_code != 200: + return None + + starred = request.json() + for data in starred: + liked_repos.append(data["name"]+data["html_url"]) + + liked_repo_df = pd.DataFrame(data=liked_repos,columns=['name+url']) + return liked_repo_df def get_user_liked_repos_owners(username): - pass + liked_repo_owners = [] + + url = "https://api.github.com/users/%s/starred"%username + request = requests.get(url) + + if request.status_code != 200: + return None + + starred = request.json() + for data in starred: + owner_data = data['owner'] + liked_repo_owners.append(owner_data['login']+owner_data['html_url']) + + liked_repo_owners_df = pd.DataFrame(data=liked_repo_owners,columns=['github_name+github_url']) + + return liked_repo_owners_df def get_owners_liked_repos(username): - pass + lis = [] + + url = "https://api.github.com/users/%s/starred"%username + request = requests.get(url) + #print "status_code ",request.status_code + if request.status_code != 200: + return None + + starred = request.json() + + for data in starred: + lis.append(('repo_name',data['name'])) + lis.append(('repo_url',data['html_url'])) + + owner_data = data['owner'] + lis.append(('owner_name',owner_data['login'])) + lis.append(('owner_profile_url',owner_data['html_url'])) + + sub_url = "https://api.github.com/users/%s/starred"%owner_data['login'] + sub_request = requests.get(url) + + sub_starred = request.json() + + for sub_data in sub_starred: + lis.append(('repo_liked_by_owner',sub_data['name'])) + lis.append(('repo_url_liked_by_owner',sub_data['html_url'])) + + dic = defaultdict(list) + for keys,values in lis: + dic[keys].append(values) + + dataframe = pd.DataFrame.from_dict(dic,orient='index') + #print dataframe.head() + transposed = dataframe.transpose() + #print transposed.head() + transposed.to_csv('git.csv',index=False) + + return dataframe.transpose() def get_owners_liked_repos_summary(username): - pass + url = "https://api.github.com/users/%s/starred"%username + request = requests.get(url) + + #print "status_code ",request.status_code + if request.status_code != 200: + return None + + lis1 = [] + lis2 = [] + return_list = [] + df = pd.read_csv('git.csv') + df2 = df.groupby(['repo_url_liked_by_owner','repo_name']).count().head().reset_index() + df2 = df2[['repo_url_liked_by_owner','repo_name']] + lis1 = df2['repo_url_liked_by_owner'].tolist() + lis2 = df2['repo_name'].tolist() + for i in range(len(lis1)): # or lis, both will have same length due to head() + return_list.append((lis1[i],lis2[i])) + + return return_list + +#get_user_repos_count("karpathy") +#get_user_liked_repos_count("karpathy") +#get_user_liked_repos("karpathy") +#get_user_liked_repos_owners("karpathy") +#get_owners_liked_repos("karpathy") +#get_owners_liked_repos_summary("karpathy") diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..47bf15a Binary files /dev/null and b/build.pyc differ diff --git a/git.csv b/git.csv new file mode 100644 index 0000000..38a4beb --- /dev/null +++ b/git.csv @@ -0,0 +1,901 @@ +owner_name,owner_profile_url,repo_url_liked_by_owner,repo_url,repo_liked_by_owner,repo_name +albanie,https://github.com/albanie,https://github.com/albanie/SIGBOVIK17-GUNs,https://github.com/albanie/SIGBOVIK17-GUNs,SIGBOVIK17-GUNs,SIGBOVIK17-GUNs +sourcegraph,https://github.com/sourcegraph,https://github.com/sourcegraph/thyme,https://github.com/sourcegraph/thyme,thyme,thyme +nicolashery,https://github.com/nicolashery,https://github.com/nicolashery/mac-dev-setup,https://github.com/nicolashery/mac-dev-setup,mac-dev-setup,mac-dev-setup +jcjohnson,https://github.com/jcjohnson,https://github.com/jcjohnson/densecap,https://github.com/jcjohnson/densecap,densecap,densecap +dritchie,https://github.com/dritchie,https://github.com/dritchie/adnn,https://github.com/dritchie/adnn,adnn,adnn +yueatsprograms,https://github.com/yueatsprograms,https://github.com/yueatsprograms/Stochastic_Depth,https://github.com/yueatsprograms/Stochastic_Depth,Stochastic_Depth,Stochastic_Depth +jcjohnson,https://github.com/jcjohnson,https://github.com/jcjohnson/torch-rnn,https://github.com/jcjohnson/torch-rnn,torch-rnn,torch-rnn +facebook,https://github.com/facebook,https://github.com/facebook/fb.resnet.torch,https://github.com/facebook/fb.resnet.torch,fb.resnet.torch,fb.resnet.torch +pkmital,https://github.com/pkmital,https://github.com/pkmital/tensorflow_tutorials,https://github.com/pkmital/tensorflow_tutorials,tensorflow_tutorials,tensorflow_tutorials +KaimingHe,https://github.com/KaimingHe,https://github.com/KaimingHe/deep-residual-networks,https://github.com/KaimingHe/deep-residual-networks,deep-residual-networks,deep-residual-networks +waylonflinn,https://github.com/waylonflinn,https://github.com/waylonflinn/weblas,https://github.com/waylonflinn/weblas,weblas,weblas +siemanko,https://github.com/siemanko,https://github.com/siemanko/tf-adversarial,https://github.com/siemanko/tf-adversarial,tf-adversarial,tf-adversarial +ckreibich,https://github.com/ckreibich,https://github.com/ckreibich/scholar.py,https://github.com/ckreibich/scholar.py,scholar.py,scholar.py +sherjilozair,https://github.com/sherjilozair,https://github.com/sherjilozair/char-rnn-tensorflow,https://github.com/sherjilozair/char-rnn-tensorflow,char-rnn-tensorflow,char-rnn-tensorflow +nlintz,https://github.com/nlintz,https://github.com/nlintz/TensorFlow-Tutorials,https://github.com/nlintz/TensorFlow-Tutorials,TensorFlow-Tutorials,TensorFlow-Tutorials +PrincetonVision,https://github.com/PrincetonVision,https://github.com/PrincetonVision/marvin,https://github.com/PrincetonVision/marvin,marvin,marvin +tensorflow,https://github.com/tensorflow,https://github.com/tensorflow/tensorflow,https://github.com/tensorflow/tensorflow,tensorflow,tensorflow +ShaoqingRen,https://github.com/ShaoqingRen,https://github.com/ShaoqingRen/faster_rcnn,https://github.com/ShaoqingRen/faster_rcnn,faster_rcnn,faster_rcnn +GitbookIO,https://github.com/GitbookIO,https://github.com/GitbookIO/gitbook,https://github.com/GitbookIO/gitbook,gitbook,gitbook +jcjohnson,https://github.com/jcjohnson,https://github.com/jcjohnson/neural-style,https://github.com/jcjohnson/neural-style,neural-style,neural-style +tkocisky,https://github.com/tkocisky,https://github.com/tkocisky/oxnn,https://github.com/tkocisky/oxnn,oxnn,oxnn +hardmaru,https://github.com/hardmaru,https://github.com/hardmaru/neuralslimevolley,https://github.com/hardmaru/neuralslimevolley,neuralslimevolley,neuralslimevolley +Newmu,https://github.com/Newmu,https://github.com/Newmu/Theano-Tutorials,https://github.com/Newmu/Theano-Tutorials,Theano-Tutorials,Theano-Tutorials +phanein,https://github.com/phanein,https://github.com/phanein/deepwalk,https://github.com/phanein/deepwalk,deepwalk,deepwalk +Sohl-Dickstein,https://github.com/Sohl-Dickstein,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,Sum-of-Functions-Optimizer,Sum-of-Functions-Optimizer +jcjohnson,https://github.com/jcjohnson,https://github.com/jcjohnson/simple-amt,https://github.com/jcjohnson/simple-amt,simple-amt,simple-amt +erikbern,https://github.com/erikbern,https://github.com/erikbern/deep-pink,https://github.com/erikbern/deep-pink,deep-pink,deep-pink +IoannisAntonoglou,https://github.com/IoannisAntonoglou,https://github.com/IoannisAntonoglou/optimBench,https://github.com/IoannisAntonoglou/optimBench,optimBench,optimBench +jetpacapp,https://github.com/jetpacapp,https://github.com/jetpacapp/DeepBeliefSDK,https://github.com/jetpacapp/DeepBeliefSDK,DeepBeliefSDK,DeepBeliefSDK +jnordberg,https://github.com/jnordberg,https://github.com/jnordberg/gif.js,https://github.com/jnordberg/gif.js,gif.js,gif.js +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, +,,https://github.com/albanie/SIGBOVIK17-GUNs,,SIGBOVIK17-GUNs, +,,https://github.com/sourcegraph/thyme,,thyme, +,,https://github.com/nicolashery/mac-dev-setup,,mac-dev-setup, +,,https://github.com/jcjohnson/densecap,,densecap, +,,https://github.com/dritchie/adnn,,adnn, +,,https://github.com/yueatsprograms/Stochastic_Depth,,Stochastic_Depth, +,,https://github.com/jcjohnson/torch-rnn,,torch-rnn, +,,https://github.com/facebook/fb.resnet.torch,,fb.resnet.torch, +,,https://github.com/pkmital/tensorflow_tutorials,,tensorflow_tutorials, +,,https://github.com/KaimingHe/deep-residual-networks,,deep-residual-networks, +,,https://github.com/waylonflinn/weblas,,weblas, +,,https://github.com/siemanko/tf-adversarial,,tf-adversarial, +,,https://github.com/ckreibich/scholar.py,,scholar.py, +,,https://github.com/sherjilozair/char-rnn-tensorflow,,char-rnn-tensorflow, +,,https://github.com/nlintz/TensorFlow-Tutorials,,TensorFlow-Tutorials, +,,https://github.com/PrincetonVision/marvin,,marvin, +,,https://github.com/tensorflow/tensorflow,,tensorflow, +,,https://github.com/ShaoqingRen/faster_rcnn,,faster_rcnn, +,,https://github.com/GitbookIO/gitbook,,gitbook, +,,https://github.com/jcjohnson/neural-style,,neural-style, +,,https://github.com/tkocisky/oxnn,,oxnn, +,,https://github.com/hardmaru/neuralslimevolley,,neuralslimevolley, +,,https://github.com/Newmu/Theano-Tutorials,,Theano-Tutorials, +,,https://github.com/phanein/deepwalk,,deepwalk, +,,https://github.com/Sohl-Dickstein/Sum-of-Functions-Optimizer,,Sum-of-Functions-Optimizer, +,,https://github.com/jcjohnson/simple-amt,,simple-amt, +,,https://github.com/erikbern/deep-pink,,deep-pink, +,,https://github.com/IoannisAntonoglou/optimBench,,optimBench, +,,https://github.com/jetpacapp/DeepBeliefSDK,,DeepBeliefSDK, +,,https://github.com/jnordberg/gif.js,,gif.js, diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..296e001 Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_get_user_repos_count.pyc b/tests/test_get_user_repos_count.pyc new file mode 100644 index 0000000..516736e Binary files /dev/null and b/tests/test_get_user_repos_count.pyc differ