Skip to content

Commit

Permalink
[docs] Fixes markdown headers (#2812)
Browse files Browse the repository at this point in the history
This fixes the markdown headers to be h1 so they render correctly in docs.
  • Loading branch information
zachgk authored Oct 18, 2023
1 parent 90059cd commit 298ea1f
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Code of Conduct
# Code of Conduct

This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
[email protected] with any additional questions or comments.
3 changes: 3 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Docker Resources

DJL provides docker files that you can use to setup containers with the appropriate environment for certain platforms.

We recommend setting up a docker container with the provided Dockerfile when developing for the following
platforms and/or engines.

## Windows

You can use the [docker file](https://github.com/deepjavalibrary/djl/blob/master/docker/windows/Dockerfile) provided by us.
Please note that this docker will only work with Windows server 2019 by default. If you want it to work with other
versions of Windows, you need to pass the version as an argument as follows:
Expand All @@ -14,6 +16,7 @@ docker build --build-arg version=<YOUR_VERSION>
```

## TensorRT

You can use the [docker file](https://github.com/deepjavalibrary/djl/blob/master/docker/tensorrt/Dockerfile) provided by us.
This docker file is a modification of the one provided by NVIDIA in
[TensorRT](https://github.com/NVIDIA/TensorRT/blob/8.4.1/docker/ubuntu-18.04.Dockerfile) to include JDK11.
Expand Down
2 changes: 1 addition & 1 deletion docs/development/example_dataset.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Example CSV Dataset
# Custom CSV Dataset Example

If the provided Datasets don't meet your requirements, you can also easily extend our dataset to create your own customized dataset.

Expand Down
3 changes: 1 addition & 2 deletions docs/development/external_libraries.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

## DJL external dependencies
# DJL external dependencies

This document contains external libraries that DJL depends on and their versions.

Expand Down
2 changes: 1 addition & 1 deletion docs/development/profiler.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Profiler (Experimental)
# Engine Profiler Support

Currently, DJL supports experimental profilers for developers that
investigate the performance of operator execution as well as memory consumption.
Expand Down
2 changes: 1 addition & 1 deletion docs/mxnet/how_to_convert_your_model_to_symbol.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## How to convert your Gluon model to an MXNet Symbol
# How to convert your Gluon model to an MXNet Symbol

DJL currently supports symbolic model loading from MXNet.
A gluon [HybridBlock](https://mxnet.apache.org/api/python/docs/api/gluon/hybrid_block.html) can be converted into a symbol for loading by doing as follows:
Expand Down
2 changes: 1 addition & 1 deletion docs/pytorch/how_to_convert_your_model_to_torchscript.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## How to convert your PyTorch model to TorchScript
# How to convert your PyTorch model to TorchScript

There are two ways to convert your model to TorchScript: tracing and scripting.
We will only demonstrate the first one, tracing, but you can find information about scripting from the PyTorch documentation.
Expand Down
2 changes: 1 addition & 1 deletion docs/pytorch/pytorch-djl-ndarray-cheatsheet.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## PyTorch NDArray operators
# PyTorch NDArray operators

In the following examples, we assume

Expand Down
2 changes: 1 addition & 1 deletion examples/docs/stable_diffusion.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Stable Diffusion in DJL
# Stable Diffusion in DJL

[Stable Diffusion](https://stability.ai/blog/stable-diffusion-public-release) is an open-source model
developed by Stability.ai. It aimed to produce images (artwork, pictures, etc.) based on
Expand Down
2 changes: 2 additions & 0 deletions extensions/timeseries/docs/forecast_with_M5_data.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Forecast the future in a timeseries data with Deep Java Library (DJL)

## -- Demonstration on M5forecasting and airpassenger datasests

Junyuan Zhang, Kexin Feng

Time series data are commonly seen in the world. They can contain valued information that helps forecast for the future, monitor the status of a procedure and feedforward a control. Generic applications includes the following: sales forecasting, stock market analysis, yield projections, process and quality control, and many many more. See [link1](https://www.itl.nist.gov/div898/handbook/pmc/section4/pmc41.htm) and [link2](https://www.influxdata.com/time-series-forecasting-methods/#:~:text=Time%20series%20forecasting%20means%20to,on%20what%20has%20already%20happened) for further examples of timeseries data.
Expand Down

0 comments on commit 298ea1f

Please sign in to comment.