├── .gitignore ├── .tmux.conf ├── LICENSE ├── README.md ├── dataset ├── PreprocessData.csv └── data.csv ├── images ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── notebooks ├── VisualizePreprocess.ipynb └── training_models.ipynb └── scripts ├── bash ├── git_star_pred_DO_conf cmds └── settingUpDOServer.sh ├── nodejs ├── getting_repos_v2.js ├── githubGraphQLApiCallsDO_V2.js ├── githubGraphQLApiCallsDO_V3.js ├── graphql queries ├── package.json ├── test.js └── test3.js └── python ├── json_to_csv.py └── merge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/.gitignore -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/.tmux.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/README.md -------------------------------------------------------------------------------- /dataset/PreprocessData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/dataset/PreprocessData.csv -------------------------------------------------------------------------------- /dataset/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/dataset/data.csv -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/images/4.png -------------------------------------------------------------------------------- /notebooks/VisualizePreprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/notebooks/VisualizePreprocess.ipynb -------------------------------------------------------------------------------- /notebooks/training_models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/notebooks/training_models.ipynb -------------------------------------------------------------------------------- /scripts/bash/git_star_pred_DO_conf cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/bash/git_star_pred_DO_conf cmds -------------------------------------------------------------------------------- /scripts/bash/settingUpDOServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/bash/settingUpDOServer.sh -------------------------------------------------------------------------------- /scripts/nodejs/getting_repos_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/nodejs/getting_repos_v2.js -------------------------------------------------------------------------------- /scripts/nodejs/githubGraphQLApiCallsDO_V2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/nodejs/githubGraphQLApiCallsDO_V2.js -------------------------------------------------------------------------------- /scripts/nodejs/githubGraphQLApiCallsDO_V3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/nodejs/githubGraphQLApiCallsDO_V3.js -------------------------------------------------------------------------------- /scripts/nodejs/graphql queries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/nodejs/graphql queries -------------------------------------------------------------------------------- /scripts/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/nodejs/package.json -------------------------------------------------------------------------------- /scripts/nodejs/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/nodejs/test3.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/json_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/python/json_to_csv.py -------------------------------------------------------------------------------- /scripts/python/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doodies/Github-Stars-Predictor/HEAD/scripts/python/merge.py --------------------------------------------------------------------------------