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 pandas as pd | |
import nltk | |
def count_words(text, words): | |
count = -1 | |
try: | |
tokens = nltk.word_tokenize(text) | |
count = 0 | |
for t in tokens: | |
norm_t = t.lower() |
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
filter @message like 'Mesh reconstruction completed' | |
| parse @message /Mesh reconstruction completed: (?<vertices>\d+)/ | |
| sort vertices desc | |
| limit 500 |
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
docker exec -ti 5795d4b2fbee bash |