A normalizing method in Python JIRA CODE: JJ-134 Stemming:The idea of stemming is a sort of normalizing method. Many variations of words carry the same meaning, other than when tense is involved.There are mainly two errors in stemming – Over stemming and Under stemming. Over stemming occur when two words are stemmed to same root… Continue reading Stemming: Implementation using Python code
Category: Products
All articles / code related to the products we develop in this company
Lemmatization: implementation using Python
For Reducing morphological variations and grouping words to one common root JIRA CODE – JJ-134 It is the process of grouping together the different inflected forms of a word so they can be analysed as a single item. Lemmatization is similar to stemming but it brings context to the words. So it links words with… Continue reading Lemmatization: implementation using Python
K-Nearest Neighbor Algorithm(K-NN Algorithm) in Python
Implementation code of K-NN Algorithm using Python language JIRA CODE – JJ – 134 This algorithm is used to solve the classification model problems. K-nearest neighbor or K-NN algorithm basically creates an imaginary boundary to classify the data. When new data points come in, the algorithm will try to predict that to the nearest of… Continue reading K-Nearest Neighbor Algorithm(K-NN Algorithm) in Python
Naive Bayes Algorithm in Python
Bayes’ Theorem provides a way that we can calculate the probability of a piece of data belonging to a given class. Bayes’ Theorem is stated as: P(class|data) = (P(data|class) * P(class)) / P(data) Where P(class|data) is the probability of class given the provided data. Naive Bayes is a classification algorithm for binary (two-class) and multiclass… Continue reading Naive Bayes Algorithm in Python
Web scraping: implementation using Python
Web scraping is used to collect large information from websites.JIRA CODE – JJ – 134 Web scraping is an automated method used to extract large amounts of data from websites. The data on the websites are unstructured. Web scraping helps collect these unstructured data and store it in a structured form. Steps of Web Scrapping:… Continue reading Web scraping: implementation using Python
PLP Image Resize
Jira Code: WF-3: Increase picture size on product category pages Increase the picture size of product photos so they are larger Extended the facet item child view, Facet Browse view Override the grid, table, list view templates
PLP Image Hover: Show Secondary Image Extenstion
Jira Code: Wf-7: Add alternative photo to pictures on product category so a second picture shows when user scrolls over picture Create an alternative photo on product list page to show when the mouse hovers over the image. Create a custom field in the item record and use that field for displaying as the hover… Continue reading PLP Image Hover: Show Secondary Image Extenstion
SharePoint in Office 365
Microsoft SharePoint is a cloud-based service that helps organizations share and manage content, knowledge, and applications to: Empower teamwork Quickly find information Seamlessly collaborate across the organization We can create sites in sharepoint and can communicate with the team. It is using a drag and drop mechanism instead of coding to create the site.There are… Continue reading SharePoint in Office 365
Bundle Themes And Extensions as SuiteApps
This article briefs about how to bundle themes and extensions as suite apps.
Paybooks Integration
The task focuses on the requirements in integrating Paybooks with NetSuite.