Skip to content

Instantly share code, notes, and snippets.

View luisquintanilla's full-sized avatar
🛸
Astral Plane

Luis Quintanilla luisquintanilla

🛸
Astral Plane
View GitHub Profile

Set up dev environment

  1. Do something
  2. Do the other thing
  3. Do more
@luisquintanilla
luisquintanilla / MLNET-ASPNETInteractive.ipynb
Created April 23, 2021 02:57
ASP.NET Interactive Extension + ML.NET
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@luisquintanilla
luisquintanilla / build-weather-forecast-mlnet-model.ipynb
Created April 28, 2021 00:00
Time Series Forecast Model using ML .NET & Notebooks
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
</head>
<body>
@luisquintanilla
luisquintanilla / script.fsx
Created December 21, 2021 19:06
Style Transfer: Image to Mosaic F#, ML.NET, ONNX Sample
#r "nuget:Microsoft.ML"
#r "nuget:Microsoft.ML.OnnxRuntime"
#r "nuget:Microsoft.ML.OnnxTransformer"
#r "nuget:Microsoft.ML.ImageAnalytics"
#r "nuget:System.Drawing.Common"
open System.IO
open System.Drawing
open Microsoft.ML
open Microsoft.ML.Data
@luisquintanilla
luisquintanilla / azuredeploy.json
Last active April 25, 2022 23:34
Custom Azure Storage Static Website ARM Template Deployment
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.4.1272.37030",
"templateHash": "6614049954911606618"
}
},
@luisquintanilla
luisquintanilla / LoadWikiDetox.ipynb
Created June 10, 2022 17:49
.NET DataFrame Load Wiki Detox Dataset Error
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@luisquintanilla
luisquintanilla / script.fsx
Created July 8, 2022 19:46
F# AutoML 2.0 Taxi Fare Experiment
// Get packages
#r "nuget:Microsoft.Data.Analysis,0.20.0-preview.22313.1"
#r "nuget:Microsoft.ML.AutoML,0.20.0-preview.22313.1"
// Import packages
open System.Text.Json;
open Microsoft.Data.Analysis;
open Microsoft.ML;
open Microsoft.ML.AutoML;
open Microsoft.ML.Data;
@luisquintanilla
luisquintanilla / WordCount.ipynb
Created August 24, 2022 17:04
Word Count ML.NET
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@luisquintanilla
luisquintanilla / LargeDataset.ipynb
Last active August 26, 2022 20:15
AutoML on BBD Large Dataset
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.