ARATA Mizuki
ARATA Mizuki
本書を読んで気づいた誤植等を指摘させていただきます。 |ページ|誤|正| |:-:|:-:|:-:| | 4章 p93 本文 | torchvidsion.models | torchvision.models | | 6章 p165 本文 | 'tain+unlabeled' | 'train+unlabeled' | | 6章 p167 本文 | real_targetl「1」 | 「1」(?) |...
`chapter4/section4_2.ipynb` では使用するデータセットについて ```python # 定義したDatasetとDataLoaderを使います。 custom_train_dataset = CustomDataset(root, data_transforms["train"], train=True) train_loader = torch.utils.data.DataLoader(...) custom_test_dataset = CustomDataset(root, data_transforms["val"]) test_loader = torch.utils.data.DataLoader(...) ``` と初期化していますが、 `CustomDataset` の定義は ```python class CustomDataset(torch.utils.data.Dataset): ... def __init__(self,...
Emitting type definitions for [Flow](https://flow.org/en/) shouldn't be too hard. According to [Flow docs](https://flow.org/en/docs/libdefs/creation/), the name of type definition files should be `*.js.flow`. Unfortunately I don't use Flow myself, and I'm...
There should be an easy way for a npm user to install this tool. Since this tool is written in Haskell, this is not trivial. Some choices are: * Binary...
I think Lua is a good language for some little scripting, but not very good for a complex application like ClutTeX. I want to switch to a statically-typed language. However,...
When building ndi-python with virtualenv without activating it, cmake tries to find system-installed python: ```sh $ # No myenv/bin/activate! $ myenv/bin/python setup.py build ... -- Found PythonInterp: -- Found PythonLibs:...
Thank you for this useful library! I think the library can release the GIL when the operation blocks. So I propose to add `py::gil_scoped_release` to functions with timeout parameter.
#69 の修正を試みてみました。 Fixes #69.
現状だと閉じ角括弧 `]` を含むキャプションや脚注が、角括弧がエスケープされずに出力されてしまうようです。例えば、以下のMarkdownが ```markdown foo[^1] [^1]: Hello [world]! `[GOODBYE]` ![This is \[caption\]](foo.png) | foo | bar | |-|-| | baz | bazz | Table: \[foo\] ``` 以下のRe:VIEWに変換されます。 ``` foo@{fn1} //image[foo][This...