├── .gitignore ├── README.md ├── deepnet.py └── feature_engineering.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/** 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkrthakur/is_that_a_duplicate_quora_question/HEAD/README.md -------------------------------------------------------------------------------- /deepnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkrthakur/is_that_a_duplicate_quora_question/HEAD/deepnet.py -------------------------------------------------------------------------------- /feature_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekkrthakur/is_that_a_duplicate_quora_question/HEAD/feature_engineering.py --------------------------------------------------------------------------------