Multi book accounting provides the ability to maintain multiple sets of accounting records based on a single set of real time financial transaction
Author: Jobin Jose
Random forest classification algorithm in machine learning
Introduction Random forest is a supervised learning algorithm which is used for both classification as well as regression. But however, it is mainly used for classification problems. As we know that a forest is made up of trees and more trees means more robust forest. Similarly, random forest algorithm creates decision trees on data samples… Continue reading Random forest classification algorithm in machine learning
DECISION TREE CLASSIFICATION ALGORITHM IN MACHINE LEARNING
INDRODUCTION Decision Tree is a Supervised learning technique that can be used for both classification and Regression problems, but mostly it is preferred for solving Classification problems. It is a tree-structured classifier, where internal nodes represent the features of a dataset, branches represent the decision rules and each leaf node represents the outcome. Why use… Continue reading DECISION TREE CLASSIFICATION ALGORITHM IN MACHINE LEARNING
Implementing the Naive-Bayes Machine learning Model
It is a classification technique based on Bayes’ theorem with an assumption of independence between predictors. A Naive Bayes classifier assumes that the presence of a particular feature in a class is unrelated to the presence of any other feature. Naive Bayesian model is easy to build and particularly useful for very large data sets.… Continue reading Implementing the Naive-Bayes Machine learning Model
Cron job in django
SET UP installation: using the following command pip install django-crontab add it to installed apps in django settings.py: INSTALLED_APPS = ( ‘django_crontab’, … ) now create a new method that should be executed by cron every 5 minutes, f.e. in myapp/cron.py: now add this to your settings.py: CRONJOBS = (‘*/5 * * * *’, ‘myapp.cron.cron’)
Adding custom data to advanced PDF templates
Task: General We can add custom data in advanced PDF templates using the render function. When rendering PDFs using suitelet we can load the Advanced PDF template and inject custom add that should be added to the template. For that, we need to prepare the custom data in an object or JSON format. After that,… Continue reading Adding custom data to advanced PDF templates
Daily Currency Exchange Rates – Manual Update
Daily Currency Exchange Rates
Attach web leads to existing customer in Netsuite
Attach web leads to existing customer in Netsuite
Python code to insert CSV data fields to a local Database table using Django
We can use this code to insert the data in a CSV file to a local database table. Just change the table name, database name, and data fields with your respective field name and others.
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