Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyaptamer/datasets/dataclasses/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _prepare_data(
) -> tuple[np.ndarray, np.ndarray, np.ndarray]:
"""
Prepare the data by augmenting aptamer sequences with their reverse complements
and transforming them to vector numericla representations.
and transforming them to vector numerical representations.

Parameters
----------
Expand All @@ -77,9 +77,9 @@ def _prepare_data(
x_prot : np.ndarray
Protein sequences.
y : np.ndarray
Laabels for the interactions.
split : bool
If True, the dataset will augment aptamer sequences by adding their reverse
Labels for the interactions.
split : str
If "train", the dataset will augment aptamer sequences by adding their reverse
complements.
"""
if split == "train":
Expand Down