Skip to content

Commit

Permalink
integrate article into blog (fix #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuji96 committed Oct 20, 2023
1 parent 5512d36 commit 87f4d7b
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# my settings
tmp
_cache
_posts/unpublished

# hidden files
.*
Expand Down
11 changes: 11 additions & 0 deletions _posts/blog/0000-00-00-_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
categories:
- article
date: 0000-00-00 00:00:00 +0900
math: true
tags:
- WIP
title: title
parse_block_html: true
published: false
---
37 changes: 37 additions & 0 deletions _posts/blog/0000-00-00-matplotlib-hack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
categories:
- article
date: 0000-00-00 00:00:00 +0900
math: true
tags:
- WIP
title: title
parse_block_html: true
published: false
---

## colorbar が押しつぶして plotarea のサイズが合わない

両方で colorbar を作って片方消す。

```python
plot
fig.colorbar(im, aspect=10, pad=0.05)
fig.delaxes(fig.axes[1])

plot
fig.colorbar(im, aspect=10, pad=0.05)
```

でもコレすると minipage の width が一致しないのでどうしたろうかしゃん。
subplot?あれは subcaption 使えないからダメ。

## 保存時に文字がはみ出す

```python
plt.savefig(f"figure.pdf", bbox_inches='tight', pad_inches=0.0)
```

## latex のならべかた

改行を消すと横につながる。まじかよ。
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ date: 2023-02-17 00:00:00 +0900
math: true
tags:
- NLP
- WIP
title: 自分なりの Self Attention の解釈
parse_block_html: true
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ date: 2023-07-01 00:00:00 +0900
math: true
tags:
- NLP
- WIP
title: S4 の数式を全部理解したい
parse_block_html: true
---
Expand Down
File renamed without changes.
40 changes: 40 additions & 0 deletions _posts/blog/2023-10-16-what-is-paper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
categories:
- article
date: 0000-00-00 00:00:00 +0900
math: true
tags:
- WIP
title: 論文ってこういうモノ
parse_block_html: true
published: false
---

## Abstract

## Introduction

近年、小学生はハンバーグが大好きである (給食係 et. al. 2012, 2023).
実は、チーズが好きな人も多いのである (我が子, 2023)

## Experiment

- 普通のハンバーグ (baseline)
- ハンバーグにチーズソースをかけた場合
- チーズ in ハンバーグの場合

### Evaluation

客観: カロリーと栄養バランスの測定
主観: 給食で出したときの感想

### Results

チーズ in ハンバーグの方が

## Conclusion

## Limitation

チーズはとろけるスライスチーズで検証した。モッツァレラチーズなど、種類を変えると結果は変わるかもしれない。
しかし、毎日給食でチーズ in ハンバーグを出すわけにもいかないので検証には時間がかかる。

0 comments on commit 87f4d7b

Please sign in to comment.