This commit is contained in:
@ -9,6 +9,16 @@ jobs:
|
|||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: https://gitee.com/mirror-actions/checkout@v4
|
uses: https://gitee.com/mirror-actions/checkout@v4
|
||||||
- run: cd ${{ gitea.workspace }}
|
- run: cd ${{ gitea.workspace }}
|
||||||
|
- name: Insert post image
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
post_content="$(cat post.html)"
|
||||||
|
find . -type f -name "*.md" -print0 | while IFS= read -r -d '' file; do
|
||||||
|
{
|
||||||
|
printf '\n'
|
||||||
|
printf '%s\n' "$post_content"
|
||||||
|
} >> "$file"
|
||||||
|
done
|
||||||
- run: npx refs-cli
|
- run: npx refs-cli
|
||||||
- name: copy exports to www
|
- name: copy exports to www
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@ -251,12 +251,3 @@ loss值长期卡在0.6~0.7代表着模型完全没能学习到任何信息
|
|||||||
|
|
||||||
软件会自动为您画出一张图。横坐标是“体积”,纵坐标是“颜色状态的概率”。
|
软件会自动为您画出一张图。横坐标是“体积”,纵坐标是“颜色状态的概率”。
|
||||||
|
|
||||||
|
|
||||||
## END
|
|
||||||
|
|
||||||
<!--rehype:wrap-style=text-align:center;-->
|
|
||||||
<img
|
|
||||||
src="https://flt6.top/today"
|
|
||||||
alt="封面图"
|
|
||||||
width="600"
|
|
||||||
/>
|
|
||||||
|
|||||||
23
post.html
Normal file
23
post.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
## END
|
||||||
|
|
||||||
|
<!--rehype:wrap-style=text-align:center;-->
|
||||||
|
<img
|
||||||
|
src="https://flt6.top/today"
|
||||||
|
class="responsive-img"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.responsive-img {
|
||||||
|
width: 50%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px), (orientation: portrait) {
|
||||||
|
.responsive-img {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@ -4,12 +4,3 @@ flt QRH
|
|||||||
[实验](./docs/实验.md) <!--rehype:style=background:rgb(79 91 147);-->
|
[实验](./docs/实验.md) <!--rehype:style=background:rgb(79 91 147);-->
|
||||||
[智能化实验](./docs/智能化实验.md) <!--rehype:style=background: #0F4954;-->
|
[智能化实验](./docs/智能化实验.md) <!--rehype:style=background: #0F4954;-->
|
||||||
<!--rehype:class=home-card-->
|
<!--rehype:class=home-card-->
|
||||||
|
|
||||||
## END
|
|
||||||
|
|
||||||
<!--rehype:wrap-style=text-align:center;-->
|
|
||||||
<img
|
|
||||||
src="https://flt6.top/today"
|
|
||||||
alt="封面图"
|
|
||||||
width="600"
|
|
||||||
/>
|
|
||||||
|
|||||||
Reference in New Issue
Block a user