Skip to content

Commit 47601c4

Browse files
committed
fix: Remove emojis from headings,
1 parent 93fd65b commit 47601c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2025-11-09-linear-regression.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import DataFrame ((|>))
4747

4848
**What's happening here?** We're enabling some handy language extensions and importing our tools. The `|>` operator is particularly cool. The operator is like the Unix pipe, letting us chain operations left-to-right!
4949

50-
### Step 1: Loading the Data 📂
50+
### Step 1: Loading the Data
5151

5252
```haskell
5353
df <- D.readCsv "../data/housing.csv"
@@ -129,7 +129,7 @@ normalized_value = (value - min) / (max - min)
129129

130130
This squishes every feature to the 0-1 range. Why? Imagine if house prices ranged from 0-500,000 but number of bedrooms ranged from 0-5. The huge price numbers would dominate the small bedroom numbers during training. Normalization levels the playing field.
131131

132-
### Step 4: From DataFrame to Tensors 🔢
132+
### Step 4: From DataFrame to Tensors
133133

134134
```haskell
135135
features = toTensor cleaned

0 commit comments

Comments
 (0)