View test.ghx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
<Archive name="Root"> | |
<!--Grasshopper archive--> | |
<!--Grasshopper and GH_IO.dll are copyrighted by Robert McNeel & Associates--> | |
<!--Archive generated by GH_IO.dll file utility library {0.2.0002}--> | |
<items count="1"> | |
<item name="ArchiveVersion" type_name="gh_version" type_code="80"> | |
<Major>0</Major> | |
<Minor>2</Minor> | |
<Revision>2</Revision> |
View gist:54ff08c80a7e505b6e34fa81b196d894
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asdasdasdasd |
View NER_dataviz.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import spacy | |
from collections import Counter, defaultdict | |
import srsly | |
from datetime import datetime | |
import pandas as pd | |
counts = defaultdict(Counter) | |
nlp = spacy.load(SPACY_MODEL) | |
data = srsly.read_jsonl(DATA_FILE) |