Skip to content

Instantly share code, notes, and snippets.

View aravindkarnam's full-sized avatar
🛠️
Building Crawl4AI

Aravind aravindkarnam

🛠️
Building Crawl4AI
View GitHub Profile
@aravindkarnam
aravindkarnam / main.py
Created July 27, 2018 22:37 — forked from khanhnamle1994/main.py
FCN - Full Code
#--------------------------
# USER-SPECIFIED DATA
#--------------------------
# Tune these parameters
num_classes = 2
image_shape = (160, 576)
EPOCHS = 40
BATCH_SIZE = 16
@aravindkarnam
aravindkarnam / FunctionBotRun.csx
Created July 13, 2018 21:17 — forked from ahelland/FunctionBotRun.csx
An Azure Function implementing the Microsoft Bot Framework to return random quotes
#r "Newtonsoft.Json"
#r "Microsoft.Rest.ClientRuntime.dll"
#r "Microsoft.Bot.Connector.Utilities.dll"
#r "Microsoft.Bot.Connector.dll"
using System.Net;
using Microsoft.Bot.Connector;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
log.Verbose($"C# HTTP trigger function processed a request. RequestUri={req.RequestUri}");