Skip to content

Instantly share code, notes, and snippets.

View AlbertoCasasOrtiz's full-sized avatar
🏠
Working from home

Alberto AlbertoCasasOrtiz

🏠
Working from home
View GitHub Profile
@cbecker
cbecker / main.cpp
Last active February 7, 2024 03:04
lightGBM C++ example
#include <LightGBM/config.h>
#include <LightGBM/dataset_loader.h>
#include <LightGBM/boosting.h>
#include <LightGBM/objective_function.h>
#include <LightGBM/metric.h>
#include <LightGBM/utils/common.h>
#include <iostream>
#include <random>
#include <algorithm>
@stephenway
stephenway / git-change-author-commit.sh
Created December 19, 2015 04:02
Change last commit author
git commit --amend --author "Stephen Way <way.stephen@gmail.com>" --no-edit && \
git rebase --continue
...
git push origin master --force