Skip to content

Indexers

Indexer classes for data classes.

ChoiceDatasetIndexer

Bases: Indexer

Indexing class for ChoiceDataset.

Source code in choice_learn/data/indexer.py
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
class ChoiceDatasetIndexer(Indexer):
    """Indexing class for ChoiceDataset."""

    def __init__(self, choice_dataset):
        """Instanciate a ChoiceDatasetIndexer object.

        Parameters
        ----------
        choice_dataset : choce_modeling.data.dataset.ChoiceDataset
            Dataset to be indexed.
        """
        self.choice_dataset = choice_dataset

    def _get_shared_features_by_choice(self, choices_indexes):
        """Access sessions features of the ChoiceDataset.

        Parameters
        ----------
        choices_indexes : list of ints or int
            choices indexes of the shared features to return

        Returns
        -------
        tuple of np.ndarray or np.ndarray
            right indexed contexts_fshared_features_by_choiceeatures of the ChoiceDataset
        """
        if self.choice_dataset.shared_features_by_choice is None:
            shared_features_by_choice = None
        else:
            shared_features_by_choice = []
            for i, shared_feature in enumerate(self.choice_dataset.shared_features_by_choice):
                if hasattr(shared_feature, "batch"):
                    shared_features_by_choice.append(shared_feature.batch[choices_indexes])
                else:
                    shared_features_by_choice.append(
                        np.stack(shared_feature[choices_indexes], axis=0)
                    )
        return shared_features_by_choice

    def _get_items_features_by_choice(self, choices_indexes):
        """Access sessions items features of the ChoiceDataset.

        Parameters
        ----------
        choices_indexes : list of ints or int
            indexes of the choices for which to select the items features

        Returns
        -------
        tuple of np.ndarray or np.ndarray
            right indexes items_features_by_choice of the ChoiceDataset
        """
        if self.choice_dataset.items_features_by_choice is None:
            return None
        items_features_by_choice = []
        for i, items_feature in enumerate(self.choice_dataset.items_features_by_choice):
            if hasattr(items_feature, "batch"):
                items_features_by_choice.append(items_feature.batch[choices_indexes])
            else:
                items_features_by_choice.append(np.stack(items_feature[choices_indexes], axis=0))
        return items_features_by_choice

    def __getitem__(self, choices_indexes):
        """Access data within the ChoiceDataset from its index.

        One index corresponds to a choice within a session.
        Return order:
            - Fixed item features
            - Contexts features
            - Contexts item features
            - Items availabilities
            - Choices

        Parameters
        ----------
        choices_indexes : int or list of int or slice
            indexes of the choices (that will be mapped to choice & session indexes) to return

        Returns
        -------
        np.ndarray
            shared_features at choices_indexes
        np.ndarray
            items_features at choices_indexes
        np.ndarray
            available_items_by_choice at choices_indexes
        np.ndarray
            choices at choices_indexes
        """
        if isinstance(choices_indexes, list):
            # Get the features
            shared_features_by_choice = self._get_shared_features_by_choice(choices_indexes)
            items_features_by_choice = self._get_items_features_by_choice(choices_indexes)

            if self.choice_dataset.available_items_by_choice is None:
                available_items_by_choice = np.ones(
                    (len(choices_indexes), self.choice_dataset.base_num_items)
                ).astype("float32")
            else:
                if isinstance(self.choice_dataset.available_items_by_choice, tuple):
                    available_items_by_choice = self.choice_dataset.available_items_by_choice[
                        0
                    ].batch[self.choice_dataset.available_items_by_choice[1][choices_indexes]]
                else:
                    available_items_by_choice = self.choice_dataset.available_items_by_choice[
                        choices_indexes
                    ]
                available_items_by_choice = available_items_by_choice.astype(
                    self.choice_dataset._return_types[2]
                )

            choices = self.choice_dataset.choices[choices_indexes].astype(
                self.choice_dataset._return_types[3]
            )

            ###
            if len(self.choice_dataset.shared_features_by_choice_map) > 0:
                mapped_features = []
                ###
                for tuple_index in range(len(shared_features_by_choice)):
                    if tuple_index in self.choice_dataset.shared_features_by_choice_map.keys():
                        feat_ind_min = 0
                        unstacked_feat = []
                        for feature_index in np.sort(
                            list(
                                self.choice_dataset.shared_features_by_choice_map[
                                    tuple_index
                                ].keys()
                            )
                        ):
                            unstacked_feat.append(
                                shared_features_by_choice[tuple_index][
                                    :, feat_ind_min:feature_index
                                ]
                            )
                            unstacked_feat.append(
                                self.choice_dataset.shared_features_by_choice_map[tuple_index][
                                    feature_index
                                ].batch[shared_features_by_choice[tuple_index][:, feature_index]]
                            )
                            feat_ind_min = feature_index + 1
                        mapped_features.append(np.concatenate(unstacked_feat, axis=1))
                    else:
                        mapped_features.append(shared_features_by_choice[tuple_index])

                shared_features_by_choice = mapped_features

            if len(self.choice_dataset.items_features_by_choice_map) > 0:
                mapped_features = []
                for tuple_index in range(len(items_features_by_choice)):
                    if tuple_index in self.choice_dataset.items_features_by_choice_map.keys():
                        if items_features_by_choice[tuple_index].ndim == 1:
                            mapped_features.append(
                                self.choice_dataset.items_features_by_choice_map[tuple_index][
                                    0
                                ].batch[items_features_by_choice[tuple_index]]
                            )
                        else:
                            feat_ind_min = 0
                            unstacked_feat = []
                            for feature_index in np.sort(
                                list(
                                    self.choice_dataset.items_features_by_choice_map[
                                        tuple_index
                                    ].keys()
                                )
                            ):
                                unstacked_feat.append(
                                    items_features_by_choice[tuple_index][
                                        :, :, feat_ind_min:feature_index
                                    ]
                                )
                                unstacked_feat.append(
                                    self.choice_dataset.items_features_by_choice_map[tuple_index][
                                        feature_index
                                    ].batch[
                                        items_features_by_choice[tuple_index][:, :, feature_index]
                                    ]
                                )
                                feat_ind_min = feature_index + 1
                            mapped_features.append(np.concatenate(unstacked_feat, axis=2))
                    else:
                        mapped_features.append(items_features_by_choice[tuple_index])

                items_features_by_choice = mapped_features

            if shared_features_by_choice is not None:
                for i in range(len(shared_features_by_choice)):
                    shared_features_by_choice[i] = shared_features_by_choice[i].astype(
                        self.choice_dataset._return_types[0][i]
                    )
                if not self.choice_dataset._return_shared_features_by_choice_tuple:
                    shared_features_by_choice = shared_features_by_choice[0]
                else:
                    shared_features_by_choice = tuple(shared_features_by_choice)

            if items_features_by_choice is not None:
                for i in range(len(items_features_by_choice)):
                    items_features_by_choice[i] = items_features_by_choice[i].astype(
                        self.choice_dataset._return_types[1][i]
                    )
                # items_features_by_choice were not given as a tuple, so we return do not return
                # it as a tuple
                if not self.choice_dataset._return_items_features_by_choice_tuple:
                    items_features_by_choice = items_features_by_choice[0]
                else:
                    items_features_by_choice = tuple(items_features_by_choice)

            return (
                shared_features_by_choice,
                items_features_by_choice,
                available_items_by_choice,
                choices,
            )

        if isinstance(choices_indexes, slice):
            return self.__getitem__(
                list(range(*choices_indexes.indices(self.choice_dataset.choices.shape[0])))
            )

        if isinstance(choices_indexes, int):
            choices_indexes = [choices_indexes]
            (
                shared_features_by_choices,
                items_features_by_choice,
                available_items_by_choice,
                choice,
            ) = self.__getitem__(choices_indexes)
            if shared_features_by_choices is not None:
                if isinstance(shared_features_by_choices, tuple):
                    shared_features_by_choices = tuple(
                        feat[0] for feat in shared_features_by_choices
                    )
                else:
                    shared_features_by_choices = shared_features_by_choices[0]
            if items_features_by_choice is not None:
                if isinstance(items_features_by_choice, tuple):
                    items_features_by_choice = tuple(feat[0] for feat in items_features_by_choice)
                else:
                    items_features_by_choice = items_features_by_choice[0]

            return (
                shared_features_by_choices,
                items_features_by_choice,
                available_items_by_choice[0],
                choice[0],
            )
        logging.error(f"Type{type(choices_indexes)} not handled")
        raise NotImplementedError(f"Type{type(choices_indexes)} not handled")

    def get_full_dataset(self):
        """Return the full dataset.

        This function is here to speed up iteration over dataset when batch_size
        is -1 or length of dataset.

        Returns
        -------
        np.ndarray
            all shared_features
        np.ndarray
            all items_features
        np.ndarray
            all available_items_by_choice
        np.ndarray
            all choices
        """
        if self.choice_dataset.shared_features_by_choice is not None:
            shared_features_by_choice = [
                feat for feat in self.choice_dataset.shared_features_by_choice
            ]
        else:
            shared_features_by_choice = None

        if self.choice_dataset.items_features_by_choice is not None:
            items_features_by_choice = [
                feat for feat in self.choice_dataset.items_features_by_choice
            ]
        else:
            items_features_by_choice = None

        if self.choice_dataset.available_items_by_choice is None:
            available_items_by_choice = np.ones(
                (len(self.choice_dataset), self.choice_dataset.base_num_items)
            ).astype("float32")
        else:
            if isinstance(self.choice_dataset.available_items_by_choice, tuple):
                available_items_by_choice = self.choice_dataset.available_items_by_choice[0].batch[
                    self.choice_dataset.available_items_by_choice[1]
                ]
            else:
                available_items_by_choice = self.choice_dataset.available_items_by_choice
        available_items_by_choice = available_items_by_choice.astype(
            self.choice_dataset._return_types[2]
        )

        choices = self.choice_dataset.choices.astype(self.choice_dataset._return_types[3])

        ###
        if len(self.choice_dataset.shared_features_by_choice_map) > 0:
            mapped_features = []
            ###
            for tuple_index in range(len(shared_features_by_choice)):
                if tuple_index in self.choice_dataset.shared_features_by_choice_map.keys():
                    feat_ind_min = 0
                    unstacked_feat = []
                    for feature_index in np.sort(
                        list(self.choice_dataset.shared_features_by_choice_map[tuple_index].keys())
                    ):
                        unstacked_feat.append(
                            shared_features_by_choice[tuple_index][:, feat_ind_min:feature_index]
                        )
                        unstacked_feat.append(
                            self.choice_dataset.shared_features_by_choice_map[tuple_index][
                                feature_index
                            ].batch[shared_features_by_choice[tuple_index][:, feature_index]]
                        )
                        feat_ind_min = feature_index + 1
                    mapped_features.append(np.concatenate(unstacked_feat, axis=1))
                else:
                    mapped_features.append(shared_features_by_choice[tuple_index])

            shared_features_by_choice = mapped_features

        if len(self.choice_dataset.items_features_by_choice_map) > 0:
            mapped_features = []
            for tuple_index in range(len(items_features_by_choice)):
                if tuple_index in self.choice_dataset.items_features_by_choice_map.keys():
                    feat_ind_min = 0
                    unstacked_feat = []
                    for feature_index in np.sort(
                        list(self.choice_dataset.items_features_by_choice_map[tuple_index].keys())
                    ):
                        unstacked_feat.append(
                            items_features_by_choice[tuple_index][:, :, feat_ind_min:feature_index]
                        )
                        unstacked_feat.append(
                            self.choice_dataset.items_features_by_choice_map[tuple_index][
                                feature_index
                            ].batch[items_features_by_choice[tuple_index][:, :, feature_index]]
                        )
                        feat_ind_min = feature_index + 1
                    mapped_features.append(np.concatenate(unstacked_feat, axis=2))
                else:
                    mapped_features.append(items_features_by_choice[tuple_index])

            items_features_by_choice = mapped_features

        if shared_features_by_choice is not None:
            for i in range(len(shared_features_by_choice)):
                shared_features_by_choice[i] = shared_features_by_choice[i].astype(
                    self.choice_dataset._return_types[0][i]
                )
            if not self.choice_dataset._return_shared_features_by_choice_tuple:
                shared_features_by_choice = shared_features_by_choice[0]
            else:
                shared_features_by_choice = tuple(shared_features_by_choice)

        if items_features_by_choice is not None:
            for i in range(len(items_features_by_choice)):
                items_features_by_choice[i] = items_features_by_choice[i].astype(
                    self.choice_dataset._return_types[1][i]
                )
            # items_features_by_choice were not given as a tuple, so we return do not return
            # it as a tuple
            if not self.choice_dataset._return_items_features_by_choice_tuple:
                items_features_by_choice = items_features_by_choice[0]
            else:
                items_features_by_choice = tuple(items_features_by_choice)

        return (
            shared_features_by_choice,
            items_features_by_choice,
            available_items_by_choice,
            choices,
        )

__getitem__(choices_indexes)

Access data within the ChoiceDataset from its index.

One index corresponds to a choice within a session. Return order: - Fixed item features - Contexts features - Contexts item features - Items availabilities - Choices

Parameters:

Name Type Description Default
choices_indexes int or list of int or slice

indexes of the choices (that will be mapped to choice & session indexes) to return

required

Returns:

Type Description
ndarray

shared_features at choices_indexes

ndarray

items_features at choices_indexes

ndarray

available_items_by_choice at choices_indexes

ndarray

choices at choices_indexes

Source code in choice_learn/data/indexer.py
def __getitem__(self, choices_indexes):
    """Access data within the ChoiceDataset from its index.

    One index corresponds to a choice within a session.
    Return order:
        - Fixed item features
        - Contexts features
        - Contexts item features
        - Items availabilities
        - Choices

    Parameters
    ----------
    choices_indexes : int or list of int or slice
        indexes of the choices (that will be mapped to choice & session indexes) to return

    Returns
    -------
    np.ndarray
        shared_features at choices_indexes
    np.ndarray
        items_features at choices_indexes
    np.ndarray
        available_items_by_choice at choices_indexes
    np.ndarray
        choices at choices_indexes
    """
    if isinstance(choices_indexes, list):
        # Get the features
        shared_features_by_choice = self._get_shared_features_by_choice(choices_indexes)
        items_features_by_choice = self._get_items_features_by_choice(choices_indexes)

        if self.choice_dataset.available_items_by_choice is None:
            available_items_by_choice = np.ones(
                (len(choices_indexes), self.choice_dataset.base_num_items)
            ).astype("float32")
        else:
            if isinstance(self.choice_dataset.available_items_by_choice, tuple):
                available_items_by_choice = self.choice_dataset.available_items_by_choice[
                    0
                ].batch[self.choice_dataset.available_items_by_choice[1][choices_indexes]]
            else:
                available_items_by_choice = self.choice_dataset.available_items_by_choice[
                    choices_indexes
                ]
            available_items_by_choice = available_items_by_choice.astype(
                self.choice_dataset._return_types[2]
            )

        choices = self.choice_dataset.choices[choices_indexes].astype(
            self.choice_dataset._return_types[3]
        )

        ###
        if len(self.choice_dataset.shared_features_by_choice_map) > 0:
            mapped_features = []
            ###
            for tuple_index in range(len(shared_features_by_choice)):
                if tuple_index in self.choice_dataset.shared_features_by_choice_map.keys():
                    feat_ind_min = 0
                    unstacked_feat = []
                    for feature_index in np.sort(
                        list(
                            self.choice_dataset.shared_features_by_choice_map[
                                tuple_index
                            ].keys()
                        )
                    ):
                        unstacked_feat.append(
                            shared_features_by_choice[tuple_index][
                                :, feat_ind_min:feature_index
                            ]
                        )
                        unstacked_feat.append(
                            self.choice_dataset.shared_features_by_choice_map[tuple_index][
                                feature_index
                            ].batch[shared_features_by_choice[tuple_index][:, feature_index]]
                        )
                        feat_ind_min = feature_index + 1
                    mapped_features.append(np.concatenate(unstacked_feat, axis=1))
                else:
                    mapped_features.append(shared_features_by_choice[tuple_index])

            shared_features_by_choice = mapped_features

        if len(self.choice_dataset.items_features_by_choice_map) > 0:
            mapped_features = []
            for tuple_index in range(len(items_features_by_choice)):
                if tuple_index in self.choice_dataset.items_features_by_choice_map.keys():
                    if items_features_by_choice[tuple_index].ndim == 1:
                        mapped_features.append(
                            self.choice_dataset.items_features_by_choice_map[tuple_index][
                                0
                            ].batch[items_features_by_choice[tuple_index]]
                        )
                    else:
                        feat_ind_min = 0
                        unstacked_feat = []
                        for feature_index in np.sort(
                            list(
                                self.choice_dataset.items_features_by_choice_map[
                                    tuple_index
                                ].keys()
                            )
                        ):
                            unstacked_feat.append(
                                items_features_by_choice[tuple_index][
                                    :, :, feat_ind_min:feature_index
                                ]
                            )
                            unstacked_feat.append(
                                self.choice_dataset.items_features_by_choice_map[tuple_index][
                                    feature_index
                                ].batch[
                                    items_features_by_choice[tuple_index][:, :, feature_index]
                                ]
                            )
                            feat_ind_min = feature_index + 1
                        mapped_features.append(np.concatenate(unstacked_feat, axis=2))
                else:
                    mapped_features.append(items_features_by_choice[tuple_index])

            items_features_by_choice = mapped_features

        if shared_features_by_choice is not None:
            for i in range(len(shared_features_by_choice)):
                shared_features_by_choice[i] = shared_features_by_choice[i].astype(
                    self.choice_dataset._return_types[0][i]
                )
            if not self.choice_dataset._return_shared_features_by_choice_tuple:
                shared_features_by_choice = shared_features_by_choice[0]
            else:
                shared_features_by_choice = tuple(shared_features_by_choice)

        if items_features_by_choice is not None:
            for i in range(len(items_features_by_choice)):
                items_features_by_choice[i] = items_features_by_choice[i].astype(
                    self.choice_dataset._return_types[1][i]
                )
            # items_features_by_choice were not given as a tuple, so we return do not return
            # it as a tuple
            if not self.choice_dataset._return_items_features_by_choice_tuple:
                items_features_by_choice = items_features_by_choice[0]
            else:
                items_features_by_choice = tuple(items_features_by_choice)

        return (
            shared_features_by_choice,
            items_features_by_choice,
            available_items_by_choice,
            choices,
        )

    if isinstance(choices_indexes, slice):
        return self.__getitem__(
            list(range(*choices_indexes.indices(self.choice_dataset.choices.shape[0])))
        )

    if isinstance(choices_indexes, int):
        choices_indexes = [choices_indexes]
        (
            shared_features_by_choices,
            items_features_by_choice,
            available_items_by_choice,
            choice,
        ) = self.__getitem__(choices_indexes)
        if shared_features_by_choices is not None:
            if isinstance(shared_features_by_choices, tuple):
                shared_features_by_choices = tuple(
                    feat[0] for feat in shared_features_by_choices
                )
            else:
                shared_features_by_choices = shared_features_by_choices[0]
        if items_features_by_choice is not None:
            if isinstance(items_features_by_choice, tuple):
                items_features_by_choice = tuple(feat[0] for feat in items_features_by_choice)
            else:
                items_features_by_choice = items_features_by_choice[0]

        return (
            shared_features_by_choices,
            items_features_by_choice,
            available_items_by_choice[0],
            choice[0],
        )
    logging.error(f"Type{type(choices_indexes)} not handled")
    raise NotImplementedError(f"Type{type(choices_indexes)} not handled")

__init__(choice_dataset)

Instanciate a ChoiceDatasetIndexer object.

Parameters:

Name Type Description Default
choice_dataset ChoiceDataset

Dataset to be indexed.

required
Source code in choice_learn/data/indexer.py
def __init__(self, choice_dataset):
    """Instanciate a ChoiceDatasetIndexer object.

    Parameters
    ----------
    choice_dataset : choce_modeling.data.dataset.ChoiceDataset
        Dataset to be indexed.
    """
    self.choice_dataset = choice_dataset

get_full_dataset()

Return the full dataset.

This function is here to speed up iteration over dataset when batch_size is -1 or length of dataset.

Returns:

Type Description
ndarray

all shared_features

ndarray

all items_features

ndarray

all available_items_by_choice

ndarray

all choices

Source code in choice_learn/data/indexer.py
def get_full_dataset(self):
    """Return the full dataset.

    This function is here to speed up iteration over dataset when batch_size
    is -1 or length of dataset.

    Returns
    -------
    np.ndarray
        all shared_features
    np.ndarray
        all items_features
    np.ndarray
        all available_items_by_choice
    np.ndarray
        all choices
    """
    if self.choice_dataset.shared_features_by_choice is not None:
        shared_features_by_choice = [
            feat for feat in self.choice_dataset.shared_features_by_choice
        ]
    else:
        shared_features_by_choice = None

    if self.choice_dataset.items_features_by_choice is not None:
        items_features_by_choice = [
            feat for feat in self.choice_dataset.items_features_by_choice
        ]
    else:
        items_features_by_choice = None

    if self.choice_dataset.available_items_by_choice is None:
        available_items_by_choice = np.ones(
            (len(self.choice_dataset), self.choice_dataset.base_num_items)
        ).astype("float32")
    else:
        if isinstance(self.choice_dataset.available_items_by_choice, tuple):
            available_items_by_choice = self.choice_dataset.available_items_by_choice[0].batch[
                self.choice_dataset.available_items_by_choice[1]
            ]
        else:
            available_items_by_choice = self.choice_dataset.available_items_by_choice
    available_items_by_choice = available_items_by_choice.astype(
        self.choice_dataset._return_types[2]
    )

    choices = self.choice_dataset.choices.astype(self.choice_dataset._return_types[3])

    ###
    if len(self.choice_dataset.shared_features_by_choice_map) > 0:
        mapped_features = []
        ###
        for tuple_index in range(len(shared_features_by_choice)):
            if tuple_index in self.choice_dataset.shared_features_by_choice_map.keys():
                feat_ind_min = 0
                unstacked_feat = []
                for feature_index in np.sort(
                    list(self.choice_dataset.shared_features_by_choice_map[tuple_index].keys())
                ):
                    unstacked_feat.append(
                        shared_features_by_choice[tuple_index][:, feat_ind_min:feature_index]
                    )
                    unstacked_feat.append(
                        self.choice_dataset.shared_features_by_choice_map[tuple_index][
                            feature_index
                        ].batch[shared_features_by_choice[tuple_index][:, feature_index]]
                    )
                    feat_ind_min = feature_index + 1
                mapped_features.append(np.concatenate(unstacked_feat, axis=1))
            else:
                mapped_features.append(shared_features_by_choice[tuple_index])

        shared_features_by_choice = mapped_features

    if len(self.choice_dataset.items_features_by_choice_map) > 0:
        mapped_features = []
        for tuple_index in range(len(items_features_by_choice)):
            if tuple_index in self.choice_dataset.items_features_by_choice_map.keys():
                feat_ind_min = 0
                unstacked_feat = []
                for feature_index in np.sort(
                    list(self.choice_dataset.items_features_by_choice_map[tuple_index].keys())
                ):
                    unstacked_feat.append(
                        items_features_by_choice[tuple_index][:, :, feat_ind_min:feature_index]
                    )
                    unstacked_feat.append(
                        self.choice_dataset.items_features_by_choice_map[tuple_index][
                            feature_index
                        ].batch[items_features_by_choice[tuple_index][:, :, feature_index]]
                    )
                    feat_ind_min = feature_index + 1
                mapped_features.append(np.concatenate(unstacked_feat, axis=2))
            else:
                mapped_features.append(items_features_by_choice[tuple_index])

        items_features_by_choice = mapped_features

    if shared_features_by_choice is not None:
        for i in range(len(shared_features_by_choice)):
            shared_features_by_choice[i] = shared_features_by_choice[i].astype(
                self.choice_dataset._return_types[0][i]
            )
        if not self.choice_dataset._return_shared_features_by_choice_tuple:
            shared_features_by_choice = shared_features_by_choice[0]
        else:
            shared_features_by_choice = tuple(shared_features_by_choice)

    if items_features_by_choice is not None:
        for i in range(len(items_features_by_choice)):
            items_features_by_choice[i] = items_features_by_choice[i].astype(
                self.choice_dataset._return_types[1][i]
            )
        # items_features_by_choice were not given as a tuple, so we return do not return
        # it as a tuple
        if not self.choice_dataset._return_items_features_by_choice_tuple:
            items_features_by_choice = items_features_by_choice[0]
        else:
            items_features_by_choice = tuple(items_features_by_choice)

    return (
        shared_features_by_choice,
        items_features_by_choice,
        available_items_by_choice,
        choices,
    )

Indexer

Bases: object

Base class for Indexer.

Source code in choice_learn/data/indexer.py
class Indexer(object):
    """Base class for Indexer."""

    def __init__(self, indexed_object):
        """Instanciate an Indexer object.

        Parameters
        ----------
        indexed_object : object
            object to be indexed.
        """
        self.indexed_object = indexed_object

    @abstractmethod
    def __getitem__(self, index):
        """To be coded for children classes.

        Parameters
        ----------
        index : int, slice, list
            index(es) of elements of self.indexed_object to be returned.
        """
        pass

__getitem__(index) abstractmethod

To be coded for children classes.

Parameters:

Name Type Description Default
index (int, slice, list)

index(es) of elements of self.indexed_object to be returned.

required
Source code in choice_learn/data/indexer.py
@abstractmethod
def __getitem__(self, index):
    """To be coded for children classes.

    Parameters
    ----------
    index : int, slice, list
        index(es) of elements of self.indexed_object to be returned.
    """
    pass

__init__(indexed_object)

Instanciate an Indexer object.

Parameters:

Name Type Description Default
indexed_object object

object to be indexed.

required
Source code in choice_learn/data/indexer.py
def __init__(self, indexed_object):
    """Instanciate an Indexer object.

    Parameters
    ----------
    indexed_object : object
        object to be indexed.
    """
    self.indexed_object = indexed_object

OneHotStorageIndexer

Bases: Indexer

Class for Ilocing OneHotStorage.

Source code in choice_learn/data/indexer.py
class OneHotStorageIndexer(Indexer):
    """Class for Ilocing OneHotStorage."""

    def __init__(self, storage):
        """OneHotStorageIndexer constructor.

        Parameters
        ----------
        storage : choice_modeling.data.store.OneHotStorage
            OneHotStorage object to be indexed.
        """
        self.storage = storage
        self.shape = storage.shape
        self.dtype = storage.dtype

    def __getitem__(self, sequence_keys):
        """Get the 1 indexes corresponding to the sequence_keys and builds the OneHot matrix.

        Parameters
        ----------
        sequence_keys : (int, list, slice)
            keys of values to be retrieved

        Returns
        -------
        np.ndarray
            OneHot reconstructed vectors corresponding to sequence_keys
        """
        if isinstance(sequence_keys, list) or isinstance(sequence_keys, np.ndarray):
            # Construction of the OneHot vector from the index of the 1 value
            one_hot = []
            for j in sequence_keys:
                one_hot.append(self[j])
            return np.stack(one_hot).astype(self.dtype)
        if isinstance(sequence_keys, slice):
            return self[list(range(*sequence_keys.indices(len(self.shape[0]))))]
        # else:
        one_hot = np.zeros(self.shape[1])
        one_hot[self.storage.storage[sequence_keys]] = 1
        return one_hot.astype(self.dtype)

__getitem__(sequence_keys)

Get the 1 indexes corresponding to the sequence_keys and builds the OneHot matrix.

Parameters:

Name Type Description Default
sequence_keys (int, list, slice)

keys of values to be retrieved

required

Returns:

Type Description
ndarray

OneHot reconstructed vectors corresponding to sequence_keys

Source code in choice_learn/data/indexer.py
def __getitem__(self, sequence_keys):
    """Get the 1 indexes corresponding to the sequence_keys and builds the OneHot matrix.

    Parameters
    ----------
    sequence_keys : (int, list, slice)
        keys of values to be retrieved

    Returns
    -------
    np.ndarray
        OneHot reconstructed vectors corresponding to sequence_keys
    """
    if isinstance(sequence_keys, list) or isinstance(sequence_keys, np.ndarray):
        # Construction of the OneHot vector from the index of the 1 value
        one_hot = []
        for j in sequence_keys:
            one_hot.append(self[j])
        return np.stack(one_hot).astype(self.dtype)
    if isinstance(sequence_keys, slice):
        return self[list(range(*sequence_keys.indices(len(self.shape[0]))))]
    # else:
    one_hot = np.zeros(self.shape[1])
    one_hot[self.storage.storage[sequence_keys]] = 1
    return one_hot.astype(self.dtype)

__init__(storage)

OneHotStorageIndexer constructor.

Parameters:

Name Type Description Default
storage OneHotStorage

OneHotStorage object to be indexed.

required
Source code in choice_learn/data/indexer.py
def __init__(self, storage):
    """OneHotStorageIndexer constructor.

    Parameters
    ----------
    storage : choice_modeling.data.store.OneHotStorage
        OneHotStorage object to be indexed.
    """
    self.storage = storage
    self.shape = storage.shape
    self.dtype = storage.dtype

OneHotStoreIndexer

Bases: Indexer

Class for Ilocing OneHotStore.

Source code in choice_learn/data/indexer.py
class OneHotStoreIndexer(Indexer):
    """Class for Ilocing OneHotStore."""

    def __init__(self, store):
        """OneHotStoreIndexer constructor.

        Parameters
        ----------
        store : choice_modeling.data.store.OneHotStore
            OneHotStore object to be indexed.
        """
        self.store = store

        self.shape = (len(self.store.sequence), np.max(list(self.store.store.values())) + 1)

    def __getitem__(self, sequence_index):
        """Get an element at sequence_index-th position of self.sequence.

        Parameters
        ----------
        sequence_index : (int, list, slice)
            index from sequence of element to get

        Returns
        -------
        np.ndarray
            OneHot features corresponding to the sequence_index-th position of sequence
        """
        if isinstance(sequence_index, list):
            # Construction of the OneHot vector from the index of the 1 value
            one_hot = np.zeros((len(sequence_index), self.shape[1]))
            for i, j in enumerate(sequence_index):
                one_hot[i, self.store.store[self.store.sequence[j]]] = 1
            return one_hot.astype(self.store.dtype)
        if isinstance(sequence_index, slice):
            return self[list(range(*sequence_index.indices(len(self.store.sequence))))]
        # else:
        one_hot = np.zeros(self.shape[1])
        one_hot[self.store.store[self.store.sequence[sequence_index]]] = 1
        return one_hot.astype(self.store.dtype)

__getitem__(sequence_index)

Get an element at sequence_index-th position of self.sequence.

Parameters:

Name Type Description Default
sequence_index (int, list, slice)

index from sequence of element to get

required

Returns:

Type Description
ndarray

OneHot features corresponding to the sequence_index-th position of sequence

Source code in choice_learn/data/indexer.py
def __getitem__(self, sequence_index):
    """Get an element at sequence_index-th position of self.sequence.

    Parameters
    ----------
    sequence_index : (int, list, slice)
        index from sequence of element to get

    Returns
    -------
    np.ndarray
        OneHot features corresponding to the sequence_index-th position of sequence
    """
    if isinstance(sequence_index, list):
        # Construction of the OneHot vector from the index of the 1 value
        one_hot = np.zeros((len(sequence_index), self.shape[1]))
        for i, j in enumerate(sequence_index):
            one_hot[i, self.store.store[self.store.sequence[j]]] = 1
        return one_hot.astype(self.store.dtype)
    if isinstance(sequence_index, slice):
        return self[list(range(*sequence_index.indices(len(self.store.sequence))))]
    # else:
    one_hot = np.zeros(self.shape[1])
    one_hot[self.store.store[self.store.sequence[sequence_index]]] = 1
    return one_hot.astype(self.store.dtype)

__init__(store)

OneHotStoreIndexer constructor.

Parameters:

Name Type Description Default
store OneHotStore

OneHotStore object to be indexed.

required
Source code in choice_learn/data/indexer.py
def __init__(self, store):
    """OneHotStoreIndexer constructor.

    Parameters
    ----------
    store : choice_modeling.data.store.OneHotStore
        OneHotStore object to be indexed.
    """
    self.store = store

    self.shape = (len(self.store.sequence), np.max(list(self.store.store.values())) + 1)

StorageIndexer

Bases: Indexer

Class for Ilocing/Batching FeaturesStorage.

Source code in choice_learn/data/indexer.py
class StorageIndexer(Indexer):
    """Class for Ilocing/Batching FeaturesStorage."""

    def __init__(self, storage):
        """StoreIndexer constructor.

        Parameters
        ----------
        storage : choice_modeling.data.store.FeaturesStorage
            Storage object to be indexed.
        """
        self.storage = storage

    def __getitem__(self, sequence_keys):
        """Return the features appearing at the sequence_index-th position of sequence.

        Parameters
        ----------
        sequence_keys : (int, list, slice)
            keys of values to be retrieved

        Returns
        -------
        array_like
            features corresponding to the sequence_keys
        """
        if isinstance(sequence_keys, list) or isinstance(sequence_keys, np.ndarray):
            if len(np.array(sequence_keys).shape) > 1:
                return np.stack([self.storage.batch[key] for key in sequence_keys], axis=0)
            return np.array([self.storage.storage[key] for key in sequence_keys])

        if isinstance(sequence_keys, slice):
            raise ValueError("Slicing is not supported for storage")
        return np.array(self.storage.storage[sequence_keys])

__getitem__(sequence_keys)

Return the features appearing at the sequence_index-th position of sequence.

Parameters:

Name Type Description Default
sequence_keys (int, list, slice)

keys of values to be retrieved

required

Returns:

Type Description
array_like

features corresponding to the sequence_keys

Source code in choice_learn/data/indexer.py
def __getitem__(self, sequence_keys):
    """Return the features appearing at the sequence_index-th position of sequence.

    Parameters
    ----------
    sequence_keys : (int, list, slice)
        keys of values to be retrieved

    Returns
    -------
    array_like
        features corresponding to the sequence_keys
    """
    if isinstance(sequence_keys, list) or isinstance(sequence_keys, np.ndarray):
        if len(np.array(sequence_keys).shape) > 1:
            return np.stack([self.storage.batch[key] for key in sequence_keys], axis=0)
        return np.array([self.storage.storage[key] for key in sequence_keys])

    if isinstance(sequence_keys, slice):
        raise ValueError("Slicing is not supported for storage")
    return np.array(self.storage.storage[sequence_keys])

__init__(storage)

StoreIndexer constructor.

Parameters:

Name Type Description Default
storage FeaturesStorage

Storage object to be indexed.

required
Source code in choice_learn/data/indexer.py
def __init__(self, storage):
    """StoreIndexer constructor.

    Parameters
    ----------
    storage : choice_modeling.data.store.FeaturesStorage
        Storage object to be indexed.
    """
    self.storage = storage

StoreIndexer

Bases: Indexer

Class for Ilocing/Batching FeaturesStore.

Source code in choice_learn/data/indexer.py
class StoreIndexer(Indexer):
    """Class for Ilocing/Batching FeaturesStore."""

    def __init__(self, store):
        """StoreIndexer constructor.

        Parameters
        ----------
        store : choice_modeling.data.store.FeaturesStore
            Store object to be indexed.
        """
        self.store = store

    def __getitem__(self, sequence_index):
        """Return the features appearing at the sequence_index-th position of sequence.

        Parameters
        ----------
        sequence_index : (int, list, slice)
            index position of the sequence

        Returns
        -------
        array_like
            features corresponding to the sequence_index-th position of sequence
        """
        if isinstance(sequence_index, list):
            return [self.store.store[self.store.sequence[i]] for i in sequence_index]
        if isinstance(sequence_index, slice):
            return [
                self.store.store[self.store.sequence[i]]
                for i in range(*sequence_index.indices(len(self.store.sequence)))
            ]
        return self.store.store[self.store.sequence[sequence_index]]

__getitem__(sequence_index)

Return the features appearing at the sequence_index-th position of sequence.

Parameters:

Name Type Description Default
sequence_index (int, list, slice)

index position of the sequence

required

Returns:

Type Description
array_like

features corresponding to the sequence_index-th position of sequence

Source code in choice_learn/data/indexer.py
def __getitem__(self, sequence_index):
    """Return the features appearing at the sequence_index-th position of sequence.

    Parameters
    ----------
    sequence_index : (int, list, slice)
        index position of the sequence

    Returns
    -------
    array_like
        features corresponding to the sequence_index-th position of sequence
    """
    if isinstance(sequence_index, list):
        return [self.store.store[self.store.sequence[i]] for i in sequence_index]
    if isinstance(sequence_index, slice):
        return [
            self.store.store[self.store.sequence[i]]
            for i in range(*sequence_index.indices(len(self.store.sequence)))
        ]
    return self.store.store[self.store.sequence[sequence_index]]

__init__(store)

StoreIndexer constructor.

Parameters:

Name Type Description Default
store FeaturesStore

Store object to be indexed.

required
Source code in choice_learn/data/indexer.py
def __init__(self, store):
    """StoreIndexer constructor.

    Parameters
    ----------
    store : choice_modeling.data.store.FeaturesStore
        Store object to be indexed.
    """
    self.store = store