Jupyter: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 77: Line 77:
* [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]
* [https://blog.jupyter.org/and-voil%C3%A0-f6a2c08a4a93 And Voilà]
* [https://jupyter.org/ Jupyter]
* [https://jupyter.org/ Jupyter]


|}
|}

Revision as of 07:26, 22 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>

References