Category: Env

Bitwarden

# First step: run the docker and sign up a accountant for yourself # This is only a temp container […]

nltk_spam_dtr

# —————————— # 安装依赖库(如果未安装) # —————————— pip install textblob # 建议在终端运行,Jupyter 中加 !pip install 更稳妥 # —————————— # 导入必要库 # […]

dsctree_phishing_dtr

# —————————— # 导入必要库 # —————————— import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.model_selection […]

log_phishing_dtr

# —————————— # 导入必要库 # —————————— import pandas as pd import numpy as np from sklearn.model_selection import train_test_split from sklearn.linear_model […]

svm_spam_filter

# —————————— # 导入所需库 # —————————— import numpy as np import pandas as pd from sklearn.model_selection import train_test_split from sklearn.svm […]

prcp_spam_filter

# —————————— # 导入所需库 # —————————— import pandas as pd import numpy as np from sklearn.model_selection import train_test_split from sklearn.linear_model […]

lin_reg_pred

# —————————— # 导入所需库 # —————————— import numpy as np import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression # —————————— […]

matrix_opr

# —————————— # 导入必要的库 # —————————— import numpy as np # —————————— # 定义两个 3×3 的矩阵 A 和 B # […]

spam_filter

# —————————— # 导入必要的库 # —————————— from matplotlib.colors import ListedColormap import matplotlib.pyplot as plt import numpy as np # —————————— […]

clstr_model

# —————————— # 导入必要的库 # —————————— import pandas as pd import seaborn as sns from sklearn.decomposition import PCA from sklearn.mixture […]

Scroll to Top