Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
- Idein/qmkl: BLAS library for VideoCore IV QPU (Raspberry Pi Zero/1/2/3).
- Idein/qmkl6: BLAS library for VideoCore VI QPU (Raspberry Pi 4).
- Terminus-IMRC/mailbox: A wrapper for Mailbox interface.
- Idein/librpimemmgr: A memory manager.
- Terminus-IMRC/libvc4regmap: A library for accessing peripherals (incl. V3D).
- Terminus-IMRC/librpii2cslv: An I2C slave wrapper.
- Idein/librpicopy: Fast implementations of memory copy and fill with DMA.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Authors: Olivier Grisel <olivier.grisel@ensta.org> | |
# Mathieu Blondel <mathieu@mblondel.org> | |
# Lars Buitinck <L.J.Buitinck@uva.nl> | |
# Robert Layton <robertlayton@gmail.com> | |
# Jochen Wersdörfer <jochen@wersdoerfer.de> | |
# Roman Sinayev <roman.sinayev@gmail.com> | |
# | |
# License: BSD 3 clause | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Example of adaptive Lasso to produce event sparser solutions | |
Adaptive lasso consists in computing many Lasso with feature | |
reweighting. It's also known as iterated L1. | |
""" | |
# Authors: Alexandre Gramfort <firstname.lastname@inria.fr> | |
# | |
# License: BSD (3-clause) | |
import numpy as np |