Skip to content
View igormolybog's full-sized avatar
Block or Report

Block or report igormolybog

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

  1. cs285-project cs285-project Public

    Final project on Deep Reinforcement Learning course at Berkeley

    Python 2

  2. myCS285-hw myCS285-hw Public

    For completed homeworks on the Deep Reinforcement Learning course at Berkeley

    Python 1

  3. matrix-sense-global matrix-sense-global Public

    This is a repository for the code supporting the paper Global Optimization in Matrix Sensing

    MATLAB

  4. Explanation of the Python's Method R... Explanation of the Python's Method Resolution Order
    1
    ### Algorithm
    2
    Method resolution order in Python is defined with the [C3 linearization algorithm](https://en.wikipedia.org/wiki/C3_linearization)
    3
    
                  
    4
    The algorithm is defined with two functions: 
    5
    ```code
  5. Templates for defining python decora... Templates for defining python decorators
    1
    ## Templates
    2
    ### Simple decorator
    3
    
                  
    4
    ```python
    5
    import functools