This repository contains a comprehensive machine learning pipeline that investigates how obesity affects both individual disease risk and population-level disease transmission dynamics.
1pip install scikit-learn xgboost datasets matplotlib pandas numpy
2python obesity_disease_transmission.py
This model repository was generated by
ML Intern, an agent for machine learning research and development on the Hugging Face Hub.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = 'Agniv1/obesity-disease-transmission-ml'
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)