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
2024-05-16T20:26:25.614485674Z [38;5;6mghost [38;5;5m20:26:25.61 [0m[38;5;2mINFO [0m ==> | |
2024-05-16T20:26:25.616222463Z [38;5;6mghost [38;5;5m20:26:25.61 [0m[38;5;2mINFO [0m ==> [1mWelcome to the Bitnami ghost container[0m | |
2024-05-16T20:26:25.619244003Z [38;5;6mghost [38;5;5m20:26:25.61 [0m[38;5;2mINFO [0m ==> Subscribe to project updates by watching [1mhttps://github.com/bitnami/containers[0m | |
2024-05-16T20:26:25.622782931Z [38;5;6mghost [38;5;5m20:26:25.62 [0m[38;5;2mINFO [0m ==> Submit issues and feature requests at [1mhttps://github.com/bitnami/containers/issues[0m | |
2024-05-16T20:26:25.625825039Z [38;5;6mghost [38;5;5m20:26:25.62 [0m[38;5;2mINFO [0m ==> Upgrade to Tanzu Application Catalog for production environments to access custom-configured and pre-packaged software components. Gain enhanced features, including Software Bill of Materials (SBOM), CVE scan result reports, and VEX documents. To learn more, visit [1mhttps://bitnami.com/enterprise[0m | |
2024-05-16T20:26:25.6344 |
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> |
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 |
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) |