Jupyter: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 72: Line 72:


| valign="top" |
| valign="top" |
* [https://stackoverflow.com/questions/47567834/ Run a Jupyter Notebook cell Programmatically]
* [https://stackoverflow.com/questions/38622610/ Execute IPython notebook cell by Python]
* [https://medium.com/@gmsharpe/jupyter-java-and-google-colab-7a2f7fb08808 Java, Jupyter and Google Colab]
* [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]

Revision as of 09:04, 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>

References