Skip to content
View rcgale's full-sized avatar

Block or report rcgale

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. phonologic phonologic Public

    `phonologic` is a tool for building and process phonological feature systems. It was built with automatic speech recognition (ASR) / automatic phoneme recognition (APR) in mind.

    Python 4

  2. phonologic-viewer phonologic-viewer Public

    A GUI to explore error analyses generated by `phonologic`

    JavaScript

  3. strategery strategery Public

    Python

  4. pickledonion pickledonion Public

    Python pickle disk caching which encourages configuration on the outer layers of an "onion" architecture

    Python

  5. Dataset loading in python (`search_d... Dataset loading in python (`search_dir()`)
    1
    def search_dir(d, pattern, match_full_path=False) -> "Iterator[Tuple[str, Tuple[str]]]":
    2
        """
    3
        Performs an `os.walk` and returns an iterator of Tuple[str, Match] for each file matching a regex pattern.
    4
        Note that the /(groups)/ found in a regex match can be unpacked like a tuple, so enjoy!
    5
  6. Timer decorator (`@timed()`) Timer decorator (`@timed()`)
    1
    def timed(long_running_seconds=0.0, file=None):
    2
        import sys
    3
        import functools
    4
        import time
    5
        def decorator_timed(func):