-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82a68a1
commit 28d6f1b
Showing
2 changed files
with
33 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import numpy as np | ||
|
||
|
||
def one_hot( | ||
indices, | ||
depth, | ||
on_value=None, | ||
off_value=None, | ||
axis=None, | ||
dtype=None, | ||
): | ||
on_none = on_value is None | ||
off_none = off_value is None | ||
|
||
if dtype is None: | ||
if on_none and off_none: | ||
dtype = np.float32 | ||
else: | ||
if not on_none: | ||
dtype = np.array(on_value).dtype | ||
elif not off_none: | ||
dtype = np.array(off_value).dtype | ||
|
||
res = np.eye(depth, dtype=dtype)[np.array(indices, dtype="int64").reshape(-1)] | ||
res = res.reshape(list(indices.shape) + [depth]) | ||
|
||
if not on_none and not off_none: | ||
res = np.where(res == 1, on_value, off_value) | ||
|
||
if axis is not None: | ||
res = np.moveaxis(res, -1, axis) | ||
|
||
return res |