tree: b846df380894771896ee882669b973673c054c3c [path history] [tgz]
  1. proto/
  2. assist_ranker_service.h
  3. assist_ranker_service_impl.cc
  4. assist_ranker_service_impl.h
  5. base_predictor.cc
  6. base_predictor.h
  7. base_predictor_unittest.cc
  8. binary_classifier_predictor.cc
  9. binary_classifier_predictor.h
  10. binary_classifier_predictor_unittest.cc
  11. BUILD.gn
  12. classifier_predictor.cc
  13. classifier_predictor.h
  14. classifier_predictor_unittest.cc
  15. DEPS
  16. example_preprocessing.cc
  17. example_preprocessing.h
  18. example_preprocessing_unittest.cc
  19. fake_ranker_model_loader.cc
  20. fake_ranker_model_loader.h
  21. generic_logistic_regression_inference.cc
  22. generic_logistic_regression_inference.h
  23. generic_logistic_regression_inference_unittest.cc
  24. nn_classifier.cc
  25. nn_classifier.h
  26. nn_classifier_test_util.cc
  27. nn_classifier_test_util.h
  28. nn_classifier_unittest.cc
  29. OWNERS
  30. predictor_config.cc
  31. predictor_config.h
  32. predictor_config_definitions.cc
  33. predictor_config_definitions.h
  34. print_example_preprocessor_config.py
  35. quantized_nn_classifier.cc
  36. quantized_nn_classifier.h
  37. quantized_nn_classifier_unittest.cc
  38. ranker_example_util.cc
  39. ranker_example_util.h
  40. ranker_example_util_unittest.cc
  41. ranker_model.cc
  42. ranker_model.h
  43. ranker_model_loader.h
  44. ranker_model_loader_impl.cc
  45. ranker_model_loader_impl.h
  46. ranker_model_loader_impl_unittest.cc
  47. ranker_model_unittest.cc
  48. ranker_url_fetcher.cc
  49. ranker_url_fetcher.h
  50. README.md
components/assist_ranker/README.md

Assist Ranker

Introduction

Assist Ranker is design to make Chrome smarter by providing client-side machine learning (ML) inference in Chrome. It is designed to be a generic infrastructure that supports ML needs for all Chrome feature teams on all platforms.

Assist Ranker utilizes UKM logging to log per feature-label events. A ML model will be trained in the Cloud based on these logs; and then Assist Ranker will download and inference with the model.

It currently only supports Logistic Regression and Multilayer Neural Networks.

Assist Ranker was experiment on ContextualSearch; but it is not used in any production projects.

How to use it

Please contact the owners before you use it.