website/content/blog/reverseonehotencode.md

24 lines
501 B
Markdown
Raw Permalink Normal View History

2020-10-11 22:04:08 -04:00
---
title: "Reverse One-Hot Encode"
date: 2020-10-11T21:58:47-04:00
draft: false
2022-01-02 14:24:29 -05:00
tags: ["Python"]
2023-01-05 14:04:45 -05:00
medium_enabled: true
2020-10-11 22:04:08 -04:00
---
Let's say that you have a dataset that is one hot encoded like the following observation:
```python
import numpy as np
obs = np.array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0])
```
The easiest way to reverse one-hot encode the structure, is to take the `argmax` of the observation.
```python
reverse_encoding = np.argmax(obs)
# 13
```