Giter Club home page Giter Club logo

keras-generators's People

Contributors

asuiu avatar hhroberthdaniel avatar madalinrusu avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

keras-generators's Issues

Workaround for Keras memory leaks

Since keras.Model.predict method has proved memory leaks, a workaround is needed and periodically clear the Keras backend state by calling K.clear_session().

Please add this functionality to ModelObject in the next way:

class ModelObject(ABC):
    def __init__(
            self,
            mp: ModelParams,
            model: Model,
            encoders: Dict[str, List[DataEncoder]],
            state_autoclear: int = 128,
    ) -> None:
        """
        :param mp: the model parameters
        :param model: the keras model
        :param encoders: the encoders used to encode/decode the data
        :param state_autoclear: the number of calls to predict/evaluate methods after which the keras session is cleared
        """
        self.mp = mp
        self.model = model
        self.encoders = encoders
        self._state_autoclear = state_autoclear
        self._state_calls = 0

    def _check_clear_state(self):
        self._state_calls += 1  # since it's an atomic operation, it's thread safe due to GIL
        if self._state_calls >= self._state_autoclear:
            K.clear_session()
            logging.debug(f"Cleared keras session after {self._state_calls} calls to predict methods")
            self._state_calls = 0

and add _check_clear_state to predict() and evaluate() methods

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.