Jupyter Notebook は、もともとデータ サイエンティストやエンジニアが Python プログラミング言語を使用してデータの操作を簡素化できるように開発された優れたツールです。実際、ノートブックはインタラクティブな性質を備えているため、開発環境、コンパイル、パッケージ化などをセットアップせずに、コードの結果をすぐに確認するのに最適です。この機能は、開発スキルがデータ操作の専門知識よりも重要視されていたデータ サイエンス、機械学習、統計モデリングでの採用において非常に重要でした。
以下は Jupyter ノートブックの利点の一部です
まとめると次のように言えます
Jupyter ノートブックは、初期の調査から本番環境に対応したコードに至るまで、開発プロセスを合理化し、柔軟性とリアルタイムのフィードバックを提供します。
Jupyter ノートブックが提供する利点を考慮すると、ソフトウェア開発者がこのようなノートブックのアプローチを使用して、たとえばプロジェクトの ユース ケース テスト を開発したり、役立つ インタラクティブなハウツー を提供したりするのは素晴らしいことです。 🎜>。
ここでの質問は次のとおりです:
Python 以外のプログラミング言語に Jupyter Notebook を使用することは可能ですか?
答えは はいですか?
Jupyter ツールは、カーネル の概念を通じて複数のプログラミング言語をサポートするように設計されています。以下の図を参照してください。
カーネルは、Jupyter ノートブック サーバーがノートブック ドキュメント (.ipynb) 内でユーザーによって記述されたコードのブロックを評価する方法であるため、選択したプログラミング言語のコードを評価できるカーネルがあれば十分です。 Jupyter Notebook でサポートされています。
もちろん、Jupyter カーネルがサポートできる潜在的なプログラミング言語はすべて Read–eval–print Loop (REPL) 機能をサポートする必要があると推測するのは簡単です。
質問は次のようになります。
Python ONE 以外の Jupyter カーネルはありますか?
答えははいですか?
最近私は、Langchain によるエージェントおよびマルチエージェント ワークフローの作成に使用される Javascript ライブラリである、より有名な Langgraph.js の Java 実装である Langgraph4J に取り組んでいます。興味深い点は、[Langchain.js] が DENO Jupiter Kernel を利用した Javascript Jupyter ノートブックを使用して How-To を実装および文書化していることです。
そこで、同じアプローチを Java でどのように使用する (またはシミュレートする) かというジレンマに直面しました。そして、JDK 9 バージョンからはJava の REPL を有効にする JShell。
少し調べた後 (そして、DIY 実装に挑戦してみようという奇妙な考えも)、Java をサポートする Jupyter カーネルである rapaio-jupyter-kernel にたどり着きました。プロジェクトには次のように記載されています:
JShell に基づく Java 言語用の Jupyter カーネル。 Jupyter メッセージ仕様バージョン 5.4 を実装しており、Java = 22 が必要です。
それはすごいですね。使い始めて、すごい!?。その機能のいくつかを見てみましょう。以下に最も代表的なものをまとめました:
通常の Java を書くことができます。
var result = 2 + 2; resultログイン後にコピー4
// including classes record Complex(double a, double b) { public Complex add(Complex c) { return new Complex(a+c.a, b+c.b); } } Complex x = new Complex(10,20); x.add(new Complex(1,1))ログイン後にコピー複素数[a=11.0, b=21.0]
// methods can also be implemented int add(int a, int b) { return a+b; } add(2,3)ログイン後にコピー5
Magic commands
Besides Java code, a cell can contain special commands implemented by the kernel. These are called magic code and there are two types: magic lines and magic cells.
Magic lines are lines which are prefixed with %. After the prefix it is followed by the magic command and the optional parameters. Below is an example of magic line:// magic line which asks JShell to list the types defined in this notebook in this moment %jshell /typesログイン後にコピー| record Complex
Magic commands interpolation
Sometimes there is a need to run a magic command in a more dynamic way. This can be done using magic interpolation.
Magic interpolation is the interpolation of marked content which starts with \{ and ends with }. Any content decorated with those markers is evaluated in jshell and the result is transformed in a String which replaces the decorated content in the magic command.String version = "1.0.2";ログイン後にコピー
%dependency /add com.github.javafaker:javafaker:\{version}ログイン後にコピーAdding dependency com.github.javafaker:javafaker:1.0.2
Dependency management ?
You can add dependencies using %dependency /add and after adding all dependencies you can call %dependency /resolve
%dependency /add com.github.javafaker:javafaker:1.0.2 %dependency /resolveログイン後にコピーAdding dependency com.github.javafaker:javafaker:1.0.2
Solving dependencies
Resolved artifacts count: 5
Add to classpath: /home/ati/work/rapaio-jupyter-kernel/target/mima_cache/com/github/javafaker/javafaker/1.0.2/javafaker-1.0.2.jar
Add to classpath: /home/ati/work/rapaio-jupyter-kernel/target/mima_cache/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar
Add to classpath: /home/ati/work/rapaio-jupyter-kernel/target/mima_cache/org/yaml/snakeyaml/1.23/snakeyaml-1.23-android.jar
Add to classpath: /home/ati/work/rapaio-jupyter-kernel/target/mima_cache/com/github/mifmif/generex/1.0.2/generex-1.0.2.jar
Add to classpath: /home/ati/work/rapaio-jupyter-kernel/target/mima_cache/dk/brics/automaton/automaton/1.11-8/automaton-1.11-8.jarWhen added you can import and use the dependency.
import com.github.javafaker.Faker; var faker = new Faker(); faker.name().fullName()ログイン後にコピーHayley Anderson
Resolving conflict dependencies
You there are conflicts you can manage them with optional. Let's take an example which have conflicts:
%dependency /add com.google.guava:guava:20.0 --optional %dependency /add com.google.inject:guice:4.2.2 %dependency /add com.google.guava:guava:25.1-android %dependency /resolveログイン後にコピーHelp on magic commands
The magic %help provides more examples and guidance.
JShell commands
Some JShell commands are implemented. For example you can inspect which variables are defined
%jshell /varsログイン後にコピーor the types you defined in this session
%jshell /typesログイン後にコピーExecute bash commands
You can execute bash scripting commands. Here we display the java version number.
%%bash java --versionログイン後にコピーopenjdk 22.0.2 2024-07-16
OpenJDK Runtime Environment Corretto-22.0.2.9.1 (build 22.0.2+9-FR)
OpenJDK 64-Bit Server VM Corretto-22.0.2.9.1 (build 22.0.2+9-FR, mixed mode, sharing)You can even define variables. In fact all the lines below cell magic marker are executed as a bash script.
%%bash name="John" echo "Hello $name"ログイン後にコピーHello John
Show an image for immediate inspection
%image https://www.google.com/logos/doodles/2024/paris-games-sailing-6753651837110529.4-law.gifログイン後にコピーDisplay data
Jupyter notebooks uses outputs to display objects of various types. By default when an object is returned as the result of the last code operation, that result is displayed.
The object which is displayed can be anything. If the object has a display handler registered, than that renderer is used to transform the object into a displayable content. If there is no registered display handler than the object is transformed into a string and that will be displayed.
Previously we used magic commands to display an image. However for BufferedImages there is a registered handler and if you obtain an instance of a BufferedImage it will be displayed properly.import javax.imageio.*; display(ImageIO.read(new URL("https://www.google.com/logos/doodles/2024/paris-games-sailing-6753651837110529.4-law.gif")));ログイン後にコピーDisplayed data has a mime type. You can use that to describe how the object should be interpreted. For example we display a markdown snippet and we direct the output interpretation of the snippet through MIME type.
display("text/markdown", "Markdown *test* **snippet**:\n* bullet 1\n* bullet 2")ログイン後にコピーMarkdown test snippet:
- bullet 1
- bullet 2
display command returns an id which identifies the piece of output from the notebook which handles the display. Notice that we captured the id of the display. This id can be used to update the same display with a different content. For example we can update the content of that display with a html snippet, using the MIME type for interpretation.
String id = display("text/markdown", "Markdown *test* **snippet**:\n* bullet 1\n* bullet 2");ログイン後にコピー
updateDisplay(id, "text/html", "Html <i>test</i> <b>snippet</b>:<p><ulist><li>bullet 1</li><li>bullet 2</li></ulist></p>")ログイン後にコピーA Java object is displayed as a String using Objects.toString. As such, if the object has an implementation of toString, that method will be called.
new Complex(10,Math.PI);ログイン後にコピーComplex[a=10.0, b=3.141592653589793]
Jupyter Notebook 的多功能性超出了 Python 的范畴,rapaio-jupyter-kernel 等内核的集成为 Java 开发人员开辟了新天地。我最喜欢的功能是可以交互式地编写操作方法,在上下文中记录它们,但是有很多潜在的用例,这取决于您来探索它们,所以让我们探索一下并让我知道。
希望这些知识对您有所帮助,同时享受编码的乐趣! ?
?我的 Java 笔记本实验在 Github 上吗?
最初于 2024 年 9 月 6 日发布于 https://bsorrentino.github.io。
以上がJava 用 Jupyter ノートブックの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。