Jupyter: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 72: | Line 72: | ||
| valign="top" | | | valign="top" | | ||
* [https://medium.com/@gmsharpe/jupyter-java-and-google-colab-7a2f7fb08808 Java, Jupyter and Google Colab] | |||
* [https://towardsdatascience.com/4-jupyter-notebook-alternative-for-data-scientist-da3d47ff40b0 Jupyter Notebook Alternatives] | * [https://towardsdatascience.com/4-jupyter-notebook-alternative-for-data-scientist-da3d47ff40b0 Jupyter Notebook Alternatives] | ||
* [https://blog.mimacom.com/getting-started-tensorflow-spring/ Tensorflow and Java-Spring] | * [https://blog.mimacom.com/getting-started-tensorflow-spring/ Tensorflow and Java-Spring] | ||
|} | |} |
Revision as of 08:43, 15 January 2022
JupyterLab pip install jupyterlab jupyter-lab |
Classic Jupyter Notebook pip install notebook jupyter notebook |
Voilà pip install voila voila |
Java Tensorflow
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Camden.SR7</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow</artifactId>
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<scope>test</scope>
</dependency>
</dependencies>