This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| y_pred | y_test | diff | abs_diff | |
|---|---|---|---|---|
| 0.264 | 0.282 | -0.018 | 0.018 | |
| 0.514 | 0.409 | 0.105 | 0.105 | |
| 0.340 | 0.318 | 0.022 | 0.022 | |
| 0.184 | 0.145 | 0.039 | 0.039 | |
| 0.365 | 0.387 | -0.022 | 0.022 | |
| 0.542 | 0.574 | -0.033 | 0.033 | |
| 0.319 | 0.360 | -0.041 | 0.041 | |
| 0.431 | 0.429 | 0.002 | 0.002 | |
| 0.262 | 0.344 | -0.082 | 0.082 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from tensorflow import keras | |
| from keras.models import Sequential | |
| from keras import layers | |
| from keras.optimizers import Adam | |
| def generate_model(): | |
| """Creates the model and compiles it""" | |
| model = Sequential() | |
| model.add(layers.Conv1D(4, 6, padding='valid', kernel_regularizer='l2', input_shape=(100, 1))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from sentence_transformers import SentenceTransformer | |
| from deep_translator import GoogleTranslator | |
| import langdetect | |
| import textwrap | |
| import random | |
| import lyricsgenius | |
| GENIUS_TOKEN = "XXXXXXXXXXXXXXXX" | |
| class LyricsGatherer: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ip | ip2location | ipinfo | db-ip | maxmind | |
|---|---|---|---|---|---|
| 52.84.68.29 | Spain | Spain | Spain | United States | |
| 34.243.188.235 | Ireland | Ireland | Ireland | Ireland | |
| 52.44.62.213 | United States | United States | United States | United States | |
| 52.84.68.82 | Spain | Spain | Spain | United States | |
| 52.84.68.5 | Spain | Spain | Spain | United States | |
| 52.84.68.19 | Spain | Spain | Spain | United States | |
| 82.165.74.143 | Germany | Germany | Germany | Germany | |
| 203.171.211.174 | India | India | India | India | |
| 103.147.26.115 | India | India | India | India |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| timestamp | ip | country | |
|---|---|---|---|
| 29/11/2021 18:23:25 | 142.250.185.10 | Spain | |
| 29/11/2021 18:33:27 | 142.250.200.138 | United States | |
| 29/11/2021 18:43:30 | 172.217.17.10 | Spain | |
| 29/11/2021 18:53:32 | 172.217.168.170 | Spain | |
| 29/11/2021 19:03:34 | 142.250.200.74 | United States | |
| 29/11/2021 19:13:37 | 216.58.215.138 | Spain | |
| 29/11/2021 19:23:39 | 142.250.184.170 | Spain | |
| 29/11/2021 19:33:42 | 142.250.178.170 | Spain | |
| 29/11/2021 19:43:44 | 142.250.185.10 | Spain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Artist | Versatility Score | |
|---|---|---|
| Tiësto | 12 | |
| Diplo | 12 | |
| BTS | 11 | |
| Bad Bunny | 11 | |
| Juice WRLD | 11 | |
| Ozuna | 11 | |
| Drake | 10 | |
| Kanye West | 10 | |
| David Guetta | 10 |