├── .gitignore ├── LICENSE ├── README.md └── notebook ├── AskUbuntu └── Question │ └── Word2Vec.ipynb ├── StackOverflow └── User │ └── ExploratoryAnalysis.ipynb ├── assets └── images │ └── python-logo-master-v3-TM.png └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/README.md -------------------------------------------------------------------------------- /notebook/AskUbuntu/Question/Word2Vec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/notebook/AskUbuntu/Question/Word2Vec.ipynb -------------------------------------------------------------------------------- /notebook/StackOverflow/User/ExploratoryAnalysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/notebook/StackOverflow/User/ExploratoryAnalysis.ipynb -------------------------------------------------------------------------------- /notebook/assets/images/python-logo-master-v3-TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/notebook/assets/images/python-logo-master-v3-TM.png -------------------------------------------------------------------------------- /notebook/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shagunsodhani/PyCon2016/HEAD/notebook/run.sh --------------------------------------------------------------------------------