Constructing Airbnb Classes with ML & Human within the Loop | by Mihajlo Grbovic | The Airbnb Tech Weblog | Mar, 2023

Airbnb Classes Weblog Collection — Half II : ML Categorization
by: Mihajlo Grbovic, Pei Xiong, Pratiksha Kadam, Ying Xiao, Sherry Chen, Weiping Peng, Shukun Yang, Chen Qian, Haowei Zhang, Sebastien Dubois, Nate Ney, James Furnary, Mark Giangreco, Nate Rosenthal, Cole Baker, Aaron Yin, Invoice Ulammandakh, Shankar Shetty, Sid Reddy, Egor Pakhomov
Airbnb 2022 release launched Classes, a browse targeted product that enables the person to hunt inspiration by shopping collections of houses revolving round a standard theme, reminiscent of Lakefront, Countryside, Golf, Desert, Nationwide Parks, Browsing, and many others. In Half I of our Classes Weblog Collection we coated the excessive stage strategy to creating Classes and showcasing them within the product. On this Half II we’ll describe the ML Categorization work in additional element.
All through the put up we use the Lakefront class as a operating instance to showcase the ML-powered class growth course of. Comparable course of was utilized for different classes, with class particular nuances. For instance, some classes rely extra on factors of pursuits, whereas others extra on structured itemizing indicators, picture knowledge, and many others.
Class Definition
Class growth begins with a product-driven class definition: “Lakefront class ought to embody listings which can be lower than 100 meters from the lake”. Whereas this will sound like a straightforward process at first, it is extremely delicate and sophisticated because it entails leveraging a number of structured and unstructured itemizing attributes, factors of curiosity (POIs), and many others. It additionally entails coaching ML fashions that mix them, since not one of the indicators captures the whole house of doable candidates on their very own.
Itemizing Understanding Alerts
As a part of numerous previous initiatives a number of groups at Airbnb frolicked on processing several types of uncooked knowledge to extract helpful data in structured type. Our objective was to leverage these indicators for cold-start rule-based class candidate era and later use them as options of the ML mannequin that would discover class candidates with increased precision:
- Host supplied itemizing data, reminiscent of property sort (e.g. citadel, houseboat), facilities & attributes (pool, hearth pit, forest view, and many others.). itemizing location, title, description, picture captions that may be scanned for key phrases (we gathered exhaustive units of key phrases in several languages per class).
- Host guidebooks, the place hosts suggest close by locations for company to go to (e.g. a Winery, Surf seaside, Golf course) which maintain areas knowledge that was helpful for extracting POIs
- Airbnb experiences, reminiscent of Browsing, {Golfing}, Scuba, and many others. Places of those actions proved helpful in figuring out itemizing candidates for sure activity-related classes.
- Visitor evaluations which is one other supply that may be scanned for key phrases. We additionally gather supplemental visitor evaluations the place company present suggestions on listings high quality, facilities and attributes.
- Wishlists that company create when shopping, reminiscent of “Golf journey 2022”, “Beachfront”, “Yosemite journey”, are sometimes associated to one of many classes, which proved helpful for candidate era.
The itemizing understanding information base was additional enriched utilizing exterior knowledge, reminiscent of Satellite tv for pc knowledge (inform us if an inventory is near an ocean, river or lake), Local weather, Geospatial knowledge, Inhabitants knowledge (tells us if itemizing is in rural, city or metropolitan space) and POI knowledge that incorporates names and areas of locations of curiosity from host guidebooks or collected by us by way of open supply datasets and additional improved, enriched and adjusted by in-house human evaluate.
Lastly, we leveraged our in-house ML fashions for added information extraction from uncooked itemizing knowledge. These included ML fashions for Detecting facilities and objects in itemizing photographs, Categorizing room sorts and outside areas in itemizing photographs,, Computing embedding similarities between listings and Assessing property aesthetics. Every of those have been helpful in several levels of class growth, candidate era, growth and high quality prediction, respectively.
Rule-based candidate era
As soon as a class is outlined, we first leverage pre-computed itemizing understanding indicators and ML mannequin outputs described within the earlier part to codify the definition with a algorithm. Our candidate era engine then applies them to provide a set of rule-based candidates and prioritizes them for human evaluate primarily based on a class confidence rating.
This confidence rating is computed primarily based on what number of indicators certified the itemizing to the class and the weights related to every rule. For instance, contemplating Lakefront class, neighborhood to a Lake POIs carried essentially the most weight, host supplied indicators on direct lake entry have been subsequent extra necessary, lakefront key phrases present in itemizing title, description, wishlists, evaluations carried much less weight, whereas lake and water detection in itemizing photographs carried the least weight. A list that may have all these attributes would have a really excessive confidence rating, whereas an inventory that may have just one would have a decrease rating.
Human evaluate course of
Candidates have been despatched for human evaluate day by day, by choosing a sure variety of listings from every class with the very best class confidence rating. Human brokers then judged if itemizing belongs to the class, select one of the best cowl picture and assessed the standard of the itemizing (Determine 3)
As human evaluations began rolling in and there have been sufficient listings with confirmed and rejected class tags it unlocked new candidate era strategies that began contributing their very own candidates:
- Proximity primarily based: leveraging distance to the confirmed itemizing in a given class, e.g. neighbor of a confirmed Lakefront itemizing it could even be Lakefront
- Embedding similarity: leveraging itemizing embeddings to search out listings which can be most much like confirmed itemizing in a given class.
- Coaching ML categorization fashions: as soon as the brokers reviewed 20% of rule-based candidates we began coaching ML fashions.
To start with, solely agent vetted listings have been despatched to manufacturing and featured on the homepage. Over time, as our candidate era strategies produced extra candidates and the suggestions loop repeated, it allowed us to coach higher and higher ML fashions with extra labeled knowledge. Lastly, in some unspecified time in the future, when ML fashions have been adequate, we began sending listings with excessive sufficient mannequin scores to manufacturing (Determine 2).
So as to scale the evaluate course of we educated ML fashions that mimic every of the three human agent duties (Determine 3). Within the following sections we’ll display the coaching and analysis course of concerned with every mannequin
ML Categorization Mannequin
ML Categorization Mannequin process was to confidently place listings in a class. These fashions have been educated utilizing Bighead (Airbnb’s ML platform) as XGBoost binary per class classification fashions. They used agent class assignments as labels and indicators described within the Itemizing Understanding part as options. Versus a rule-based setting, ML fashions allowed us to have higher management of the precision of candidates by way of mannequin rating threshold.
Though many options are shared throughout classes and one may practice a single multiclass mannequin, because of the excessive imbalance in class sizes and dominance of category-specific options we discovered it higher to coach devoted ML per class fashions. One other huge motive for this was {that a} main change to a single class, reminiscent of change in definition, massive addition of recent POIs or labels, didn’t require us to retrain, launch and measure influence on all of the classes, however as an alternative conveniently work on a single class in isolation.
Lakefront ML mannequin
Options: step one was to construct options, with crucial one being distance to Lake POI. We began with amassing Lake POIs represented as a single level and later added lake boundaries that hint the lake, which significantly improved the accuracy of having the ability to pull listings close to the boundary. Nevertheless, as proven in Determine 4, even then there have been many edge circumstances that result in errors in rule-based itemizing project.
These embody imperfect lake boundaries that may be contained in the water or outdoors on land, highways in between lake and homes, homes on cliffs, imperfect itemizing location, lacking POIs, and POIs that aren’t precise lakes, like reservoirs, ponds and many others. For that reason, it proved useful to mix POI knowledge with different itemizing indicators as ML mannequin options after which use the mannequin to proactively enhance the Lake POI database.
One modeling maneuver that proved to be helpful right here was function dropout. Since many of the options have been additionally used for producing rule-based candidates that have been graded by brokers, leading to labels which can be utilized by the ML mannequin, there was a threat of overfitting and restricted sample discovery past the principles.
To handle this downside, throughout coaching we might randomly drop some function indicators, reminiscent of distance from Lake POI, from some listings. Because of this, the mannequin didn’t over depend on the dominant POI function, which allowed listings to have a excessive ML rating even when they aren’t near any recognized Lake POI. This allowed us to search out lacking POIs and add them to our database.
Labels: Optimistic labels have been assigned to listings brokers tagged as Lakefront, Adverse labels have been assigned to listings despatched for evaluate as Lakefront candidates however rejected (Exhausting negatives from modeling perspective). We additionally sampled negatives from associated Lake Home class that enables higher distance to lake (Simpler negatives) and listings tagged in different classes (Best negatives)
Practice / Check break up: 70:30 random break up, the place we had particular dealing with of distance and embedding similarity options to not leak the label.
We educated a number of fashions utilizing completely different function subsets. We have been interested by how nicely POI knowledge can do by itself and what enhancements can further indicators present. As it may be noticed in Determine 5, the POI distance is crucial function by far. Nevertheless, when used by itself it can not strategy the ML mannequin efficiency. Particularly, the ML mannequin improves Common Precision by 23%, from 0.74 to 0.91, which confirmed our speculation.
For the reason that POI function is crucial function we invested in bettering it by including new POIs and refining present POIs. This proved to be useful because the ML mannequin utilizing improved POI options significantly outperforms the mannequin that used preliminary POI options (Determine 5).
The method of Lake POI refinement included leveraging educated ML mannequin to discover lacking or imperfect POIs by inspecting listings which have a excessive mannequin rating however are removed from present Lake POIs (Determine 6 left) and eradicating improper POIs by inspecting listings which have a low mannequin rating however are very near an present Lake POI (Determine 6 proper)
Sending assured listings to manufacturing: utilizing the take a look at set Precision-Recall curve we discovered a threshold that achieves 90% Precision. We used this threshold to decide on which candidates can go on to manufacturing and which have to be despatched for human evaluate first.
Cowl Picture ML mannequin
To hold out the second agent process with ML, we wanted to coach a unique sort of ML mannequin. One whose process can be to decide on essentially the most acceptable itemizing cowl picture given the class context. For instance, selecting an inventory picture with a lake view for the Lakefront class.
We examined a number of out of the field object detection fashions in addition to a number of in-house options educated utilizing human evaluate knowledge, i.e. (itemizing id, class, cowl picture id) tuples. We discovered that one of the best cowl picture choice accuracy was achieved by fine-tuning a Vision Transformer model (VT) utilizing our human evaluate knowledge. As soon as educated, the mannequin can rating all itemizing images and determine which one is one of the best cowl picture for a given class.
To judge the mannequin we used a maintain out dataset and examined if the agent chosen itemizing picture for a selected class was inside the prime 3 highest scoring VT mannequin images for a similar class. The common High 3 precision on all classes was 70%, which we discovered passable.
To additional take a look at the mannequin we judged if the VT chosen picture represented the class higher than the Host chosen cowl picture (Determine 7). It was discovered that the VT mannequin can choose a greater picture in 77% of the circumstances. It ought to be famous that the Host chosen cowl picture is often chosen with out taking any class into consideration, because the one which finest represents the itemizing within the search feed.
Along with choosing the right cowl picture for candidates which can be despatched to manufacturing by the ML categorization mannequin, the VT mannequin was additionally used to hurry up the human evaluate course of. By ordering the candidate itemizing images in descending order of the VT rating we have been in a position to enhance the time it takes the brokers to decide on a class and canopy picture by 18%.
Lastly, for some extremely visible classes, reminiscent of Design, Artistic areas, the VT mannequin proved to be helpful for direct candidate era.
High quality ML Mannequin
The ultimate human evaluate process is to evaluate the standard of the itemizing by choosing one of many 4 tiers: Most Inspiring, Excessive High quality, Acceptable, Low High quality. As we’ll focus on in Half III of the weblog sequence, the standard performs a job in rating of listings within the search feed.
To coach an ML mannequin that may predict high quality of an inventory we used a mix of engagement, high quality and visible indicators to create a function set and agent high quality tags to create labels. The options included evaluate scores, wishlists, picture high quality, embedding indicators and itemizing facilities and attributes, reminiscent of value, variety of company, and many others.
Given the multi-class setup with 4 high quality tiers, we experimented with completely different loss features (pairwise loss, one-vs-all, one-vs-one, multi label, and many others.). We then in contrast the ROC curves of various methods on a hold-out set and the binary one-vs-all fashions carried out one of the best.
Along with taking part in a job in search rating, the High quality ML rating additionally performed a job within the human evaluate prioritization logic. With all three ML fashions practical for all three human evaluate duties, we may now streamline the evaluate course of and ship extra candidates on to manufacturing, whereas additionally prioritizing some for human evaluate. This prioritization performs an necessary function within the system as a result of listings which can be vetted by people could rank increased within the class feed.
There have been a number of elements to think about when prioritizing listings for human evaluate, together with itemizing class confidence rating, itemizing high quality, bookability and recognition of the area. The very best technique proved to be a mix of these elements. In Determine 9 we present the highest candidates for human evaluate for a number of classes on the time of scripting this put up.
As soon as graded, these labels are then used for periodical mannequin re-training in an energetic suggestions loop that constantly improves the class accuracy and protection.
Our future work entails iterating on the three ML fashions in a number of instructions, together with producing a bigger set of labels utilizing generative imaginative and prescient fashions and probably combining them right into a single multi-task mannequin. We’re additionally exploring methods of utilizing Massive Language Fashions (LLMs) for conducting class evaluate duties
If one of these work pursuits you, try a few of our associated roles!