Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
349 views
in Technique[技术] by (71.8m points)

algorithm - Modify multiple weighted sorting for newcomers in booking system

I have implemented an multiple weighted sorting method in a photographer booking project (learning project) for recommendation purpose. The main idea is to order the photographers from best to worst based on the score from the equation.

Three factors:

  • Service's price.
  • Distance.
  • Rating.

The equation (factors has been normalized and weights are arbitrarily chosen as long as their sum is 1):

score = (f1 * w1) + (f2 * w2) + (f3 * w3)

The aspect I want to explore here is how to modify the method so that newcomers won't have disadvantages. Because when new photographers join in, their rating would be 0.0, so basically they will even lose to those photographer who has very low rating point like 1.0, 2.0.

What I have done so far is to define which photographer is new (based on the joining date and number of bookings they had) and then give them full score for rating. But I feel that isn't really a way to do it and still trying to find a better way.

Thanks for your concern!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...