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

Block or report a-petr

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
a-petr/README.md

Hello,

I am a machine learning specialist at ClothingTech LLC. My interests are in everything machine learning. Part of my research concerns signal reconstruction where I am trying to improve existing methods, particularly those related to simultaneous reconstruction of multiple signals using sparsity. My other work concerns the small size of neural networks, more specifically, how to achieve them.

You can find additional info on my website at armenakpetrosyan.com.

Pinned

  1. math3215spring2021 math3215spring2021 Public

    Jupyter Notebook 1

  2. OWL OWL Public

    Code Repository for "Orthogonally Weighted Regularization for Rank-Aware Joint Sparse Recovery: Algorithm and Analysis" Authors: A. Petrosyan, K. Pieper, H. Tran

    Python

  3. This Python code implements a sparse... This Python code implements a sparse convex hull approximation algorithm. The algorithm uses a greedy approach to initially select a subset of points from a given set to approximate the convex hull. Once the target number of points is reached, it further refines the selection by iteratively adding and removing points to enhance the quality of the convex hull approximation.
    1
    from scipy.optimize import linprog
    2
    import numpy as np
    3
    from scipy.spatial import ConvexHull
    4
    import matplotlib.pyplot as plt
    5