Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pull request #2

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
521b9ea
README.md created online with Bitbucket
malleshamdasari Jan 8, 2018
2d5a40f
initial analysis
ysqyang Jan 8, 2018
8346d47
added grid search and k-fold cv
ysqyang Jan 16, 2018
81ee4f1
replaced decision tree with random forest and added ROC code
ysqyang Jan 17, 2018
011302f
adding more data
Jan 17, 2018
b3b1f7d
adding new data set
Jan 17, 2018
347034c
added ROC plots
ysqyang Jan 18, 2018
943b13e
added ROC plots
ysqyang Jan 18, 2018
4fc7374
added MLP and adaboost; trained and tested s2, s6, pixel
ysqyang Jan 20, 2018
a31e844
added precision, recall and f1 score for all classes
ysqyang Jan 22, 2018
c6929b8
df
Jan 22, 2018
9d4711a
sdfhkd
Jan 22, 2018
040538d
added SVC visualization
ysqyang Jan 26, 2018
5f04264
added SVC visualization
ysqyang Jan 26, 2018
42a46b5
Merge branch 'master' of https://bitbucket.org/mallesh823/video-qoe-l…
ysqyang Jan 26, 2018
dad011a
added visualization for all classifiers
ysqyang Jan 27, 2018
54ccc5c
added result discussion
ysqyang Jan 27, 2018
e7bff51
adding some changes
Jan 28, 2018
8e8a574
adding regression data
Feb 9, 2018
85ad7db
added regression
ysqyang Feb 11, 2018
c8129da
adding new data
Feb 13, 2018
17b7bab
2/12/18
ysqyang Feb 13, 2018
529de1d
2/12/18
ysqyang Feb 13, 2018
965685b
regression cross_training_testing
ysqyang Feb 14, 2018
feeb6c9
regression cross_tr_te
ysqyang Feb 14, 2018
aa9ea6b
added feature importance plot
ysqyang Feb 15, 2018
7d8c4ec
20 tr-te splits
ysqyang Feb 15, 2018
e5d50ae
20 tr-te splits
ysqyang Feb 15, 2018
1f692a9
added AUC
ysqyang Feb 16, 2018
b2aa31b
added y-y plot and auc for middle class
ysqyang Feb 16, 2018
22a749f
added ROC for each class
ysqyang Feb 16, 2018
cdea458
restored cross tr-te
ysqyang Feb 16, 2018
6c4713b
fixed to_label
ysqyang Feb 19, 2018
3a24a68
4/13/18
ysqyang Apr 14, 2018
a9c0240
VQA_deep_learning initial commit
ysqyang Apr 21, 2018
1025390
revised
malleshamdasari Apr 27, 2018
a9594fe
added ResNet block and inception module
ysqyang May 1, 2018
7cb7e43
deleted old files
ysqyang May 1, 2018
53fe755
added ResNet block and inception module
ysqyang May 1, 2018
cdb8da2
Delete VQA_deep_learning.ipynb
ysqyang May 1, 2018
275c0c2
added ResNet block and inception module
ysqyang May 1, 2018
3b651ac
more work to be done
ysqyang May 1, 2018
da2451b
implemented ResNet model class
ysqyang May 5, 2018
c1b3c16
CIFAR10 extract and download
ysqyang May 5, 2018
ccbeea1
nothing
ysqyang May 5, 2018
836eb12
added file for building Resnet estimator
ysqyang May 7, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions CIFAR10_extract_download.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"from __future__ import absolute_import\n",
"from __future__ import division\n",
"from __future__ import print_function\n",
"\n",
"import argparse\n",
"import os\n",
"import sys\n",
"import tarfile\n",
"\n",
"from six.moves import urllib\n",
"import tensorflow as tf"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
">> Downloading cifar-10-binary.tar.gz 100.0%\n",
"Successfully downloaded cifar-10-binary.tar.gz 170052171 bytes.\n"
]
},
{
"ename": "SystemExit",
"evalue": "",
"output_type": "error",
"traceback": [
"An exception has occurred, use %tb to see the full traceback.\n",
"\u001b[0;31mSystemExit\u001b[0m\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/ysqyang/anaconda3/envs/tensorflow/lib/python3.6/site-packages/IPython/core/interactiveshell.py:2918: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D.\n",
" warn(\"To exit: use 'exit', 'quit', or Ctrl-D.\", stacklevel=1)\n"
]
}
],
"source": [
"DATA_URL = 'https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz'\n",
"\n",
"parser = argparse.ArgumentParser()\n",
"\n",
"parser.add_argument(\n",
" '--data_dir', type=str, default='/tmp/cifar10_data',\n",
" help='Directory to download data and extract the tarball')\n",
"\n",
"\n",
"def main(_):\n",
" \"\"\"Download and extract the tarball from Alex's website.\"\"\"\n",
" if not os.path.exists(FLAGS.data_dir):\n",
" os.makedirs(FLAGS.data_dir)\n",
" \n",
" filename = DATA_URL.split('/')[-1]\n",
" filepath = os.path.join(FLAGS.data_dir, filename)\n",
"\n",
" if not os.path.exists(filepath):\n",
" def _progress(count, block_size, total_size):\n",
" sys.stdout.write('\\r>> Downloading %s %.1f%%' % (\n",
" filename, 100.0 * count * block_size / total_size))\n",
" sys.stdout.flush()\n",
"\n",
" filepath, _ = urllib.request.urlretrieve(DATA_URL, filepath, _progress)\n",
" print()\n",
" statinfo = os.stat(filepath)\n",
" print('Successfully downloaded', filename, statinfo.st_size, 'bytes.')\n",
"\n",
" tarfile.open(filepath, 'r:gz').extractall(FLAGS.data_dir)\n",
"\n",
"\n",
"if __name__ == '__main__':\n",
" FLAGS, unparsed = parser.parse_known_args()\n",
" tf.app.run(argv=[sys.argv[0]] + unparsed)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
405 changes: 0 additions & 405 deletions Model2.ipynb

This file was deleted.

219 changes: 0 additions & 219 deletions Model2.py

This file was deleted.

2 changes: 0 additions & 2 deletions README.md

This file was deleted.

Loading