I am working on portal where I have PO
with details of ordered items
and Vendor
we are going to deal with.
I am trying to make a item based Vendor recommendation engine
for the next quotation so that buyer
can have idea before dealing.
Right now I have Vendor
, Item
and few Parameters
to evaluate as mentioned below,
How much quantity he sent on every order? For example, ordered 100 but delivered only 80
How is the quality of item? Any damage? For example, 20 damage from ordered 100.
What is the actual delivery date based on expected delivery date? For example, expecting 26th May but receiving item on 28th May.
and few others will be added in future.
And all the parameters have some sort of importance and result comes out of 100%.
I came to know about recommendation feature of Apache Mahout
.
https://mahout.apache.org/users/recommender/recommender-documentation.html
I have few questions mentioned below :
Apache Mahout
provides recommendation on multiple parameter?Apache Mahout
right choice for this kind of situation? Any other option?In my case, formula and complexity is very high.
So, I don't find Mahout as right choice. Then, I have decided to use the PostgreSQL database and application is running fine without any problem on production.