├── .gitignore ├── .ipynb_checkpoints └── title-success-prediction-checkpoint.ipynb ├── README.md ├── dataset ├── .ipynb_checkpoints │ └── dataset-tweets-final-checkpoint.json └── dataset-tweets-final.json ├── final-report.pdf ├── proposal └── proposal.pdf ├── support-material ├── capstone_proposal_template.md ├── capstone_report_template.md ├── proposal_project_description.md ├── report-example-1.pdf ├── report-example-2.pdf ├── report-example-3.pdf └── title-success-prediction.ipynb └── title-success-prediction.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ -------------------------------------------------------------------------------- /.ipynb_checkpoints/title-success-prediction-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/.ipynb_checkpoints/title-success-prediction-checkpoint.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/README.md -------------------------------------------------------------------------------- /dataset/.ipynb_checkpoints/dataset-tweets-final-checkpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/dataset/.ipynb_checkpoints/dataset-tweets-final-checkpoint.json -------------------------------------------------------------------------------- /dataset/dataset-tweets-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/dataset/dataset-tweets-final.json -------------------------------------------------------------------------------- /final-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/final-report.pdf -------------------------------------------------------------------------------- /proposal/proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/proposal/proposal.pdf -------------------------------------------------------------------------------- /support-material/capstone_proposal_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/capstone_proposal_template.md -------------------------------------------------------------------------------- /support-material/capstone_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/capstone_report_template.md -------------------------------------------------------------------------------- /support-material/proposal_project_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/proposal_project_description.md -------------------------------------------------------------------------------- /support-material/report-example-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/report-example-1.pdf -------------------------------------------------------------------------------- /support-material/report-example-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/report-example-2.pdf -------------------------------------------------------------------------------- /support-material/report-example-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/report-example-3.pdf -------------------------------------------------------------------------------- /support-material/title-success-prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/support-material/title-success-prediction.ipynb -------------------------------------------------------------------------------- /title-success-prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviohenriquecbc/machine-learning-capstone-project/HEAD/title-success-prediction.ipynb --------------------------------------------------------------------------------