Remove `ABC` from `LightningModule` (#9517)

This commit is contained in:
PuneetDabral 2021-09-17 01:30:54 +05:30 committed by GitHub
parent 982a9560a5
commit 3aba9d16a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -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,