Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SciSharp/SciSharpCube
Quickly experience all the latest features of SciSharp Machine Learning tools in docker container.
https://github.com/SciSharp/SciSharpCube
Last synced: about 22 hours ago
JSON representation
Quickly experience all the latest features of SciSharp Machine Learning tools in docker container.
- Host: GitHub
- URL: https://github.com/SciSharp/SciSharpCube
- Owner: SciSharp
- License: apache-2.0
- Created: 2019-05-12T13:55:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-04T01:25:27.000Z (about 4 years ago)
- Last Synced: 2024-08-02T08:09:52.080Z (3 months ago)
- Language: Jupyter Notebook
- Size: 3.45 MB
- Stars: 95
- Watchers: 10
- Forks: 18
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-dotnet-datascience - SciSharp Cube - Easy way to get all the latest features of SciSharp Machine Learning tools in docker container. (Serving)
README
# SciSharp Cube
Quickly experience all the latest features of SciSharp Machine Learning tools in docker container.[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/javiercp/BinderTF.NET/master?urlpath=lab)
### Run from Docker Hub
```shell
docker run --name scisharp -it -p 8888:8888 scisharpstack/scisharpcube
```This command will pull latest [SciSharpCube]() image and run it.
![docker start](assets/docker-start.png)
There is an example of Linear Regression.
![linear regression screen recording](assets/LinearRegression.gif)
### Build image from local
##### Get source code
```shell
git clone https://github.com/SciSharp/SciSharpCube
cd SciSharpCube
```
##### Build docker image
```shell
docker build -f ./dockerfiles/cube.dockfile -t scisharpcube .
```
If `microsoft/dotnet` is not pulled automatically, you should run `docker pull microsoft/dotnet` first.
##### Start a container
```shell
docker run --name scisharp -it -p 8888:8888 scisharpcube
```
Now you can open the Jupyter link printed out in the console in your browser. Congratulations,
you are running SciSharp STACK in Jupyter##### Tips (not necessary)
If you want to open another shell.
```shell
docker exec -it scisharp bash
```
If you ever exit the container with Control-C you can re-enter it with the following command.```shell
docker start scisharp -i
```