Remove `ABC` from `LightningModule` (#9517)
This commit is contained in:
parent
982a9560a5
commit
3aba9d16a8
|
@ -19,7 +19,6 @@ import logging
|
|||
import numbers
|
||||
import os
|
||||
import tempfile
|
||||
from abc import ABC
|
||||
from contextlib import contextmanager
|
||||
from pathlib import Path
|
||||
from typing import Any, Callable, Dict, List, Mapping, Optional, Tuple, Union
|
||||
|
@ -54,7 +53,6 @@ log = logging.getLogger(__name__)
|
|||
|
||||
|
||||
class LightningModule(
|
||||
ABC,
|
||||
DeviceDtypeModuleMixin,
|
||||
HyperparametersMixin,
|
||||
ModelIO,
|
||||
|
|
Loading…
Reference in New Issue