Skip to content

Commit 3dcfad6

Browse files
committed
cosmetic changes
1 parent 67e06cf commit 3dcfad6

11 files changed

+0
-22
lines changed

chapters/algodiff.md

-2
Original file line numberDiff line numberDiff line change
@@ -1560,5 +1560,3 @@ You can see that the core idea of AD can be implemented with surprisingly simple
15601560
Then we turn to the Owl side: first, how Owl support what we have done in the strawman implementation with the forward and reverse propagation APIs; next, how Owl provides various powerful high level APIs to enable users to directly perform AD.
15611561
Finally, we give an in-depth introduction to the implementation of the AD module in Owl, including some details that enhance the simple strawman code, how to build user-defined AD computation, and using lazy evaluation to improve performance, etc.
15621562
Hopefully, after finishing this chapter, you can have a solid understanding of both its theory and implementation.
1563-
1564-
## References

chapters/diffequation.md

-2
Original file line numberDiff line numberDiff line change
@@ -831,5 +831,3 @@ Also, this library interfaces to existing off-the-shelf open source ODE solvers
831831
Next, we demonstrate how these solvers are used to solve ODE from several real examples, including the Two-body problem, the Lorentz Attractor, and Damped Oscillation, etc.
832832
Finally, we introduce one important idea in the solving ODE numerically: stiffness, and then shows how we can solve stiff and non-stiff ODEs with the example of the van der pol equation.
833833
Hopefully, after studying this chapter, the readers can have a basic idea of how numerical ODE solver works and how to apply them into solving real-world problems.
834-
835-
## References

chapters/linalg.md

-1
Original file line numberDiff line numberDiff line change
@@ -1452,4 +1452,3 @@ Sure enough, there is no way to cover all these topics in one chapter. We refer
14521452
In the end, we introduce how the linear algebra module is implemented in a numerical library such as Owl.
14531453
We close the discussion with a brief explanation of the sparse matrix and the representation formats used.
14541454

1455-
## References

chapters/ndarray.md

-1
Original file line numberDiff line numberDiff line change
@@ -700,4 +700,3 @@ This chapter explain in detail the Ndarray module, including its creation, prope
700700
Besides, we also discuss the subtle difference between tensor and ndarray in this chapter.
701701
This chapter is easy to follow, and can serve as a reference whenever users need a quick check of functions they need.
702702

703-
## References

chapters/neural-network.md

-1
Original file line numberDiff line numberDiff line change
@@ -917,4 +917,3 @@ Here we use the Owl API to solve the same example, including training and testin
917917
We then introduce two important types of neural network: the convolutional neural network, together its superior performance against simple feedforward network, and the recurrent neural network, including two of its variants: the LSTM and GRU.
918918
We finish this chapter with a brief introduction of the basic idea behind Generative Adversarial Network, another type of neural network that has gained a lot of momentum in research and application recently.
919919

920-
## References

chapters/optimisation.md

-1
Original file line numberDiff line numberDiff line change
@@ -517,4 +517,3 @@ The local unconstrained problem is further explained in two parts: the univariat
517517
Of all the methods introduced here, the gradient descent is especially important, and we will see it again in the Regression and Neural Network chapters.
518518
Finally, we give a brief peek at the topic of global and constrained optimisation problems.
519519

520-
## References

chapters/regression.md

-1
Original file line numberDiff line numberDiff line change
@@ -950,4 +950,3 @@ With a bit of change in its cost function, we venture to introduce a type of adv
950950
They can be used for both linear and non-linear decision boundary by using different kernel functions.
951951
We have also talked about related issues, such as the regularisation, model error and selection.
952952

953-
## References

chapters/signal.md

-1
Original file line numberDiff line numberDiff line change
@@ -739,4 +739,3 @@ Finally, we discussed filtering in signal process using different techniques, in
739739
Here we also explained the relationship between the two most crucial computations in numerical applications: FFT and convolution.
740740
More about convolution can be find in the Neural Network chapter.
741741

742-
## References

chapters/stats.md

-1
Original file line numberDiff line numberDiff line change
@@ -632,4 +632,3 @@ Then we went from descriptive statistics to inference statistics, and introduced
632632
Next, we covered the basic idea in hypothesis testing with examples.
633633
The difference between covariance and correlations is also discussed.
634634

635-
## References

chapters/visualization.md

-2
Original file line numberDiff line numberDiff line change
@@ -683,5 +683,3 @@ The good news is that, you can easily change the colors in the plot.
683683
Try google "colour theory" and you can find a lot of guidelines.
684684
For example, the analogous colours can be a good choice in your line plots. These colours are any sequential three colors on a 12-part color wheel, such as yellow-green, yellow, and yellow-orange.
685685
We find this artistic aspect of visualisation is often enjoyable.
686-
687-
## References

index.markdown

-9
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,3 @@ The main purpose of the online tutorial is for teaching how to use the [Owl](htt
3232

3333
Currently contribution to the book is mainly in the form of Pull Request on [GitHub](https://github.com/owlbarn/tutorial).
3434
Normally you only need to change one of the markdown files in the `chapters/` directory.
35-
36-
37-
## Tooling
38-
39-
The following tools are used in the project, please refer to their documentation.
40-
41-
- [Jekyll](https://jekyllrb.com/)
42-
- [Cayman Theme](https://github.com/pages-themes/cayman)
43-

0 commit comments

Comments
 (0)