Skip to content

Instantly share code, notes, and snippets.

View SnoWAVI's full-sized avatar

Aleksandr Ivanov SnoWAVI

View GitHub Profile
@SnoWAVI
SnoWAVI / Parkinsins_desease.ipynb
Created November 24, 2025 12:16
ML of parkinsons desease by voice
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SnoWAVI
SnoWAVI / Fake_news_ML.py
Created November 18, 2025 19:40
First ML on fake news dataset
from sklearn import datasets, linear_model, metrics, model_selection
import pandas as pd
from sklearn.feature_extraction.text import TfidfVectorizer
import warnings
import seaborn as sns
import matplotlib.pyplot as plt
import plotly.graph_objects as go
#Hide warning messages
warnings.filterwarnings('ignore')