Skip to content

Commit

Permalink
[FutureWarning] Resolving the warning related to the use of a single-…
Browse files Browse the repository at this point in the history
…element series. (#7813)
  • Loading branch information
drivanov authored Oct 10, 2024
1 parent 31115ae commit 433ffb3
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions examples/pytorch/eeg-gcnn/EEGGraphDataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,22 @@ def get_sensor_distances(self):
def get_geodesic_distance(
self, montage_sensor1_idx, montage_sensor2_idx, coords_1010
):
def get_coord(ref_sensor, coord):
return float(
(coords_1010[coords_1010.label == ref_sensor][coord]).iloc[0]
)

# get the reference sensor in the 10-10 system for the current montage pair in 10-20 system
ref_sensor1 = self.ref_names[montage_sensor1_idx]
ref_sensor2 = self.ref_names[montage_sensor2_idx]

x1 = float(coords_1010[coords_1010.label == ref_sensor1]["x"])
y1 = float(coords_1010[coords_1010.label == ref_sensor1]["y"])
z1 = float(coords_1010[coords_1010.label == ref_sensor1]["z"])
x1 = get_coord(ref_sensor1, "x")
y1 = get_coord(ref_sensor1, "y")
z1 = get_coord(ref_sensor1, "z")

x2 = float(coords_1010[coords_1010.label == ref_sensor2]["x"])
y2 = float(coords_1010[coords_1010.label == ref_sensor2]["y"])
z2 = float(coords_1010[coords_1010.label == ref_sensor2]["z"])
x2 = get_coord(ref_sensor2, "x")
y2 = get_coord(ref_sensor2, "y")
z2 = get_coord(ref_sensor2, "z")

# https://math.stackexchange.com/questions/1304169/distance-between-two-points-on-a-sphere
r = 1 # since coords are on unit sphere
Expand Down

0 comments on commit 433ffb3

Please sign in to comment.