Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Predict Biopolymer Breakdown Over 12 Months

EasyMachine Learning00:00
Practice interviewer
In session
5 left
00:00

Your question is Predict Biopolymer Breakdown Over 12 Months. Take a moment with it on the right.

Talk me through your thinking if you like. When you're confident, submit your answer and I'll grade it like a real screen (7/10 or better passes).

You need to log in / sign up to chat or submit.

Problem

Business Context

EcoMat Labs is developing a new biodegradable polymer for food packaging and wants to predict its 12-month breakdown rate before running long, expensive field studies. You need to build a regression model that estimates the percentage of mass lost after 12 months under different material formulations and environmental conditions.

Dataset

You are given historical lab and field trial data from prior biodegradable polymer experiments, including formulation chemistry, processing settings, and exposure conditions.

Feature GroupCountExamples
Polymer composition12starch_pct, PLA_pct, PHA_pct, plasticizer_pct, additive_type
Material properties10tensile_strength, crystallinity, density, molecular_weight, thickness_mm
Processing conditions6extrusion_temp_c, cooling_rate, curing_time_hr, mold_pressure
Environmental exposure11avg_temp_c, humidity_pct, uv_index, soil_ph, rainfall_mm, microbial_activity_score
Trial metadata5site_region, lab_vs_field, sample_shape, coating_applied, batch_id
  • Size: 18,500 polymer trial records, 44 features
  • Target: Continuous — percentage mass loss after 12 months
  • Missing data: ~8% missing in environmental sensor readings, ~3% missing in lab-measured material properties
  • Target distribution: Continuous, moderately right-skewed, with most samples between 15% and 70% mass loss

Success Criteria

A good solution should achieve MAE below 6 percentage points on a held-out test set and provide enough interpretability for materials scientists to understand which formulation and environmental variables drive degradation.

Constraints

  • Predictions will be used in R&D screening, so interpretability matters
  • Inference is batch-only and can run offline weekly
  • The model should generalize to new polymer formulations, not just memorize batch history
  • Avoid leakage from repeated measurements of the same formulation family across splits

Deliverables

  1. Build a regression model to predict 12-month breakdown rate
  2. Define what data is required and justify why each feature group matters
  3. Explain preprocessing, feature engineering, and split strategy
  4. Compare at least one baseline model with a stronger nonlinear model
  5. Report evaluation metrics and discuss production tradeoffs