黒木玄 Gen Kuroki
- いいね数 389,756/311,170
- フォロー 995 フォロワー 14,556 ツイート 293,980
- 現在地 (^-^)/
- Web https://genkuroki.github.io/documents/
- 自己紹介 私については https://twilog.org/genkuroki と https://genkuroki.github.io と https://github.com/genkuroki と https://github.com/genkuroki/public を見て下さい。
2020年07月17日(金)
This material, based on ethylene, exhibits a number of useful properties such as self-healing and shape memory. Remarkably, it can spontaneously self-heal even in water or acidic and alkali solutions [source: buff.ly/3h2XBk3] pic.twitter.com/wutBMicH4A
タグ:
posted at 00:30:33
非公開
タグ:
posted at xx:xx:xx
サイズが決まったimmutableなベクトルや行列を扱うならオススメ。配列をSVectorやSMatrixで宣言して使うだけなので、コードを書き換える手間もほとんどない。
mutableな型も定義されているけど、そっちは普段のArray{Float64, 1}とそんなに変わらなかった。
タグ:
posted at 02:05:25
Objection! A Language Lawyer Story
🔊 for my awful voice acting pic.twitter.com/GmZqQShtEG
タグ:
posted at 02:31:29
This might get wrecked by compression, but this surface color is the vec3 accumulator which is the summation of the curl noise samples pic.twitter.com/SXeKfum8eF
タグ:
posted at 06:28:13
Stan (ベイズアプローチによるHamiltonian Monte Carlo回帰解析の一種)ができるパッケージあるのだろうか? #julialang
タグ: julialang
posted at 06:33:36
#Julia言語
github.com/StanJulia
StanJulia
これの使い方を知りたい人は結構いると思う。 twitter.com/misstakoipad/s...
タグ: Julia言語
posted at 07:45:56
JuliaでIzhikevichモデル | 知識のサラダボウル salad-bowl-of-knowledge.github.io/hp/neuroscienc...
タグ:
posted at 07:50:07
OKUMURA, Akira(奥村 曉) @AkiraOkumura
どれが clickable なのか全然わかんない。ひどいな、これ。www.phys.nagoya-u.ac.jp/information/in...
タグ:
posted at 08:04:59
クルーグマンさんが書いたものを読むと、昔(今もそうかもしれないが)、左翼っぽいことを言いたい人達にとって経済学は敵だ的な雰囲気の中での経済学批判が流行っていたけど、分断を煽っただけのクズ言論活動に過ぎなかったことがよく分かります。
現代の日本の苦境の大きな原因の一つ。 twitter.com/hayakawashobo/...
タグ:
posted at 08:39:06
#統計 シンプルな具体例:James-Stein推定
私によ詳しい解説と #Julia言語 のコードが
nbviewer.jupyter.org/gist/genkuroki...
にある。
私は統計学ど素人なのですが、こういう例を排除するために不偏性を仮定するのは、ものすごく不健全な態度だと思う。不偏推定であっても大して嬉しくない。
posted at 08:55:47
非公開
タグ:
posted at xx:xx:xx
#Julia言語
Stanじゃないけど、似たようなものとして、Turing.jlは気軽に使い易いと思う。Juliaを理解していればすぐに使える。
github.com/TuringLang/Tur...
欠損値も自動的に推定してくれるなどの試みも行われています。
性能はこれから改善されて行くと思う。
twitter.com/misstakoipad/s...
タグ: Julia言語
posted at 09:34:40
ワケワカメ
flute23432.blogspot.com/2018/11/blog-p...
>被乗数×乗数には、一つ分×いくつ分、基準量×倍(割合)、単価×数量、速さ×時間、比例定数×xなどの、さまざまなヴァリエーションがある。(続く)
#掛算
タグ: 掛算
posted at 11:17:53
Great opportunity if you're interested in new features of {DSGE.jl}
"We build a simple user interface for DSGEVARs on top of DSGE.jl’s modeling approach, allowing users to easily estimate DSGEVARs and apply them in economic analysis."
github.com/FRBNY-DSGE/DSG...
#julialang twitter.com/kcastellanos12...
タグ: julialang
posted at 11:20:49
"Hamiltonian Monte Carlo (HMC) improves sampling efficiency during estimation of DSGEs because DSGEs have large sets of parameters....We then write wrappers for the likelihood function and gradient to make it compatible with DynamicHMC.jl’s interface."
タグ:
posted at 11:21:57
Github pagesでcssがloadされないなと思ってnetlifyを使っていましたが、単に.nojekyllファイルがuploadされていなかったのが原因でした
qiita.com/sky_y/items/b9...
タグ:
posted at 12:19:35
looks like people are all sharing this badge now? #JuliaLang
does this mean in 2120 Skynet gonna laugh at my shitty code? pic.twitter.com/pOEm605JNl
タグ: JuliaLang
posted at 12:52:57
#Julia言語
Float64 と Float32 では「許容する誤差」の大きさを変えたくなる。そのとき、Float64 と Float32 の両方を同じコードで扱いたい場合には eps(x) が使える。
zero(x), one(x), eltype(a) などもよく使う。それぞれxと同じ型の0, xと同じ型の1, 配列aの要素の型。 pic.twitter.com/rz7Tp0oG8a
タグ: Julia言語
posted at 14:02:08
#Julia言語
a = Float64[1, 2, 3, 4]
でFloat64型の配列を作り、
a[2] = 20
として、a[2] にInt64型の20を代入すると、自動的にFloat64型の20.0に変換されてから値が置き換えられる。
x = 2.0
x = 20
との違いに注意せよ。 pic.twitter.com/k0HfYA0ONh
タグ: Julia言語
posted at 14:06:47
Fixnum や Flonum みたいな、ポインタをいじって表現するのを boxing と呼ぶかアンケート。ヒープに置かないから boxing ではない派、primitive 型じゃないから boxing である派を観測しています。
タグ:
posted at 14:07:52
#Julia言語
[1, 2, 3, 4][2] = 20
はJuliaでは合法的なコード。 pic.twitter.com/xM41FqIg7h
タグ: Julia言語
posted at 14:08:51
@genkuroki #julialang DynamicHMC.jlというのもあるみたい。StanJulia, Turing, StanJuliaの3つですね。Rstanの方は成書もシリーズ動画もあり充実してるのに・・
github.com/tpapp/DynamicH...
タグ: julialang
posted at 14:30:01
非公開
タグ:
posted at xx:xx:xx
SwiftLaidOffه҈̿҈̿҈̿҈ @SwiftLaidOff
GitHub - julia-vscode/LanguageServer.jl: An implementation ...
github.com/julia-vscode/L...
May 27, 2020 · LanguageServer. Overview. This package implements the Microsoft Language Server Protocol for the Julia programming language.. Text editors with a client for the Language
タグ:
posted at 14:39:40
@missTakoiPad Turing.jl から DynamicHMC.jl を使えます。DynamicHMC.jl を使いたい人にとっても Turing.jl は便利だと思います。
タグ:
posted at 14:53:00
なぜEM菌側は、有名な創価学会系弁護士事務所を代理人にしたのか? EM菌は創価学会とどう関係しているのか? という謎 - 左巻健男&理科の探検’s blog samakita.hatenablog.com/entry/2019/05/...
タグ:
posted at 14:55:34
ここまでしょっちゅう予測を変えられたらもはや予測じゃないと思うというか、増加中はK値は使えないってことをこの人は全く理解してないですよね pic.twitter.com/5preoIY68M
タグ:
posted at 15:27:27
#統計 そもそも「尤度原理」の意味がよくわからん。「尤度原理とは何か」の類の問いは大抵ろくでもない問いだと思う。
添付画像はwikipediaより。
異なる確率モデルを使用するべき2つの場合で、尤度函数が同じになる理由がさっぱり分からない。
en.wikipedia.org/wiki/Likelihoo... pic.twitter.com/M2Xztgc5dT
タグ: 統計
posted at 16:07:14
ijuliaでrevise.jlが使えた!
Pkg.activate("C://Users//username//.julia//environments//v1.4.2//Project.toml")でデフォルトの環境に戻さないといけなかったみたい
#julialang
タグ: julialang
posted at 16:35:28
@Karakuchibimajo @mao7735 @suwakomush twitter.com/suwakomush/sta...
合理性のないルールを強要するなど、教員のわがままですね。公教育は、社会みんなのもの。教員の独占物ではない。
タグ:
posted at 17:29:14
非公開
タグ:
posted at xx:xx:xx
#Julia言語 添付画像2を見ればわかるように、Jupyter上でJuliaは --project=@. 付きで起動されるようになっているので要注意です。
添付画像1の方法なら何もしなくてもRevise.jlを使える。
ipynbファイルのあるディレクトリをactivate, instanciateする方法は添付画像3に。
twitter.com/spiff_msd/stat... pic.twitter.com/U8yAS7yDAq
タグ: Julia言語
posted at 18:05:00
#Julia言語 上の方のスクショのソースコード
foo.jlの内容変更が途中で入っているのでこのファイルだけでは意味がない。
nbviewer.jupyter.org/gist/genkuroki...
タグ: Julia言語
posted at 18:11:57
microad-developer @microad_dev
今週の #マイクロアドエンジニア一問一答
アプリケーションエンジニア S.M.さん
Q. 是非一度使ってみて欲しいプログラミング言語は?
A. Juliaです。数式の入力がとても幸せになれます。
例えば、オイラーの公式が f(θ) = ℯ^(im*θ) のように書けてしまいます。 pic.twitter.com/ztcECfawoU
タグ: マイクロアドエンジニア一問一答
posted at 18:14:09
#Julia言語 「プロジェクトの一部分」とまでは行かなくても、そのnotebookで何らかの実験コードを共有したいときにそれが再現できる最低限の設定をProject.tomlに書いてある場合に有効ですね。その場合、最初のセルに `]instantiate` のような記述があると思います(ないと不親切)。 twitter.com/genkuroki/stat...
タグ: Julia言語
posted at 18:54:08
New post: SciML Ecosystem Update: Auto-Parallelism and Component-Based Modeling - www.juliabloggers.com/sciml-ecosyste... #julialang
タグ: julialang
posted at 19:03:22
New post: SciML Ecosystem Update: Automated Model Discovery with DataDrivenDiffEq.jl and ReservoirComputing.jl - www.juliabloggers.com/sciml-ecosyste... #julialang
タグ: julialang
posted at 19:03:24
New post: SciML: An Open Source Software Organization for Scientific Machine Learning - www.juliabloggers.com/sciml-an-open-... #julialang
タグ: julialang
posted at 19:03:26
New post: DifferentialEquations.jl v6.12.0: DAE Extravaganza - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:03:29
New post: DifferentialEquations.jl v6.11.0: Universal Differential Equation Overhaul - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:03:31
New post: DifferentialEquations.jl v6.7.0: GPU-based Ensembles and Automatic Sparsity - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:03:33
New post: DifferentialEquations.jl v6.6.0: Sparse Jacobian Coloring, Quantum Computer ODE Solvers, and Stiff SDEs - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:03:36
New post: DifferentialEquations.jl v6.5.0: Stiff SDEs, VectorContinuousCallback, Multithreaded Extrapolation - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:03:41
New post: DifferentialEquations.jl v6.4.0: Full GPU ODE, Performance, ModelingToolkit - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:03:46
New post: SciML Roadmap - www.juliabloggers.com/sciml-roadmap/ #julialang
タグ: julialang
posted at 19:03:57
New post: DifferentialEquations.jl 6.0: Radau5, Hyperbolic PDEs, Dependency Reductions - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:13
New post: DifferentialEquations.jl 5.0: v1.0, Jacobian Types, EPIRK - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:17
New post: DifferentialEquations.jl 4.6: Global Sensitivity Analysis, Variable Order Adams - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:27
New post: DifferentialEquations.jl 4.5: ABC, Adaptive Multistep, Maximum A Posteriori - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:33
New post: A "Jupyter" of DiffEq: Introducing Python and R Bindings for DifferentialEquations.jl - www.juliabloggers.com/a-jupyter-of-d... #julialang
タグ: julialang
posted at 19:04:38
New post: DifferentialEquations.jl 4.4: Enhanced Stability and IMEX SDE Integrators - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:40
New post: DifferentialEquations.jl 4.1: New ReactionDSL and KLU Sundials - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:48
New post: DifferentialEquations.jl 4.0: Breaking Syntax Changes, Adjoint Sensitivity, Bayesian Estimation, and ETDRK4 - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:53
New post: DifferentialEquations.jl 3.4: Sundials 3.1, ARKODE, Static Arrays - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:04:58
New post: DifferentialEquations.jl 3.3: IMEX Solvers - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:05:00
New post: DifferentialEquations.jl 3.2: Expansion of Event Compatibility - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:05:04
New post: DifferentialEquations.jl 3.1: Jacobian Passing - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:05:08
New post: Filling In The Interop Packages and Rosenbrock - www.juliabloggers.com/filling-in-the... #julialang
タグ: julialang
posted at 19:05:23
New post: DifferentialEquations.jl 2.0 - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:05:27
New post: DifferentialEquations.jl v1.9.1 - www.juliabloggers.com/differentialeq... #julialang
タグ: julialang
posted at 19:05:32
中澤 港%人類生態学者@神戸大学 @MinatoNakazawa
感染症対策のためには,移動制限など私権の制約を要する場合があるというのは,別に目新しい話ではなく,検疫法や感染症法で法制化もされているし,長い議論の末に到達した公衆衛生的合意。WHOも倫理的考察をまとめた文書を出している
apps.who.int/iris/bitstream...
タグ:
posted at 19:23:56
#Julia言語 ソースコード
nbviewer.jupyter.org/gist/genkuroki...
nbviewer.jupyter.org/gist/genkuroki...
お!大丈夫になった!うれぴー!
タグ: Julia言語
posted at 19:47:15
Litla Dimun is the smallest of the main 18 islands of the Faroe archipelago, but it often has its own unique cloud bit.ly/2wUUp2E pic.twitter.com/Hqg1duKa16
タグ:
posted at 20:23:22
chromiumベースのブラウザを使うとgmailなどのテキストエリアなどで日本語入力がうまくできない(入力した文字が消えたり変換ができない)という不具合がずっと起きているのだが,他の人は問題ないのだろうか.どうしても治らないのでFirefoxを併用してる
タグ:
posted at 20:49:20
OokuboTact 大久保中二病中年 @OokuboTact
@sekibunnteisuu @takusansu @bampaku 銀林浩は足し算の交換法則も否定している!
#超算数
twitter.com/OokuboTact/sta...
タグ: 超算数
posted at 21:01:36
OokuboTact 大久保中二病中年 @OokuboTact
@sekibunnteisuu @takusansu @bampaku 銀林浩の「掛け算」論。
ダメダメ掛け算論の震源の1つでもあります。
#超算数
twitter.com/OokuboTact/sta...
タグ: 超算数
posted at 21:05:35
1からJulia本はしっかりと一つの言語を勉強していない私にとってはかなり有用だと思う。特に「これはやっちゃダメ。なぜなら~」って書いてある部分があって良かった。PythonやRの呼び出しについても触れられているしJuliaを使ってみたい人が一通りの基礎を身に着けられそう
タグ:
posted at 21:07:15
@akinori_ito Chrome/MacだとGmailで入力はできてます。ただたまに「だから」と打つと「dだdだakかkd」みたいになることが。
あとFacebookのコメント欄で入力変換確定後の次の入力の最初の1打鍵が無視される。
Google IME使ってるので挙動が違うのかと思ったけど、ことえりに戻しても挙動に変化なし。
タグ:
posted at 21:13:43
This is 100% #JuliaLang code. It trains a dense neural network using the #Keras Python library. If you replace the first 3 lines with "import tensorflow as tf; from tensorflow import keras", you can run the exact same code in Python. Talk about excellent interoperability! 🤝
#ML pic.twitter.com/ukwYobw7O8
posted at 21:38:25
Kuri TsukaΦ (くり つかお) @20_0855369231
@banban7866 ありがとうございます。ほんまにこいつら頭おかしすぎませんかね。(ちなみに、僕が少し前に見た教科書に載っかってたやつらよりは金がかかってなさそうです笑。いや、でも人数はこっちの方がかなり多いか。)
タグ:
posted at 21:55:16
Kuri TsukaΦ (くり つかお) @20_0855369231
@banban7866 (編集委員に名を連ねた時点で連帯責任では?笑。「そこは俺の担当じゃない」は僕は認めませんね。まぁどうでもいいんですが)
せめて主語を明確に「我々」と限定し、「ローカルルール」とも書いていてくれればまだ被害は小さかったのかなと。これを読んだアホな教員が勘違いしなければよいのですが。
タグ:
posted at 22:10:16
非公開
タグ:
posted at xx:xx:xx
(積の記号の配慮は悪くない配慮だと思いますが)「a⃗・b⃗ を (1, 4)・(−2, 3) とは書かないことを『指摘しておく』」とは誰に対してどのように指摘するつもりなのかも含めて謎な記述ですね.
ベクトル同士の内積を a⃗・b⃗ と表記する以上,普通に考えて (1, 4)・(−2, 3) とも表記できるはずで
タグ:
posted at 23:13:04
もし「行列の積と混同しないように」という配慮の意味であれば,そもそも内積の表記を a⃗・b⃗ にするべきではないと思いますし,なんなら現行過程では行列は教えないことが多いので,ここまでハッキリ「指摘」する意味はないとも思いますし ⋯ .
要するに意味が分かりません ⋯ .
タグ:
posted at 23:13:05
非公開
タグ:
posted at xx:xx:xx
IJuliaを既にインストールしてあるので、Juliaからはjupyter notebookを起動できるんだけど、逆にnotebookを先に起動することもできるはずですね。notebookを起動してからJuliaを選ぶにはどうするのかな。Pythonを追加でインストールするとなるとそのほうがよさそうですが
タグ:
posted at 23:37:12