Skip to content

Instantly share code, notes, and snippets.

View TheLady's full-sized avatar
🎯
Focusing

Candida/Di TheLady

🎯
Focusing
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@TheLady
TheLady / package.json
Created July 4, 2019 01:28 — forked from jthomas/package.json
Using TensorFlow.js with MobileNet models for image classification on Node.js
{
"name": "tf-js",
"version": "1.0.0",
"main": "script.js",
"license": "MIT",
"dependencies": {
"@tensorflow-models/mobilenet": "^0.2.2",
"@tensorflow/tfjs": "^0.12.3",
"@tensorflow/tfjs-node": "^0.1.9",
"jpeg-js": "^0.3.4"
@TheLady
TheLady / flaschen_workshop.md
Created June 21, 2016 03:16 — forked from scottyallen/flaschen_workshop.md
Flaschen Taschen in Python Workshop
@TheLady
TheLady / bootstrap.sh
Created October 30, 2015 05:05 — forked from keo/bootstrap.sh
Setup encrypted partition for Docker containers
#!/bin/sh
# Setup encrypted disk image
# For Ubuntu 14.04 LTS
CRYPTFS_ROOT=/cryptfs
apt-get update
apt-get -y upgrade
apt-get -y install cryptsetup
@TheLady
TheLady / lol.csv
Last active August 29, 2015 14:17 — forked from jamesonjlee/lol.csv
Date Beds Unit SqFt Price
2015-03-18T23:34:06.391084 1 1707 690 3544
2015-03-18T23:34:06.391084 1 1604 750 3565
2015-03-18T23:34:06.391084 1 1415 716 3450
2015-03-18T23:34:06.391084 1 603 714 3355
2015-03-18T23:34:06.391084 1 408 716 3162
2015-03-18T23:34:06.391084 1 513 716 3417
2015-03-18T23:34:06.391084 1 403 725 3255
2015-03-18T23:34:06.391084 1 1711 1004 4108
2015-03-18T23:34:06.391084 2 1704 855 4770
Candidates for next platforms after PCs, phones, and tablets:
Virtual reality
Internet of things
Wearable computers
Cryptocurrencies / blockchain
Self-driving cars
Drones
Brain-computer interfaces
3d printing
Augmented reality
#-*- coding: utf-8 -*-
import re
import nltk
from nltk.tokenize import RegexpTokenizer
from nltk import bigrams, trigrams
import math
stopwords = nltk.corpus.stopwords.words('portuguese')