DL4USコンテンツ
https://weblab.t.u-tokyo.ac.jp/dl4us/
https://github.com/matsuolab-edu/dl4us
深層学習
の問題集?
データ分析100本ノック
で紹介されていた
CC-BY-NC-ND
だから、forkして改変するのはprivate repoでやろう
https://github.com/takker99/dl4us
devcontainerを設定しておきたい
だめだ、forked repoはprivateにできないみたい
For security reasons, you cannot change the visibility of a fork.
forkしたpublicリポジトリをprivateにする #Git - Qiita
--mirrorを使う
$ git clone --bare
https://github.com/matsuolab-edu/dl4us
$ cd dl4us.git
$ git push --mirror git@github.com:takker99/dl4us
$ cd ../
$ rm -rf dl4us.git
#2025-03-03
15:09:45