Create Windows and Linux installers for conda-based projects
You can create a user-friendly installers for Windows and Linux using a dedicated conda package called conda-bundle. Warning: conda-bundle is still actively modified and should be considered as a Work in Progress. Features will change in the future and things will break. But hopefully if your installer is correctly generated…
2020 March machine learning news
For this month, here is what I found interesting EfficientNet This paper talk about scaling up networks. Once you have a small model working fine, you usually wants to scale it up to have better performances. You can scale up the width (wider layers), the depth (more layers) or the…
Signing your git contributions/emails/etc…. with personal SSL certificates [macOSX oriented]
This is a simple checklist on how to ask for a personal SSL certificate, which will allow to sign your git contribs or your emails. The procedure is described for macOSX platform, but can be easily adapted to other platforms. First of all, you need a personal SSL certificate. If…
2020 February machine learning news
Here are this month articles: Hydra A fresh look at configuration for machine learning projects Hydra is a recently released open-source Python framework developed at Facebook AI that simplifies the development of research and other complex applications. Great when you want to launch the same code with different options: python…
How-to publish a DTK module / finish a git-flow feature
dtk coding style
Introduction This document describes the recommended coding style for dtk. This style is not mandatory, but to have consistent formatting of the source code files it is recommended to make use of it. dtk coding style follows the Qt coding style, with few differences desribed here after. Rules Indentation 4…
Create a GitLab Page for a given project
C’est une petite note sur comment créer une page GitLab Pages pour un projet donné. Créez un fichier .gitlab-ci.yml comme indiqué ici : https://gitlab.inria.fr/help/user/project/pages/getting_started/new_or_existing_website.md (partez de HTML si vous n’avez pas à compiler un framework, ou choisissez le framework que vous utilisez sinon, par exemple vous pouvez partir d’un fichier…