# Machine learning algorithms A collection of minimal and clean implementations of machine learning algorithms. ### Why? This project is targeting people who want to learn internals of ml algorithms or implement them from scratch. The code is much e
ML模型
许多常见ML模型的自制实现,包括神经网络,线性模型和决策树。
强调
MNIST基准
导入/获取数据
import numpy as np
np . random . seed ( 0 )
import matplotlib . pyplot as plt
% matplotlib inline
from functools import reduce
import neuralNet as nn
import utils as u
from torchvision import dat