lens, align.

Lang ist Die Zeit, es ereignet sich aber Das Wahre.

Copilot Coding.

2024-06-04 06:06:06 | Science

AIアシストによるプログラミング、可用性が高いのはGitHub Copilotだけれど、コーディングの双方向性ではやはりChatGPT 4oが優れている。VS CODEのプラグインで2分割にしているけれど、出来ればモノモーダルに運用したい

Giraffes.

2024-05-17 20:08:08 | Science

法令や制度対応に伴う新システムの敷衍において、どんなに実証実験を重ねていてもデプロイする過程で初めて凹凸が分かるほどに現実環境の予測は難しく、得てしてそれは人的運用の問題が大きなウェイトを占めている場合が多い

GPT-4 Omni.

2024-05-14 20:08:08 | Science


GPT-4o (Omni) 、レポジトリ解析や発話者分離、Html生成などを試用。Plusユーザーなので処理の爆速化は実感できたが、タスクパフォーマンスの劣化が致命的で一部に言われてる通りHype(≒過大評価)が目立つ印象。iOS版の対話型AIインターフェースとしての完成度は高いのでブラッシュアップが待たれる






Gödel, Escher, Bach: an Eternal Golden Braid

2024-05-02 20:28:25 | Science

□ 『Gödel, Escher, Bach: an Eternal Golden Braid』

Written by Douglas R. Hofstadter
ISBN: 978-0-465-02656-2
OCLC: 40724766

学生時代に出会って人生が変わった巨書。カノン構造に則り記述されたメタフィクションであると同時に、深遠な洞察に基づく科学哲学書でもある。実際の計算機科学に多大な影響を及ぼした。実は2007年に続編が発表されている


J. S. Bach/A. Webern: Ricercar a 6 • hr-Sinfonieorchester • Antonello Manacorda



Event Horizon.

2024-03-28 02:33:49 | Science

the Event Horizon Telescope team unveils strong magnetic fields spiraling at the edge of Milky Way’s central black hole, Sagittarius A*. This new image suggests that strong magnetic fields may be common to all black holes.

>> https://x.com/ehtelescope/status/1772971844271812874


Dione.

2024-01-27 23:11:11 | Science

(Photo by Carolyn Porco)


Taken just two days ago: Cracked and scarred Dione (top), w/ the rings and our favorite geysering moon, Enceladus, in the distance. And in a closeup from only 321 miles above the surface (bottom), a longing look at Dione’s wispy terrain, which we thought in Voyager days would be extruded ice but is not.

Cassini’s final Dione flyby will be in 2 months’ time on August 17. We are now in the end game. Prepare yourselves for the final goodbye …




Divergent Core.

2024-01-25 21:22:44 | Science

Development and problem-solving skills don’t always align. Without managing a core model, endless efficient tools can paradoxically demand more.

『開発能力』と『問題解決能力』は必ずしも両立しない。どんなにfast-efficientなアプリやツールを無尽蔵に提供しても、それを統合するコアモデルをマネージメントできないと、データドリヴンにシステムがdiverseして、更にツールが必要になるという逆転現象に陥る

multi-collinearity.

2023-11-21 18:52:22 | Science

Numpyで多重共線性 (multi-collinearity)を回避する。共分散行列に対し固有値分解を行うのが一般的なステップだが、linalg.eig()関数ではなくvariance_inflation_factor関数を使ってVIFの閾値で弾く方法で代替できそうだ

To avoid multicollinearity in Numpy, a common approach is to perform eigenvalue decomposition on the covariance matrix. However, an alternative method could be to use the `variance_inflation_factor` function instead of the `linalg.eig()` function, and filter out variables.