Skip to content

Instantly share code, notes, and snippets.

View elbruno's full-sized avatar
💭
@Home rocking some AI projects

El Bruno elbruno

💭
@Home rocking some AI projects
View GitHub Profile
@jmhdez
jmhdez / MachineLearning.cs
Last active August 29, 2015 14:17
Ejemplo de uso de numl para generar árboles de decisión mediante aprendizaje automático sobre un corpus de Princesas Disney
// Require instalar el paquete numl desde NuGet
using System;
using numl;
using numl.Model;
using numl.Supervised.DecisionTree;
namespace MachineLearning
{
public enum HairColor
@marcominerva
marcominerva / Dockerfile
Created October 16, 2018 13:54
Modified Dockerfile and app/requirements.txt files to make Custom Vision Linux Container work on Raspberry Pi 2/3
FROM python:3.5
ADD app /app
RUN pip install --upgrade pip
RUN pip install https://github.com/lhelontra/tensorflow-on-arm/releases/download/v1.5.0/tensorflow-1.5.0-cp35-none-linux_armv7l.whl
RUN pip install -r /app/requirements.txt
# Expose the port
EXPOSE 80
@noellelacharite
noellelacharite / ChipOrDale.md
Created October 25, 2018 22:03
How I created a Custom Vision Model with Object Detection

Getting Started with Azure Computer Vision and Object Detection

Recently, I wanted to play around with Azure Computer Vision. More specifically I wanted to play with object detection. I had a conference coming up in Orlando and I thought it would be cool to have a local reference in one of my demos.

So I looked up computer vision and found out that I could play with the cognitive service right within the browser. You can check that out here. After seeing the metadata available from computer vision, I realized that I needed to custom train this model if I wanted it to be able to answer my burning question.

How can I tell the difference between Chip and Dale?

@elbruno
elbruno / rustthreadnotfinished.rs
Created January 9, 2023 20:09
rustthreadnotfinished.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demos working with threads in Rust
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustgenericsagenamesample.rs
Created January 12, 2023 18:34
rustgenericsagenamesample.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demos working with generics in Rust
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustgenericlogfunctionsample.rs
Created January 14, 2023 14:36
rustgenericlogfunctionsample.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demos working with generics in Rust
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustStringsImplicitNamedArguments.rs
Created January 18, 2023 15:05
rustStringsImplicitNamedArguments.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Working with strings with implicit named arguments
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustarraysandprintlnmacro.rs
Created January 19, 2023 15:21
rustarraysandprintlnmacro.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demo working with arrays and println! macro
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / ruststringstructsandinterpolation.rs
Created January 18, 2023 15:16
ruststringstructsandinterpolation.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Working with strings with strucs and named arguments
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustgetmyip.rs
Created February 1, 2023 15:46
rustgetmyip.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 Feb
Change Log :
- Demo learning with HTTP GET and POST request with Rust
- Source Demo: https://actix.rs/docs/getting-started
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy