-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhat_i_do.html
More file actions
54 lines (54 loc) · 2.15 KB
/
Copy pathwhat_i_do.html
File metadata and controls
54 lines (54 loc) · 2.15 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>每周汇报</title>
<style>
.list{
font-size: 18px;
font-weight: bolder;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function (){
let listLinks = document.body.querySelectorAll('a.link');
listLinks.forEach(function(link) {
link.setAttribute('target', '_blank');
});
})
</script>
</head>
<body>
<div class="block">
<ul>
<li class="list">
第1周(~2024.6.29):<a href="https://www.robot-shadow.cn/extend/html/gaexa.html" class="link">
遗传算法学习与案例</a>
</li>
<li class="list">
第2周(6.29~7.6):<a href="https://www.robot-shadow.cn/extend/html/gaexa.html" class="link">
遗传算法之旅行商问题</a>
</li>
<li class="list">
第3周(7.6~7.20):<a href="https://www.robot-shadow.cn/extend/html/pytorch-learn.html" class="link">
两周的工作——pytorch的学习与工具matply开发汇报</a>
</li>
<li class="list">
第4周(7.20~7.27):<a href="https://www.robot-shadow.cn/extend/flutter/pso/assets/pso.html" class="link">
粒子群算法学习与案例,使用python-numpy与dart-matply两种实现</a>
</li>
<li class="list">
第5周(7.27~8.3):<a href="https://www.robot-shadow.cn/extend/html/8.2.html" class="link">
继续学习了Pytorch,涉及到多层感知机、过拟合、欠拟合、暂退法等概念</a>
</li>
<li class="list">
第6周(8.3~8.10):<a href="https://robot-shadow.cn/extend/html/aco.html" class="link">
aco算法(蚁群算法)</a>
</li>
<li class="list">
<a class="link" href="10.20.html">10月20日汇报了<b>并行机器调度问题的Gurobi实现</b></a>
</li>
</ul>
</div>
</body>
</html>