This file contains hidden or 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
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "thomas.edison@example.com", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
This file contains hidden or 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
from nltk.tokenize import word_tokenize | |
from nltk.probability import FreqDist | |
#https://indiaai.gov.in/article/text-mining-in-python-steps-and-examples | |
file = open("keywords.csv",'r+') | |
text = file.read() | |
file.close() |
This file contains hidden or 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 sys | |
import mmap | |
import re | |
# Speakers tracking variables | |
SPEAKER_REGEX = '[0-9][0-9]:[0-9][0-9]:[0-9][0-9] Speaker [0-9]+' | |
NO_ID_REGEX = '[0-9][0-9]:[0-9][0-9]:[0-9][0-9] \n' | |
speaker_index = 0 | |
# Control variables |
This file contains hidden or 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
// INIT | |
File csv = new File(FILE) | |
Writer writer = new FileWriter(csv,true) | |
BufferedReader br = new BufferedReader(new FileReader(csv)) | |
//Conv Method | |
toDegrees = {rad -> Math.toDegrees(rad)} | |
//IMC Vars |
This file contains hidden or 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
/* | |
* Copyright (c) 2004-2017 Universidade do Porto - Faculdade de Engenharia | |
* Laboratório de Sistemas e Tecnologia Subaquática (LSTS) | |
* All rights reserved. | |
* Rua Dr. Roberto Frias s/n, sala I203, 4200-465 Porto, Portugal | |
* | |
* This file is part of Neptus, Command and Control Framework. | |
* | |
* Commercial Licence Usage | |
* Licencees holding valid commercial Neptus licences may use this file |