Artifician is an event driven framework developed to simplify the process of preparation of the dataset for Artificial Intelligence models.
Project description
Artifician
Artifician is an event driven library developed to simplify and speed up the process of preparation of the datasets for Artificial Intelligence models.
Getting Started
Pre-requisites
- python v3.6 or later
Installation
Binary installers for the latest released version are available at the Python Package Index (PyPI) and on Conda
# or PyPI
pip install artifician
# conda
conda install -c plato_solutions artifician
Documentation
Please visit Aritfician Docs
Usage
from artifician.dataset import *
from artifician.feature_definition import *
from artifician.processors.normalizer import *
def extract_domain_name(sample):
"""function for extracting the path from the given URL"""
domain_name = sample.split("//")[-1].split('/')[0]
return domain_name
input_data = ['https://www.google.com/', 'https://www.youtube.com/']
dataset = Dataset() # initializing dataset object
url_domain = FeatureDefinition(extract_domain_name, dataset) # initializing feature_definition and passing extractor function name as a parameter and subscribing it to dataset
normalizer = Normalizer(PropertiesNormalizer(), url_domain delimiter = {'delimiter': ["."]}) # Initializing normalizer (processor) and passing properties normalizer as a parameter and subscribing it to url_domain
""" Now we are all set to go, all we have to do is call add_samples method on the dataset object and pass the input data
after calling the add_samples, url_domain will start its execution and extract the data using extract_domain_name function, as soon url_domain
feature is processed normalizer will start it execution and furthur is will process the data extracted by url_domain. The processed data is then
passed back to the dataset. Following diagram will make it more clear for you. """
prepared_data = dataset.add_samples(input_data)
print(prepared_data)
Output
0 | 1 | |
---|---|---|
0 | https://www.google.com/ | [(www, 0), (google, 1), (com, 2)] |
1 | https://www.youtube.com/ | [(www, 0), (youtube, 1), (com, 2)] |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
artifician-0.6.4.tar.gz
(312.7 kB
view details)
Built Distribution
File details
Details for the file artifician-0.6.4.tar.gz
.
File metadata
- Download URL: artifician-0.6.4.tar.gz
- Upload date:
- Size: 312.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2647ebea2b877cb6c637d2d0f34a6c97fd2e427a015566e00b0a64b77155775d |
|
MD5 | eceb2a572c3d9146687b714853b62666 |
|
BLAKE2b-256 | 5de43dc9169d5af93995e6c922acdef0906813e86d64989f97ab4e37cf77389c |
File details
Details for the file artifician-0.6.4-py3-none-any.whl
.
File metadata
- Download URL: artifician-0.6.4-py3-none-any.whl
- Upload date:
- Size: 34.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ea37cbf5d61af9649cc3352198424ea259c1a0ac4e17ab9f3a9ea643ef18967 |
|
MD5 | 8602abec912370c40f8459d7089dac3d |
|
BLAKE2b-256 | 0adc6e91208e5425463e936db1d7f42a09ed7cb98facb54be459f1dbd47d45c7 |