You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Or download it and add it by hand in your repository.
Step 2: Preprocessed the links
Transformed the data to make it compatible with the model we want to train.Segmented the URLs into parts according to their punctuation marks, remove stopwords, lemmatize, and so on.
Make sure to conveniently split the dataset intotrain andtest.
Step 3: Built an SVM
Start solving the problem by implementing an SVM with the default parameters. Trained it and analyzed its results.
Step 4: Optimized the previous model
After training the SVM, I optimized its hyperparameters using a grid search or a random search.