Skip to content

Commit 4e08b15

Browse files
authored
Prevent computing unit norm of vectors of 0s (#473)
Previously, the embedding projector would take the norm of vectors of all 0s, resulting in vectors of all NaN values being used as part of PCA calculations. This change adds a guard to prevent that.
1 parent 4ab8422 commit 4e08b15

File tree

1 file changed

+5
-1
lines changed
  • tensorboard/plugins/projector/vz_projector

1 file changed

+5
-1
lines changed

tensorboard/plugins/projector/vz_projector/data.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,11 @@ export class DataSet {
236236
for (let id = 0; id < this.points.length; ++id) {
237237
let dataPoint = this.points[id];
238238
dataPoint.vector = vector.sub(dataPoint.vector, centroid);
239-
vector.unit(dataPoint.vector);
239+
if (vector.norm2(dataPoint.vector) > 0) {
240+
// If we take the unit norm of a vector of all 0s, we get a vector of
241+
// all NaNs. We prevent that with a guard.
242+
vector.unit(dataPoint.vector);
243+
}
240244
}
241245
}
242246

0 commit comments

Comments
 (0)