-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello.py
More file actions
34 lines (29 loc) · 1.26 KB
/
Copy pathHello.py
File metadata and controls
34 lines (29 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
Welcome to the THU Machine Learning Sample Code Repository
清华大学机器学习课程 —— 样本代码仓库
基于 Bishop PRML, 西瓜书 (周志华), Murphy PML 体系构建
24章覆盖: 经典ML → 神经网络 → 深度学习 → 前沿应用
Part I 基础 (01-06): ML概论/线性回归/逻辑回归/模型选择/特征工程/概率
Part II 经典 (07-12): SVM/决策树/集成/KNN聚类/降维/异常检测
Part III 深度学习 (13-18): MLP/Optimizers/CNN/RNN/Transformer/迁移学习
Part IV 前沿 (19-24): 生成/强化/图学习/MLOps/公平性/LLM
运行: python3 filename.py
"""
def main():
print("=" * 52)
print(" THU Machine Learning Repo")
print(" 清华大学机器学习课程样本代码仓库")
print("=" * 52)
print()
print("Based on:")
print(" 周志华 <<机器学习>> (西瓜书)")
print(" Bishop <<Pattern Recognition and Machine Learning>>")
print(" Murphy <<Probabilistic Machine Learning>>")
print()
print("24 Chapters / scikit-learn + numpy + pytorch")
print(" Part I (01-06): Foundations")
print(" Part II (07-12): Classic Algorithms")
print(" Part III (13-18): Deep Learning")
print(" Part IV (19-24): Advanced & Frontiers")
if __name__ == "__main__":
main()