Hello everybody,
today I want to write a few words about operator in which was presented in SQL for long ago, but weren't available in Acumatica BQL. But time goes on and now you can use it. For example like this:
Object[] values = new String[] { "BXW000004", "B...
Hello everybody,
today I want to describe three elements of Python: map, zip, lambda and *.
Zip and *
The first step that I want to describe is zip and * usage. Take a look at the following code:
a = [5, 6]
b = [7, 8]
c = zip(a,b)
print(*c)
How do you thi...
Hello everybody,
today I want to share one interesting piece of information about horizontal scaling of Acumatica. I mean as usually for majority of people it is clear that Acumatica can work on one machine when DB, IIS and Acumatica lives on one machine.
One more variant of scaling can be...
Hello everybody,
today I continue writing notes about measuring quality of learning. You can read my previuos artcile 1 and article 2 about measures of quality of learning. If to summarize two of those articles we have the following:
accuracy is good measure, but if samplings is unbala...
Hello everybody,
today I want to describe interesting feature of Acumatica related to back ups of database. Imagine the following: you've restored database from back up at your dev environment. And let's say you have automation schedule that every hour you should send to each contact some emails....
Hello everybody,
today I want to make a short notice on how to change default time zone in Acumatica.
In my case such need appeard when it was needed to modify default time zone of Acumatica that I've restored from database backup. In order to do this you'll need to go to screen that is nam...
Hello everybody,
today I want to describe one behaviour of Acumatica processing screen.
So, once upon a time I created processing screen. Purpose of that screen was simple: take data from some external source and insert it into Acumatica.
As that processing screen worked fine, it was...
Here in Ukraine there is a joke: nothing spoils health of Ukrainian more then richness and welfare of his neighbor.
Also I often hear statement that helping others can transform your life to better. I've spent some time on finding the ways to help others. But helping not via giving money....
Hello everybody,
today I want to add few more notes about measuring of quality of learning, but today about tasks of classification.
So, one of the ways can be measuring number of wrong answers. For example with usage of the following formula:
Imagine that your classification set has three...
Hello everybody,
Today I want to describe some ideas about measure quality of learning.
First of all I want to point areas where you can apply those measurements. It can be in three areas:
For setting funtional during learning
For picking hyperparameters
For evaluation of ready made model...