Jupyter: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 15: | Line 15: | ||
voila | voila | ||
|} | |} | ||
==Java Tensorflow== | |||
<source lang="xml"> | |||
<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> | |||
</source> | |||
==References== | ==References== |
Revision as of 08:27, 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>