Skip to content
View nicolas-lair's full-sized avatar

Block or report nicolas-lair

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. AidMe AidMe Public

    Code and experiment of the article AidMe User-in-the-loop Adaptative Intent Detecttion for Instructable Digital Assistant

    Python 3

  2. RL4IoT RL4IoT Public

    Jupyter Notebook 2

  3. nicolas-lair.github.io nicolas-lair.github.io Public

    public page

    SCSS 1

  4. MoveMyWine MoveMyWine Public

    Python

  5. rivten/aoc-2023 rivten/aoc-2023 Public

    Python 2

  6. Factory for chaining the runs of a f... Factory for chaining the runs of a function between two month-year dates
    1
    def chain_run_decorator(start_date, end_date):
    2
        """ Chain run of a function between two month-year dates"""
    3
        def Inner(func):
    4
            def wrapper(*args):
    5
                begin_m, begin_y = map(int, start_date.split("-"))