Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dataflowr/website
code for the website
https://github.com/dataflowr/website
deep-learning franklin julia
Last synced: 2 months ago
JSON representation
code for the website
- Host: GitHub
- URL: https://github.com/dataflowr/website
- Owner: dataflowr
- License: apache-2.0
- Created: 2020-09-23T15:40:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-11T12:50:47.000Z (6 months ago)
- Last Synced: 2024-08-03T20:08:02.167Z (5 months ago)
- Topics: deep-learning, franklin, julia
- Language: CSS
- Homepage: https://dataflowr.github.io/website/
- Size: 37.2 MB
- Stars: 68
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deep Learning Do It Yourself
This site collects resources to learn Deep Learning in the form of Modules
available through the sidebar on the left. As a student, you can walk
through the modules at your own pace and interact with others thanks
to the associated digital platforms. Then we hope you'll become a
contributor by adding modules to this site!## Setup to run the website locally
1. Install [Julia](https://julialang.org/downloads/) (make sure to 'add to PATH' so you can use step 2 without having to type the full path)
2. Launch Julia from the command line:``` text
julia
```3. Install the required packages:
``` julia
using Pkg
Pkg.add("Franklin")
Pkg.add("JSON")
```4. Serve the website (on [localhost:8000](http://localhost:8000)):
``` julia
using Franklin
serve()
```Note: steps 3 and 4 are automated in the [Makefile](./Makefile),
so you can just run `make install` and `make serve`.