Quick Start
Let’s break down the simple code example to fully understand the working of the library.
First of all, we define the extractor function to extract feature value from the sample data. Extractor function could be anything which extracts information from given raw data. As in this case extractor extracts the domain name from the url.
def extract_domain_name(sample):
domain_name = sample.split("//")[-1].split('/')[0]
return domain_name
Next, we simply initialize the Dataset , FeatureDefinition and Processor object which is the normalizer in this case. We need to pass the extractor function as the parameter while initializing the FeatureDefinition object. Normalizer is just one of the Processor which helps in processing the extracted feature data.
dataset = Dataset()
url_domain = FeatureDefinition(extract_domain_name)
normalizer = Normalizer(PropertiesNormalizer(), delimiter = {'delimiter': ["."]})
subscribe method sets up the connection between observer and the publisher. normalizer.subscribe(url_domain) means normalizer is listening for the events in the url_domain feature. url_domain.subscribe(dataset) means url_domain is listening for the events in the dataset.
normalizer.subscribe(url_domain)
url_domain.subscribe(dataset)
That’s all now we simply define the sample data from which dataset will be prepared, lastly call the dataset.add_samples method and pass the sample data.
sample_data = ['https://www.google.com/', 'https://www.youtube.com/']
prepared_data = dataset.add_samples(sample_data)
print(prepared_data)
Now you might be wondering how did the url_domain and the normalizer got executed as we only called the add_samples method on dataset. Well, when url_domain(FeatureDefinition) subscribes to dataset (url_domain.subscribe(dataset)) what happens behind the scenes is url_domain starts listening to the add_samples method of the dataset, now whenever add_samples method is called url_domain will notice it and it will trigger process method of its own. Similarly, as normalizer(Processor) subscribes to url_domain it starts listening to process method of the url_domain. and whenever process method of the FeatureDefinition is called Processor executes it own process method.
Text | 0 | 1 |
---|---|---|
0 | [(www, 0), (google, 1), (com, 2)] | |
0 | [(www, 0), (youtube, 1), (com, 2)] |
Last modified 9mo ago