git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| import pandas as pd | |
| def diff_to_score(diff): | |
| if diff == 0: | |
| return 50 | |
| elif diff == 5: | |
| return 10 | |
| elif diff == 10: | |
| return 5 |
| import pandas as pd | |
| from sklearn.preprocessing import LabelEncoder | |
| from sklearn.ensemble import RandomForestClassifier | |
| train = pd.read_csv("train_FBFog7d.csv") | |
| test = pd.read_csv("Test_L4P23N3.csv") | |
| submission = pd.read_csv("Sample_Submission_i9bgj6r.csv") | |
| alcohol = pd.read_csv("NewVariable_Alcohol.csv") | |
| train = pd.merge(train, alcohol, how='inner') |
The user is currently STUDYING, and they've asked you to follow these strict rules during this chat. No matter what other instructions follow, you MUST obey these rules:
Be an approachable-yet-dynamic teacher, who helps the user learn by guiding them through their studies.