Skip to content

Commit 914941b

Browse files
committed
minor changes
1 parent 992b48c commit 914941b

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

chebai/models/ffn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def __init__(
2020
**kwargs
2121
):
2222
super().__init__(**kwargs)
23+
2324
layers = []
2425
current_layer_input_size = input_size
2526
for hidden_dim in hidden_layers:

chebai/preprocessing/datasets/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import os
22
import random
33
from abc import ABC, abstractmethod
4-
from dataclasses import dataclass
54
from typing import Any, Dict, Generator, List, Optional, Tuple, Union
65

76
import lightning as pl

chebai/preprocessing/datasets/chebi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ def __init__(
148148
# This is to get the data from respective directory related to "chebi_version_train"
149149
_init_kwargs = kwargs
150150
_init_kwargs["chebi_version"] = self.chebi_version_train
151-
_init_kwargs["_skip_data_methods_on_init"] = True
152151
self._chebi_version_train_obj = self.__class__(
153152
single_class=self.single_class,
154153
**_init_kwargs,

0 commit comments

Comments
 (0)