Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 2ac7f59

Browse files
authored
Explaining regression loss function for data frame analytics jobs #331
This PR adds a notebook explains the properties of different loss functions available for the machine learning data frame analytics regression jobs and give pointers on when to choose which loss function. It intends to be linked in the "Concepts" section of the documentation and provide users with more insights than it is possible in the scope of "Concepts".
2 parents b2d77fd + 816d897 commit 2ac7f59

File tree

3 files changed

+520
-0
lines changed

3 files changed

+520
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Regression Loss Functions
2+
3+
This notebook explains the properties of different loss functions available for the
4+
machine learning data frame analytics regression jobs and give pointers on when to
5+
choose which loss function.
6+
7+
Set up a local instance of Jupyter using the following instructions
8+
9+
1. Set up a virtual environment called `env`
10+
11+
```
12+
python3 -m venv env
13+
```
14+
15+
2. Activate it
16+
17+
```
18+
source env/bin/activate
19+
```
20+
21+
3. Install the required dependencies for your chosen Jupyter notebook
22+
23+
```
24+
pip install -r requirements.txt
25+
```
26+
27+
4. Launch Jupyter
28+
29+
```
30+
jupyter notebook
31+
```
32+

0 commit comments

Comments
 (0)