├── .gitignore ├── LICENSE ├── README.md ├── Spotify_Trends_2023_Analysis.ipynb ├── Spotify_Trends_2023_Analysis.pdf ├── Spotify_Trends_2023_Report.md ├── data ├── random_test_image_path.jpg └── spotify-2023.csv ├── my_model.keras └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/README.md -------------------------------------------------------------------------------- /Spotify_Trends_2023_Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/Spotify_Trends_2023_Analysis.ipynb -------------------------------------------------------------------------------- /Spotify_Trends_2023_Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/Spotify_Trends_2023_Analysis.pdf -------------------------------------------------------------------------------- /Spotify_Trends_2023_Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/Spotify_Trends_2023_Report.md -------------------------------------------------------------------------------- /data/random_test_image_path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/data/random_test_image_path.jpg -------------------------------------------------------------------------------- /data/spotify-2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/data/spotify-2023.csv -------------------------------------------------------------------------------- /my_model.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/my_model.keras -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByPinar/Spotify_Trends_2023_Analysis/HEAD/requirements.txt --------------------------------------------------------------------------------