Skip to content

Instantly share code, notes, and snippets.

@johnleung8888
Created July 25, 2021 08:42
Show Gist options
  • Save johnleung8888/35f794861b2df4b9556b529321887cd6 to your computer and use it in GitHub Desktop.
Save johnleung8888/35f794861b2df4b9556b529321887cd6 to your computer and use it in GitHub Desktop.
intro_to_fairness.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "intro_to_fairness.ipynb",
"provenance": [],
"collapsed_sections": [
"J8daw3YOIAXH",
"xFxZOg55lWJE",
"l-K-xqksm-X3",
"TXkkHYyJ98_k",
"91wjnZFpPWw-",
"KlF-lQ8yQ69b",
"qZ-9vJgSEpHj",
"7YVH8hYfSjer",
"2lx4JuLdi7jw",
"TF3B5h3c-7Fb"
],
"include_colab_link": true
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/johnleung8888/35f794861b2df4b9556b529321887cd6/intro_to_fairness.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"metadata": {
"cellView": "form",
"id": "y5T8lbpLd1sr"
},
"source": [
"#@title Copyright 2020 Google LLC. Double-click here for license information.\n",
"# Licensed under the Apache License, Version 2.0 (the \"License\");\n",
"# you may not use this file except in compliance with the License.\n",
"# You may obtain a copy of the License at\n",
"#\n",
"# https://www.apache.org/licenses/LICENSE-2.0\n",
"#\n",
"# Unless required by applicable law or agreed to in writing, software\n",
"# distributed under the License is distributed on an \"AS IS\" BASIS,\n",
"# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
"# See the License for the specific language governing permissions and\n",
"# limitations under the License."
],
"execution_count": 1,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "84x4Fxc5lzFv"
},
"source": [
"# Introduction to Fairness in ML\n",
"***"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "J8daw3YOIAXH"
},
"source": [
"## Disclaimer\n",
"This exercise explores just a small subset of ideas and techniques relevant to fairness in machine learning; it is not the whole story!"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "xFxZOg55lWJE"
},
"source": [
"## Learning Objectives\n",
"\n",
"* Increase awareness of different types of biases that can manifest in model data.\n",
"* Explore feature data to proactively identify potential sources of bias before training a model.\n",
"* Evaluate model performace by subgroup rather than in aggregate."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "l-K-xqksm-X3"
},
"source": [
"## Overview\n",
"\n",
"In this exercise, you'll explore datasets and evaluate classifiers with *fairness* in mind, noting the ways undesirable biases can creep into machine learning (ML).\n",
"\n",
"Throughout, you will see **FairAware** tasks, which provide opportunities to contextualize ML processes with respect to fairness. In performing these tasks, you'll identify biases and consider the long-term impact of model predictions if these biases are not addressed."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "TXkkHYyJ98_k"
},
"source": [
"## About the Dataset and Prediction Task\n",
"\n",
"In this exercise, you'll work with the [Adult Census Income dataset](https://archive.ics.uci.edu/ml/datasets/Census+Income), which is commonly used in machine learning literature. This data was extracted from the [1994 Census bureau database](http://www.census.gov/en.html) by Ronny Kohavi and Barry Becker.\n",
"\n",
"Each example in the dataset contains the following demographic data for a set of individuals who took part in the 1994 Census:\n",
"\n",
"### Numeric Features\n",
"* `age`: The age of the individual in years.\n",
"* `fnlwgt`: The number of individuals the Census Organizations believes that set of observations represents.\n",
"* `education_num`: An enumeration of the categorical representation of education. The higher the number, the higher the education that individual achieved. For example, an `education_num` of `11` represents `Assoc_voc` (associate degree at a vocational school), an `education_num` of `13` represents `Bachelors`, and an `education_num` of `9` represents `HS-grad` (high school graduate).\n",
"* `capital_gain`: Capital gain made by the individual, represented in US Dollars.\n",
"* `capital_loss`: Capital loss mabe by the individual, represented in US Dollars.\n",
"* `hours_per_week`: Hours worked per week.\n",
"\n",
"### Categorical Features\n",
"* `workclass`: The individual's type of employer. Examples include: `Private`, `Self-emp-not-inc`, `Self-emp-inc`, `Federal-gov`, `Local-gov`, `State-gov`, `Without-pay`, and `Never-worked`.\n",
"* `education`: The highest level of education achieved for that individual.\n",
"* `marital_status`: Marital status of the individual. Examples include: `Married-civ-spouse`, `Divorced`, `Never-married`, `Separated`, `Widowed`, `Married-spouse-absent`, and `Married-AF-spouse`.\n",
"* `occupation`: The occupation of the individual. Example include: `tech-support`, `Craft-repair`, `Other-service`, `Sales`, `Exec-managerial` and more.\n",
"* `relationship`: The relationship of each individual in a household. Examples include: `Wife`, `Own-child`, `Husband`, `Not-in-family`, `Other-relative`, and `Unmarried`.\n",
"* `gender`: Gender of the individual available only in binary choices: `Female` or `Male`.\n",
"* `race`: `White`, `Asian-Pac-Islander`, `Amer-Indian-Eskimo`, `Black`, and `Other`. \n",
"* `native_country`: Country of origin of the individual. Examples include: `United-States`, `Cambodia`, `England`, `Puerto-Rico`, `Canada`, `Germany`, `Outlying-US(Guam-USVI-etc)`, `India`, `Japan`, and more.\n",
"\n",
"### Prediction Task\n",
"The prediction task is to **determine whether a person makes over $50,000 US Dollar a year.**\n",
"\n",
"### Label\n",
"* `income_bracket`: Whether the person makes more than $50,000 US Dollars annually.\n",
"\n",
"### Notes on Data Collection\n",
"\n",
"All the examples extracted for this dataset meet the following conditions: \n",
"* `age` is 16 years or older.\n",
"* The adjusted gross income (used to calculate `income_bracket`) is greater than $100 USD annually.\n",
"* `fnlwgt` is greater than 0.\n",
"* `hours_per_week` is greater than 0.\n",
"\n",
"\n",
"\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "I0RMIktKy8xX"
},
"source": [
"## Setup\n",
"\n",
"First, we should ensure that this Colaboratory notebook will run on TensorFlow 2.x."
]
},
{
"cell_type": "code",
"metadata": {
"id": "MelAK2u6d-xx"
},
"source": [
"#@title Run on TensorFlow 2.x\n",
"%tensorflow_version 2.x\n",
"from __future__ import absolute_import, division, print_function, unicode_literals"
],
"execution_count": 2,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "jUsgiVsUeKRR"
},
"source": [
"Next, we'll import the necessary modules to run the code in the rest of this Colaboratory notebook. \n",
"\n",
"In addition to importing the usual libraries, this setup code cell also installs [Facets](https://pair-code.github.io/facets/), an open-source tool created by [PAIR](https://research.google/teams/brain/pair/) that contains two robust visualizations we'll be using to aid in understanding and analyzing ML datasets."
]
},
{
"cell_type": "code",
"metadata": {
"id": "2e_0DJJ8zE29",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "25306464-0dc5-4b5f-f0b3-3473c4ea2035"
},
"source": [
"#@title Import revelant modules and install Facets\n",
"import numpy as np\n",
"import pandas as pd\n",
"import tensorflow as tf\n",
"from tensorflow.keras import layers\n",
"from matplotlib import pyplot as plt\n",
"from matplotlib import rcParams\n",
"import seaborn as sns\n",
"\n",
"# The following lines adjust the granularity of reporting. \n",
"pd.options.display.max_rows = 10\n",
"pd.options.display.float_format = \"{:.1f}\".format\n",
"\n",
"from google.colab import widgets\n",
"# For facets\n",
"from IPython.core.display import display, HTML\n",
"import base64\n",
"!pip install facets-overview==1.0.0\n",
"from facets_overview.feature_statistics_generator import FeatureStatisticsGenerator"
],
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"text": [
"Collecting facets-overview==1.0.0\n",
" Downloading facets_overview-1.0.0-py2.py3-none-any.whl (24 kB)\n",
"Requirement already satisfied: protobuf>=3.7.0 in /usr/local/lib/python3.7/dist-packages (from facets-overview==1.0.0) (3.17.3)\n",
"Requirement already satisfied: pandas>=0.22.0 in /usr/local/lib/python3.7/dist-packages (from facets-overview==1.0.0) (1.1.5)\n",
"Requirement already satisfied: numpy>=1.16.0 in /usr/local/lib/python3.7/dist-packages (from facets-overview==1.0.0) (1.19.5)\n",
"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas>=0.22.0->facets-overview==1.0.0) (2.8.1)\n",
"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas>=0.22.0->facets-overview==1.0.0) (2018.9)\n",
"Requirement already satisfied: six>=1.9 in /usr/local/lib/python3.7/dist-packages (from protobuf>=3.7.0->facets-overview==1.0.0) (1.15.0)\n",
"Installing collected packages: facets-overview\n",
"Successfully installed facets-overview-1.0.0\n"
],
"name": "stdout"
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "-xgIRapb5LaQ"
},
"source": [
"### Load the Adult Dataset\n",
"\n",
"With the modules now imported, we can load the Adult dataset into a pandas DataFrame data structure."
]
},
{
"cell_type": "code",
"metadata": {
"id": "TeCNVvVUVS0P",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "7e063aa1-c098-4bc3-d044-eeaf058f31a5"
},
"source": [
"COLUMNS = [\"age\", \"workclass\", \"fnlwgt\", \"education\", \"education_num\",\n",
" \"marital_status\", \"occupation\", \"relationship\", \"race\", \"gender\",\n",
" \"capital_gain\", \"capital_loss\", \"hours_per_week\", \"native_country\",\n",
" \"income_bracket\"]\n",
"\n",
"train_csv = tf.keras.utils.get_file('adult.data', \n",
" 'https://download.mlcc.google.com/mledu-datasets/adult_census_train.csv')\n",
"test_csv = tf.keras.utils.get_file('adult.data', \n",
" 'https://download.mlcc.google.com/mledu-datasets/adult_census_test.csv')\n",
"\n",
"train_df = pd.read_csv(train_csv, names=COLUMNS, sep=r'\\s*,\\s*', \n",
" engine='python', na_values=\"?\")\n",
"test_df = pd.read_csv(test_csv, names=COLUMNS, sep=r'\\s*,\\s*', skiprows=[0],\n",
" engine='python', na_values=\"?\")"
],
"execution_count": 4,
"outputs": [
{
"output_type": "stream",
"text": [
"Downloading data from https://download.mlcc.google.com/mledu-datasets/adult_census_train.csv\n",
"3981312/3974305 [==============================] - 0s 0us/step\n"
],
"name": "stdout"
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "coilRN-hooja"
},
"source": [
"## Analyzing the Adult Dataset with Facets\n",
"\n",
"As mentioned in MLCC, it is important to understand your dataset *before* diving straight into the prediction task. \n",
"\n",
"Some important questions to investigate when auditing a dataset for fairness:\n",
"\n",
"* **Are there missing feature values for a large number of observations?**\n",
"* **Are there features that are missing that might affect other features?**\n",
"* **Are there any unexpected feature values?**\n",
"* **What signs of data skew do you see?**"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "9yCIuAqWA1Pm"
},
"source": [
"To start, we can use [Facets Overview](https://pair-code.github.io/facets/), an interactive visualization tool that can help us explore the dataset. With Facets Overview, we can quickly analyze the distribution of values across the Adult dataset."
]
},
{
"cell_type": "code",
"metadata": {
"id": "MW-qryqs1gig",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 1000
},
"outputId": "e8c16772-44dc-4567-ee36-bf38fdd280f6"
},
"source": [
"#@title Visualize the Data in Facets\n",
"fsg = FeatureStatisticsGenerator()\n",
"dataframes = [\n",
" {'table': train_df, 'name': 'trainData'}]\n",
"censusProto = fsg.ProtoFromDataFrames(dataframes)\n",
"protostr = base64.b64encode(censusProto.SerializeToString()).decode(\"utf-8\")\n",
"\n",
"\n",
"HTML_TEMPLATE = \"\"\"<script src=\"https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.3.3/webcomponents-lite.js\"></script>\n",
" <link rel=\"import\" href=\"https://raw.githubusercontent.com/PAIR-code/facets/1.0.0/facets-dist/facets-jupyter.html\">\n",
" <facets-overview id=\"elem\"></facets-overview>\n",
" <script>\n",
" document.querySelector(\"#elem\").protoInput = \"{protostr}\";\n",
" </script>\"\"\"\n",
"html = HTML_TEMPLATE.format(protostr=protostr)\n",
"display(HTML(html))"
],
"execution_count": 5,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<script src=\"https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.3.3/webcomponents-lite.js\"></script>\n",
" <link rel=\"import\" href=\"https://raw.githubusercontent.com/PAIR-code/facets/1.0.0/facets-dist/facets-jupyter.html\">\n",
" <facets-overview id=\"elem\"></facets-overview>\n",
" <script>\n",
" document.querySelector(\"#elem\").protoInput = \"CsVZCgl0cmFpbkRhdGEQsf4BGrgHCgNhZ2UasAcKtAIIsf4BGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAgARGx9p9mc0pDQBmELjdSy0crQCkAAAAAAAAxQDEAAAAAAIBCQDkAAAAAAIBWQEKiAhobCQAAAAAAADFAEc3MzMzMTDhAIQAAAAAAwrVAGhsJzczMzMxMOEARmpmZmZmZP0AhAAAAAAACt0AaGwmamZmZmZk/QBEzMzMzM3NDQCEAAAAAAKC3QBobCTMzMzMzc0NAEZqZmZmZGUdAIQAAAAAAE7hAGhsJmpmZmZkZR0ARAAAAAADASkAhAAAAAAD+rkAaGwkAAAAAAMBKQBFmZmZmZmZOQCEAAAAAAD6kQBobCWZmZmZmZk5AEWZmZmZmBlFAIQAAAAAA7JhAGhsJZmZmZmYGUUARmpmZmZnZUkAhAAAAAAAAf0AaGwmamZmZmdlSQBHNzMzMzKxUQCEAAAAAAMBlQBobCc3MzMzMrFRAEQAAAAAAgFZAIQAAAAAAwFBAQqQCGhsJAAAAAAAAMUARAAAAAAAANkAhMzMzMzNwqUAaGwkAAAAAAAA2QBEAAAAAAAA6QCEzMzMzM3CpQBobCQAAAAAAADpAEQAAAAAAAD5AITMzMzMzcKlAGhsJAAAAAAAAPkARAAAAAACAQEAhMzMzMzNwqUAaGwkAAAAAAIBAQBEAAAAAAIBCQCEzMzMzM3CpQBobCQAAAAAAgEJAEQAAAAAAgERAITMzMzMzcKlAGhsJAAAAAACAREARAAAAAACARkAhMzMzMzNwqUAaGwkAAAAAAIBGQBEAAAAAAABJQCEzMzMzM3CpQBobCQAAAAAAAElAEQAAAAAAAE1AITMzMzMzcKlAGhsJAAAAAAAATUARAAAAAACAVkAhMzMzMzNwqUAgARrgBAoJd29ya2NsYXNzEAIi0AQKtwIIhfABEKwOGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hAAAAAAABqEAaGwkAAAAAAADwPxEAAAAAAADwPyEAAAAAAAGoQBobCQAAAAAAAPA/EQAAAAAAAPA/IQAAAAAAAahAGhsJAAAAAAAA8D8RAAAAAAAA8D8hAAAAAAABqEAaGwkAAAAAAADwPxEAAAAAAADwPyEAAAAAAAGoQBobCQAAAAAAAPA/EQAAAAAAAPA/IQAAAAAAAahAGhsJAAAAAAAA8D8RAAAAAAAA8D8hAAAAAAABqEAaGwkAAAAAAADwPxEAAAAAAADwPyEAAAAAAAGoQBobCQAAAAAAAPA/EQAAAAAAAPA/IQAAAAAAAahAGhsJAAAAAAAA8D8RAAAAAAAA8D8hAAAAAAABqEAgARAIGhISB1ByaXZhdGUZAAAAAAAq1kAaGxIQU2VsZi1lbXAtbm90LWluYxkAAAAAANqjQCXAZARBKtsBChIiB1ByaXZhdGUpAAAAAAAq1kAKHwgBEAEiEFNlbGYtZW1wLW5vdC1pbmMpAAAAAADao0AKGAgCEAIiCUxvY2FsLWdvdikAAAAAAFqgQAoYCAMQAyIJU3RhdGUtZ292KQAAAAAASJRAChsIBBAEIgxTZWxmLWVtcC1pbmMpAAAAAABwkUAKGggFEAUiC0ZlZGVyYWwtZ292KQAAAAAAAI5AChoIBhAGIgtXaXRob3V0LXBheSkAAAAAAAAsQAobCAcQByIMTmV2ZXItd29ya2VkKQAAAAAAABxAGrsHCgZmbmx3Z3QasAcKtAIIsf4BGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAgARFW453ukioHQRmpvMi1xcT5QCkAAAAAgP7HQDEAAAAAoMUFQTkAAAAAoac2QUKiAhobCQAAAACA/sdAEQAAAAA4eQNBIQAAAACAnslAGhsJAAAAADh5A0ERAAAAAES5EkEhAAAAAIDvzUAaGwkAAAAARLkSQREAAAAA7LUbQSEAAAAAAFSrQBobCQAAAADstRtBEQAAAABKWSJBIQAAAAAA0H1AGhsJAAAAAEpZIkERAAAAAJ7XJkEhAAAAAACAWUAaGwkAAAAAntcmQREAAAAA8lUrQSEAAAAAAAA0QBobCQAAAADyVStBEQAAAABG1C9BIQAAAAAAACRAGhsJAAAAAEbUL0ERAAAAAE0pMkEhAAAAAAAAFEAaGwkAAAAATSkyQREAAAAAd2g0QSEAAAAAAAAAQBobCQAAAAB3aDRBEQAAAAChpzZBIQAAAAAAAAhAQqQCGhsJAAAAAID+x0ARAAAAAEAL8EAhMzMzMzNwqUAaGwkAAAAAQAvwQBEAAAAAgAn6QCEzMzMzM3CpQBobCQAAAACACfpAEQAAAACA8v9AITMzMzMzcKlAGhsJAAAAAIDy/0ARAAAAADBeA0EhMzMzMzNwqUAaGwkAAAAAMF4DQREAAAAAoMUFQSEzMzMzM3CpQBobCQAAAACgxQVBEQAAAACQ9wdBITMzMzMzcKlAGhsJAAAAAJD3B0ERAAAAAIDPCkEhMzMzMzNwqUAaGwkAAAAAgM8KQREAAAAACLkPQSEzMzMzM3CpQBobCQAAAAAIuQ9BEQAAAAB4FRRBITMzMzMzcKlAGhsJAAAAAHgVFEERAAAAAKGnNkEhMzMzMzNwqUAgARqBBgoJZWR1Y2F0aW9uEAIi8QUKtAIIsf4BGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAgARAQGhISB0hTLWdyYWQZAAAAAICCxEAaFxIMU29tZS1jb2xsZWdlGQAAAAAAe7xAJXnwBkEqgwMKEiIHSFMtZ3JhZCkAAAAAgILEQAobCAEQASIMU29tZS1jb2xsZWdlKQAAAAAAe7xAChgIAhACIglCYWNoZWxvcnMpAAAAAADrtEAKFggDEAMiB01hc3RlcnMpAAAAAADsmkAKGAgEEAQiCUFzc29jLXZvYykAAAAAAJiVQAoTCAUQBSIEMTF0aCkAAAAAAFySQAoZCAYQBiIKQXNzb2MtYWNkbSkAAAAAAKyQQAoTCAcQByIEMTB0aCkAAAAAACiNQAoWCAgQCCIHN3RoLTh0aCkAAAAAADCEQAoaCAkQCSILUHJvZi1zY2hvb2wpAAAAAAAAgkAKEggKEAoiAzl0aCkAAAAAABCAQAoTCAsQCyIEMTJ0aCkAAAAAABB7QAoYCAwQDCIJRG9jdG9yYXRlKQAAAAAA0HlAChYIDRANIgc1dGgtNnRoKQAAAAAA0HRAChYIDhAOIgcxc3QtNHRoKQAAAAAAAGVAChgIDxAPIglQcmVzY2hvb2wpAAAAAACASUAawgcKDWVkdWNhdGlvbl9udW0asAcKtAIIsf4BGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAgARGAO3DNTikkQBnLB0iv2ZQEQCkAAAAAAADwPzEAAAAAAAAkQDkAAAAAAAAwQEKiAhobCQAAAAAAAPA/EQAAAAAAAARAIQAAAAAAYGtAGhsJAAAAAAAABEARAAAAAAAAEEAhAAAAAADQdEAaGwkAAAAAAAAQQBEAAAAAAAAWQCEAAAAAACCSQBobCQAAAAAAABZAEQAAAAAAABxAIQAAAAAAKI1AGhsJAAAAAAAAHEARAAAAAAAAIUAhAAAAAAAgmUAaGwkAAAAAAAAhQBEAAAAAAAAkQCEAAAAAgILEQBobCQAAAAAAACRAEQAAAAAAACdAIQAAAACA8MBAGhsJAAAAAAAAJ0ARAAAAAAAAKkAhAAAAAACskEAaGwkAAAAAAAAqQBEAAAAAAAAtQCEAAAAAAKa7QBobCQAAAAAAAC1AEQAAAAAAADBAIQAAAAAA6I5AQqQCGhsJAAAAAAAA8D8RAAAAAAAAHEAhMzMzMzNwqUAaGwkAAAAAAAAcQBEAAAAAAAAiQCEzMzMzM3CpQBobCQAAAAAAACJAEQAAAAAAACJAITMzMzMzcKlAGhsJAAAAAAAAIkARAAAAAAAAIkAhMzMzMzNwqUAaGwkAAAAAAAAiQBEAAAAAAAAkQCEzMzMzM3CpQBobCQAAAAAAACRAEQAAAAAAACRAITMzMzMzcKlAGhsJAAAAAAAAJEARAAAAAAAAJkAhMzMzMzNwqUAaGwkAAAAAAAAmQBEAAAAAAAAqQCEzMzMzM3CpQBobCQAAAAAAACpAEQAAAAAAACpAITMzMzMzcKlAGhsJAAAAAAAAKkARAAAAAAAAMEAhMzMzMzNwqUAgARrfBAoObWFyaXRhbF9zdGF0dXMQAiLKBAq0Agix/gEYASABLQAAgD8ypAIaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQCABEAcaHRISTWFycmllZC1jaXYtc3BvdXNlGQAAAAAAQM1AGhgSDU5ldmVyLW1hcnJpZWQZAAAAAIDdxEAl959mQSrQAQodIhJNYXJyaWVkLWNpdi1zcG91c2UpAAAAAABAzUAKHAgBEAEiDU5ldmVyLW1hcnJpZWQpAAAAAIDdxEAKFwgCEAIiCERpdm9yY2VkKQAAAAAAW7FAChgIAxADIglTZXBhcmF0ZWQpAAAAAAAEkEAKFggEEAQiB1dpZG93ZWQpAAAAAAAIj0AKJAgFEAUiFU1hcnJpZWQtc3BvdXNlLWFic2VudCkAAAAAACB6QAogCAYQBiIRTWFycmllZC1BRi1zcG91c2UpAAAAAAAAN0AasQYKCm9jY3VwYXRpb24QAiKgBgq3Agj+7wEQsw4YASABLQAAgD8ypAIaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmf+nQBobCQAAAAAAAPA/EQAAAAAAAPA/IZqZmZmZ/6dAGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn/p0AaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmf+nQBobCQAAAAAAAPA/EQAAAAAAAPA/IZqZmZmZ/6dAGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn/p0AaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmf+nQBobCQAAAAAAAPA/EQAAAAAAAPA/IZqZmZmZ/6dAGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn/p0AaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmf+nQCABEA4aGRIOUHJvZi1zcGVjaWFsdHkZAAAAAAAssEAaFxIMQ3JhZnQtcmVwYWlyGQAAAAAAA7BAJdX7TUEqqAMKGSIOUHJvZi1zcGVjaWFsdHkpAAAAAAAssEAKGwgBEAEiDENyYWZ0LXJlcGFpcikAAAAAAAOwQAoeCAIQAiIPRXhlYy1tYW5hZ2VyaWFsKQAAAAAAxK9AChsIAxADIgxBZG0tY2xlcmljYWwpAAAAAAB0rUAKFAgEEAQiBVNhbGVzKQAAAAAAhKxAChwIBRAFIg1PdGhlci1zZXJ2aWNlKQAAAAAAvqlACiAIBhAGIhFNYWNoaW5lLW9wLWluc3BjdCkAAAAAAEifQAofCAcQByIQVHJhbnNwb3J0LW1vdmluZykAAAAAAPSYQAogCAgQCCIRSGFuZGxlcnMtY2xlYW5lcnMpAAAAAABolUAKHggJEAkiD0Zhcm1pbmctZmlzaGluZykAAAAAABCPQAobCAoQCiIMVGVjaC1zdXBwb3J0KQAAAAAAAI1ACh4ICxALIg9Qcm90ZWN0aXZlLXNlcnYpAAAAAABIhEAKHggMEAwiD1ByaXYtaG91c2Utc2VydikAAAAAAKBiQAobCA0QDSIMQXJtZWQtRm9yY2VzKQAAAAAAACJAGpwECgxyZWxhdGlvbnNoaXAQAiKJBAq0Agix/gEYASABLQAAgD8ypAIaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQCABEAYaEhIHSHVzYmFuZBkAAAAAgMTJQBoYEg1Ob3QtaW4tZmFtaWx5GQAAAACAOMBAJXnqEUEqmgEKEiIHSHVzYmFuZCkAAAAAgMTJQAocCAEQASINTm90LWluLWZhbWlseSkAAAAAgDjAQAoYCAIQAiIJT3duLWNoaWxkKQAAAAAAzLNAChgIAxADIglVbm1hcnJpZWQpAAAAAADsqkAKEwgEEAQiBFdpZmUpAAAAAACAmEAKHQgFEAUiDk90aGVyLXJlbGF0aXZlKQAAAAAAqI5AGvQDCgRyYWNlEAIi6QMKtAIIsf4BGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAgARAFGhASBVdoaXRlGQAAAAAAKttAGhASBUJsYWNrGQAAAAAAaKhAJWU/sUAqhAEKECIFV2hpdGUpAAAAAAAq20AKFAgBEAEiBUJsYWNrKQAAAAAAaKhACiEIAhACIhJBc2lhbi1QYWMtSXNsYW5kZXIpAAAAAAA8kEAKIQgDEAMiEkFtZXItSW5kaWFuLUVza2ltbykAAAAAAHBzQAoUCAQQBCIFT3RoZXIpAAAAAADwcEAamQMKBmdlbmRlchACIowDCrQCCLH+ARgBIAEtAACAPzKkAhobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAIAEQAhoPEgRNYWxlGQAAAACAR9VAGhESBkZlbWFsZRkAAAAAgAnFQCW9K5VAKigKDyIETWFsZSkAAAAAgEfVQAoVCAEQASIGRmVtYWxlKQAAAACACcVAGtoFCgxjYXBpdGFsX2dhaW4ayQUKtAIIsf4BGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAgARHdNHxqmNaQQBmavsW9Ldm8QCCZ6QE5AAAAAPBp+EBC9QEaEhEzMzMz84fDQCEAAAAAwAvfQBobCTMzMzPzh8NAETMzMzPzh9NAIQAAAAAAKIBAGhsJMzMzM/OH00ARzMzMzOxL3UAhAAAAAADAVUAaGwnMzMzM7EvdQBEzMzMz84fjQCEAAAAAAAAUQBobCTMzMzPzh+NAEQAAAADwaehAIQAAAAAAAABAGhIJAAAAAPBp6EARzMzMzOxL7UAaEgnMzMzM7EvtQBHNzMzM9BbxQBoSCc3MzMz0FvFAETMzMzPzh/NAGhIJMzMzM/OH80ARmZmZmfH49UAaGwmZmZmZ8fj1QBEAAAAA8Gn4QCEAAAAAAOBjQEJ5GgkhMzMzMzNwqUAaCSEzMzMzM3CpQBoJITMzMzMzcKlAGgkhMzMzMzNwqUAaCSEzMzMzM3CpQBoJITMzMzMzcKlAGgkhMzMzMzNwqUAaCSEzMzMzM3CpQBoJITMzMzMzcKlAGhIRAAAAAPBp+EAhMzMzMzNwqUAgARr1BQoMY2FwaXRhbF9sb3NzGuQFCrQCCLH+ARgBIAEtAACAPzKkAhobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAIAER4cxF8nHTVUAZ5DbUtUMveUAgwvIBOQAAAAAABLFAQpACGhIRmpmZmZk5e0AhAAAAAEBT3kAaGwmamZmZmTl7QBGamZmZmTmLQCEAAAAAAAAxQBobCZqZmZmZOYtAETQzMzMza5RAIQAAAAAAADVAGhsJNDMzMzNrlEARmpmZmZk5m0AhAAAAAADQfEAaGwmamZmZmTmbQBEAAAAAAAShQCEAAAAAAFiIQBobCQAAAAAABKFAETQzMzMza6RAIQAAAAAA4GlAGhsJNDMzMzNrpEARZ2ZmZmbSp0AhAAAAAAAALEAaEglnZmZmZtKnQBGamZmZmTmrQBobCZqZmZmZOatAEc3MzMzMoK5AIQAAAAAAABhAGhsJzczMzMygrkARAAAAAAAEsUAhAAAAAAAACEBCeRoJITMzMzMzcKlAGgkhMzMzMzNwqUAaCSEzMzMzM3CpQBoJITMzMzMzcKlAGgkhMzMzMzNwqUAaCSEzMzMzM3CpQBoJITMzMzMzcKlAGgkhMzMzMzNwqUAaCSEzMzMzM3CpQBoSEQAAAAAABLFAITMzMzMzcKlAIAEawwcKDmhvdXJzX3Blcl93ZWVrGrAHCrQCCLH+ARgBIAEtAACAPzKkAhobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAIAERdBepjf43REAZQB70UcmxKEApAAAAAAAA8D8xAAAAAAAAREA5AAAAAADAWEBCogIaGwkAAAAAAADwPxGamZmZmZklQCEAAAAAAACHQBobCZqZmZmZmSVAEZqZmZmZmTRAIQAAAAAAIKFAGhsJmpmZmZmZNEARZ2ZmZmZmPkAhAAAAAAAaokAaGwlnZmZmZmY+QBGamZmZmRlEQCEAAAAAwFHRQBobCZqZmZmZGURAEQAAAAAAAElAIQAAAAAAXqhAGhsJAAAAAAAASUARZ2ZmZmbmTUAhAAAAAABKrkAaGwlnZmZmZuZNQBFnZmZmZmZRQCEAAAAAABCcQBobCWdmZmZmZlFAEZqZmZmZ2VNAIQAAAAAAAHxAGhsJmpmZmZnZU0ARzczMzMxMVkAhAAAAAABAaUAaGwnNzMzMzExWQBEAAAAAAMBYQCEAAAAAAGBhQEKkAhobCQAAAAAAAPA/EQAAAAAAADhAITMzMzMzcKlAGhsJAAAAAAAAOEARAAAAAACAQUAhMzMzMzNwqUAaGwkAAAAAAIBBQBEAAAAAAABEQCEzMzMzM3CpQBobCQAAAAAAAERAEQAAAAAAAERAITMzMzMzcKlAGhsJAAAAAAAAREARAAAAAAAAREAhMzMzMzNwqUAaGwkAAAAAAABEQBEAAAAAAABEQCEzMzMzM3CpQBobCQAAAAAAAERAEQAAAAAAAERAITMzMzMzcKlAGhsJAAAAAAAAREARAAAAAAAASEAhMzMzMzNwqUAaGwkAAAAAAABIQBEAAAAAAIBLQCEzMzMzM3CpQBobCQAAAAAAgEtAEQAAAAAAwFhAITMzMzMzcKlAIAEaiQsKDm5hdGl2ZV9jb3VudHJ5EAIi9AoKtwII6vkBEMcEGAEgAS0AAIA/MqQCGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn7qEAaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmfuoQBobCQAAAAAAAPA/EQAAAAAAAPA/IZqZmZmZ+6hAGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn7qEAaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmfuoQBobCQAAAAAAAPA/EQAAAAAAAPA/IZqZmZmZ+6hAGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn7qEAaGwkAAAAAAADwPxEAAAAAAADwPyGamZmZmfuoQBobCQAAAAAAAPA/EQAAAAAAAPA/IZqZmZmZ+6hAGhsJAAAAAAAA8D8RAAAAAAAA8D8hmpmZmZn7qEAgARApGhgSDVVuaXRlZC1TdGF0ZXMZAAAAAIB83EAaERIGTWV4aWNvGQAAAAAAGIRAJfr+R0EqgwgKGCINVW5pdGVkLVN0YXRlcykAAAAAgHzcQAoVCAEQASIGTWV4aWNvKQAAAAAAGIRAChoIAhACIgtQaGlsaXBwaW5lcykAAAAAAMBoQAoWCAMQAyIHR2VybWFueSkAAAAAACBhQAoVCAQQBCIGQ2FuYWRhKQAAAAAAQF5AChoIBRAFIgtQdWVydG8tUmljbykAAAAAAIBcQAoaCAYQBiILRWwtU2FsdmFkb3IpAAAAAACAWkAKFAgHEAciBUluZGlhKQAAAAAAAFlAChMICBAIIgRDdWJhKQAAAAAAwFdAChYICRAJIgdFbmdsYW5kKQAAAAAAgFZAChYIChAKIgdKYW1haWNhKQAAAAAAQFRAChQICxALIgVTb3V0aCkAAAAAAABUQAoUCAwQDCIFQ2hpbmEpAAAAAADAUkAKFAgNEA0iBUl0YWx5KQAAAAAAQFJACiEIDhAOIhJEb21pbmljYW4tUmVwdWJsaWMpAAAAAACAUUAKFggPEA8iB1ZpZXRuYW0pAAAAAADAUEAKGAgQEBAiCUd1YXRlbWFsYSkAAAAAAABQQAoUCBEQESIFSmFwYW4pAAAAAAAAT0AKFQgSEBIiBlBvbGFuZCkAAAAAAABOQAoXCBMQEyIIQ29sdW1iaWEpAAAAAACATUAKFQgUEBQiBlRhaXdhbikAAAAAAIBJQAoUCBUQFSIFSGFpdGkpAAAAAAAARkAKEwgWEBYiBElyYW4pAAAAAACARUAKFwgXEBciCFBvcnR1Z2FsKQAAAAAAgEJAChgIGBAYIglOaWNhcmFndWEpAAAAAAAAQUAKEwgZEBkiBFBlcnUpAAAAAAAAP0AKFQgaEBoiBkdyZWVjZSkAAAAAAAA9QAoVCBsQGyIGRnJhbmNlKQAAAAAAAD1AChYIHBAcIgdFY3VhZG9yKQAAAAAAADxAChYIHRAdIgdJcmVsYW5kKQAAAAAAADhAChMIHhAeIgRIb25nKQAAAAAAADRACh4IHxAfIg9UcmluYWRhZCZUb2JhZ28pAAAAAAAAM0AKFwggECAiCENhbWJvZGlhKQAAAAAAADNAChcIIRAhIghUaGFpbGFuZCkAAAAAAAAyQAoTCCIQIiIETGFvcykAAAAAAAAyQAoZCCMQIyIKWXVnb3NsYXZpYSkAAAAAAAAwQAopCCQQJCIaT3V0bHlpbmctVVMoR3VhbS1VU1ZJLWV0YykpAAAAAAAALEAKFgglECUiB0h1bmdhcnkpAAAAAAAAKkAKFwgmECYiCEhvbmR1cmFzKQAAAAAAACpAChcIJxAnIghTY290bGFuZCkAAAAAAAAoQAohCCgQKCISSG9sYW5kLU5ldGhlcmxhbmRzKQAAAAAAAPA/Gp8DCg5pbmNvbWVfYnJhY2tldBACIooDCrQCCLH+ARgBIAEtAACAPzKkAhobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAGhsJAAAAAAAA8D8RAAAAAAAA8D8hMzMzMzNwqUAaGwkAAAAAAADwPxEAAAAAAADwPyEzMzMzM3CpQBobCQAAAAAAAPA/EQAAAAAAAPA/ITMzMzMzcKlAIAEQAhoQEgU8PTUwSxkAAAAAACTYQBoPEgQ+NTBLGQAAAAAAob5AJUpLmEAqJwoQIgU8PTUwSykAAAAAACTYQAoTCAEQASIEPjUwSykAAAAAAKG+QA==\";\n",
" </script>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "91wjnZFpPWw-"
},
"source": [
"### FairAware Task #1\n",
"\n",
"Review the descriptive statistics and histograms for each numerical and continuous feature. Click the **Show Raw Data** button above the histograms for categorical features to see the distribution of values per category.\n",
"\n",
"Then, try to answer the following questions from earlier:\n",
"\n",
"1. Are there missing feature values for a large number of observations?\n",
"2. Are there features that are missing that might affect other features?\n",
"3. Are there any unexpected feature values?\n",
"4. What signs of data skew do you see?"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "KlF-lQ8yQ69b"
},
"source": [
"### Solution\n",
"\n",
"Click below for some insights we uncovered."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "xX_qjj5AQ_Hb"
},
"source": [
"We can see from reviewing the **missing** column that the following categorical features contain missing values:\n",
"\n",
"* workclass\n",
"* occupation\n",
"\n",
"Now, because it's only a small percentage of samples that contain either a missing workclass value or occupation value, we can safely drop those rows from the data set. If that percentage was much higher, then we would have to consider using a different data set that is more complete. \n",
"\n",
"Luckily, in Pandas, there is a convenient way to drop any row containing a missing value in the data set:\n",
"\n",
"```\n",
"# pandas.DataFrame.dropna(how=\"any\", axis=0, inplace=True)\n",
"```\n",
"We will use this method prior to training the model when we convert a Pandas DataFrame to a Numpy array.\n",
"\n",
"As for the remaining data that does not contain any missing values: if we look at the min/max values and histograms for each numeric feature, then we can pinpoint any extreme outliers in our data set. \n",
"\n",
"For `hours_per_week`, we can see that the minimum is 1, which might be a bit surprising, given that most jobs typically require multiple hours of work per week. For `capital_gain` and `capital_loss`, we can see that over 90% of values are 0. Given that capital gains/losses are only registered by individuals who make investments, it's certainly plausible that less than 10% of examples would have nonzero values for these feature, but we may want to take a closer look to verify the values for these features are valid.\n",
"\n",
"In looking at the histogram for gender, we see that over two-thirds (approximately 67%) of examples represent males. This strongly suggests data skew, as we would expect the breakdown between genders to be closer to 50/50."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "hKj2hz-Sql7V"
},
"source": [
"### A Deeper Dive\n",
"\n",
"To futher explore the dataset, we can use [Facets Dive](https://pair-code.github.io/facets/), a tool that provides an interactive interface where each individual item in the visualization represents a data point. But to use Facets Dive, we need to convert the data to a JSON array.\n",
"Thankfully the DataFrame method `to_json()` takes care of this for us.\n",
"\n",
"Run the cell below to perform the data transform to JSON and also load Facets Dive. "
]
},
{
"cell_type": "code",
"metadata": {
"id": "stlklrG_xssF",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 617
},
"outputId": "a5be1c64-88cf-4ccf-8114-c422596150a7"
},
"source": [
"#@title Set the Number of Data Points to Visualize in Facets Dive\n",
"\n",
"SAMPLE_SIZE = 5000 #@param\n",
" \n",
"train_dive = train_df.sample(SAMPLE_SIZE).to_json(orient='records')\n",
"\n",
"HTML_TEMPLATE = \"\"\"<script src=\"https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.3.3/webcomponents-lite.js\"></script>\n",
" <link rel=\"import\" href=\"https://raw.githubusercontent.com/PAIR-code/facets/1.0.0/facets-dist/facets-jupyter.html\">\n",
" <facets-dive id=\"elem\" height=\"600\"></facets-dive>\n",
" <script>\n",
" var data = {jsonstr};\n",
" document.querySelector(\"#elem\").data = data;\n",
" </script>\"\"\"\n",
"html = HTML_TEMPLATE.format(jsonstr=train_dive)\n",
"display(HTML(html))"
],
"execution_count": 6,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<script src=\"https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.3.3/webcomponents-lite.js\"></script>\n",
" <link rel=\"import\" href=\"https://raw.githubusercontent.com/PAIR-code/facets/1.0.0/facets-dist/facets-jupyter.html\">\n",
" <facets-dive id=\"elem\" height=\"600\"></facets-dive>\n",
" <script>\n",
" var data = [{\"age\":64,\"workclass\":\"Local-gov\",\"fnlwgt\":78866,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":149769,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Cambodia\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":130438,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":110586,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Federal-gov\",\"fnlwgt\":469454,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":102359,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":172304,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":143299,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":268840,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":62,\"workclass\":\"Local-gov\",\"fnlwgt\":167889,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Widowed\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Iran\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":219742,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":238342,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":180419,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":117605,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":180138,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":339002,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":308709,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":377836,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Local-gov\",\"fnlwgt\":142166,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":128382,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":434467,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":158200,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"State-gov\",\"fnlwgt\":86912,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":160703,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":124950,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":253814,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":346964,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":219426,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":322691,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3103,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":47686,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":39581,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":154405,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Local-gov\",\"fnlwgt\":238188,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":306215,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":239683,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":145637,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":189265,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":119539,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":220585,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":201520,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":88570,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"Germany\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Federal-gov\",\"fnlwgt\":142712,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":77,\"workclass\":\"Private\",\"fnlwgt\":344425,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":485710,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":54932,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":188119,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":225193,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":35378,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":175669,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":219483,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":5013,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":151089,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":210926,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Separated\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Nicaragua\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":157289,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":213041,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Cuba\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":174150,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":31432,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3103,\"capital_loss\":0,\"hours_per_week\":52,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":62,\"workclass\":null,\"fnlwgt\":125493,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Scotland\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":326857,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5013,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":167613,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":190625,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":null,\"fnlwgt\":199947,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":238049,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":101150,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":41,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":160118,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":397877,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"State-gov\",\"fnlwgt\":107164,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":206947,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Widowed\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":67,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"State-gov\",\"fnlwgt\":400132,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":112497,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":214858,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":103358,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"India\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":118696,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":138940,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4386,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":35245,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":null,\"fnlwgt\":372020,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":200190,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":222254,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":164922,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":92463,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":null,\"fnlwgt\":213055,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":277342,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":107584,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":246965,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":133373,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"State-gov\",\"fnlwgt\":170091,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":30973,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":90,\"workclass\":\"Private\",\"fnlwgt\":250832,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":226902,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":174732,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":174201,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"State-gov\",\"fnlwgt\":200819,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":77085,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Japan\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":247750,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":193366,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":320451,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":210525,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":77,\"workclass\":null,\"fnlwgt\":158847,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-spouse-absent\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":185744,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"State-gov\",\"fnlwgt\":226789,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":75,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":72,\"workclass\":\"Private\",\"fnlwgt\":157913,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":17,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":341846,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":141802,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":140219,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":8614,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":148995,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":258037,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":229773,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":164938,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":186925,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2597,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":187711,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":117606,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":197182,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":null,\"fnlwgt\":341539,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":129177,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":102076,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":322674,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":36058,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":304906,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":195860,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":210364,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":298130,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":362787,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":155659,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":123075,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":199753,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":92440,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":136121,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":194726,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":238680,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"Outlying-US(Guam-USVI-etc)\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":207202,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Local-gov\",\"fnlwgt\":154863,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1876,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":314375,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":312667,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":208748,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Dominican-Republic\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":354962,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":113543,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":205337,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":308136,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":96129,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":null,\"fnlwgt\":49593,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":69,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":185039,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":9386,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Federal-gov\",\"fnlwgt\":197875,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":34803,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":279872,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":86750,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"State-gov\",\"fnlwgt\":105748,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":132917,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":\"Private\",\"fnlwgt\":113323,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":20051,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"State-gov\",\"fnlwgt\":147719,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"India\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"State-gov\",\"fnlwgt\":72333,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":475322,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Federal-gov\",\"fnlwgt\":184964,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":33794,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":40295,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":275845,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":174794,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"Germany\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":117381,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":null,\"fnlwgt\":165350,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Germany\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":210932,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":106670,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":285858,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":53306,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":148294,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Local-gov\",\"fnlwgt\":50178,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4064,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":43652,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":155621,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Columbia\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":108023,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":null,\"fnlwgt\":35595,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":186916,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":122749,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":304463,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":null,\"fnlwgt\":266792,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":87284,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":222434,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":171306,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":3,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":234298,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":6849,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":null,\"fnlwgt\":181705,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":145964,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":180449,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":28,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":193026,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":209569,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Local-gov\",\"fnlwgt\":215175,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":168191,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":214858,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":243368,\"education\":\"Preschool\",\"education_num\":1,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":181219,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1848,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Federal-gov\",\"fnlwgt\":100345,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":264357,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":290763,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":103713,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":239161,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":52,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":183092,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":58343,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":204052,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":133963,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":103751,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":168071,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":121772,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":143331,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":329752,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Local-gov\",\"fnlwgt\":125863,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":413557,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":149620,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":112459,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":139272,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":31778,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":187821,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2885,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":344129,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":71898,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Wife\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":49020,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1974,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":64631,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":229272,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":53481,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":170786,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":270872,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":594,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":66777,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3137,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":265275,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":279231,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":27049,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"State-gov\",\"fnlwgt\":149337,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":null,\"fnlwgt\":186420,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":235826,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5013,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":172960,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":75,\"workclass\":null,\"fnlwgt\":128224,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":148888,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":84,\"workclass\":null,\"fnlwgt\":368925,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":183162,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":394860,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":147707,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":187969,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":196674,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Local-gov\",\"fnlwgt\":97419,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":206215,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":339814,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":182437,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":32406,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":379066,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2205,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":84756,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":149168,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":146042,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":185912,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":215047,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":157249,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":215468,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":7,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":101795,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":null,\"fnlwgt\":365465,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":190350,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":206066,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":270572,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"State-gov\",\"fnlwgt\":244974,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":203076,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":289944,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":197816,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":10605,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Local-gov\",\"fnlwgt\":100135,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":294387,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":352448,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":72,\"workclass\":null,\"fnlwgt\":118902,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2392,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":381153,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":214865,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":null,\"fnlwgt\":188711,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":278151,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":69,\"workclass\":\"State-gov\",\"fnlwgt\":170458,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":272778,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"State-gov\",\"fnlwgt\":110128,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":51089,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":313022,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":4386,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":331482,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":412149,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":47176,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":166497,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":35210,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":172571,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":144071,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":132191,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Federal-gov\",\"fnlwgt\":176969,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1590,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":163204,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3411,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":69,\"workclass\":null,\"fnlwgt\":121136,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":13,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":26145,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":83742,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":195602,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":152246,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":52,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":229465,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"State-gov\",\"fnlwgt\":108116,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":217692,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":112840,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Federal-gov\",\"fnlwgt\":186601,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":113364,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":391114,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":215833,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":119558,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":190968,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2407,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":118253,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":224073,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":144169,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":330664,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":108540,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":75409,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Local-gov\",\"fnlwgt\":152182,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"State-gov\",\"fnlwgt\":183710,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Local-gov\",\"fnlwgt\":189956,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"State-gov\",\"fnlwgt\":43952,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":216472,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":48347,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":190293,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":139183,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":171550,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":168288,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Federal-gov\",\"fnlwgt\":186916,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":109832,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":450695,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":100067,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":168187,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":4416,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":195216,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":133758,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1974,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":160731,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Poland\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":187749,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":85355,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":84547,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":231619,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":21,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":174789,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":229977,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":287658,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Jamaica\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":313945,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Ecuador\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":128831,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":255348,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Federal-gov\",\"fnlwgt\":350680,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Poland\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":183083,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Federal-gov\",\"fnlwgt\":206190,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":230095,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":108293,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":2205,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":199688,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":195136,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":68,\"workclass\":\"Private\",\"fnlwgt\":99491,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":385077,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":241885,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":150533,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":68,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":33725,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":206354,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":125933,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1669,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":75,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":192813,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":188467,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":174503,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":544268,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":158294,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":60981,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":4,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":94477,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":347321,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"State-gov\",\"fnlwgt\":27037,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":130438,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":null,\"fnlwgt\":31478,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":141858,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":185385,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":235722,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":35890,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":99339,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":880,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":167728,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":190554,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":304857,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Separated\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":27828,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":162667,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Portugal\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":240063,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":97128,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":163003,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Other-relative\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":391585,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":175738,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":93225,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":267989,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"State-gov\",\"fnlwgt\":349365,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":132879,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":311249,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":199908,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Local-gov\",\"fnlwgt\":147921,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":177722,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":228570,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"State-gov\",\"fnlwgt\":82622,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":588484,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":246891,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Federal-gov\",\"fnlwgt\":142581,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":79,\"workclass\":\"Private\",\"fnlwgt\":172220,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Widowed\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":2964,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":130369,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":1151,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"Germany\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":375313,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":137606,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5013,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":211239,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":69,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":69209,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3818,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":206609,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":128378,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":137142,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":null,\"fnlwgt\":36635,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":null,\"fnlwgt\":97231,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":1,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":246439,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":236879,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":83922,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":30813,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":185195,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":339482,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":322674,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":167963,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":115989,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":33155,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":351278,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":189721,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":null,\"fnlwgt\":167651,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":680390,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":344920,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1617,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"State-gov\",\"fnlwgt\":186569,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":66095,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":186014,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":362883,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":91547,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Local-gov\",\"fnlwgt\":29174,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":183709,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":127384,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":227332,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":176286,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":101500,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":110954,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"El-Salvador\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":162572,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"State-gov\",\"fnlwgt\":69251,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"China\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Federal-gov\",\"fnlwgt\":122220,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":140863,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":78,\"workclass\":null,\"fnlwgt\":135839,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":1086,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":167106,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Other-relative\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Hong\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Federal-gov\",\"fnlwgt\":39606,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"England\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":34541,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":225053,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":76487,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":124852,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":238912,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":316000,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":157562,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":67,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":411007,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":15831,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":214242,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":126314,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"State-gov\",\"fnlwgt\":209317,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":237601,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":113198,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":28,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":111900,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":107231,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1672,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":35649,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":193042,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":327606,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":37215,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":207415,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":210464,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":159732,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":201175,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":101017,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":221172,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":103700,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":38232,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":157893,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":null,\"fnlwgt\":138507,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":339952,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":109015,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":103642,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":163434,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":412296,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Mexico\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":334744,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":268525,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":158286,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":443508,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Federal-gov\",\"fnlwgt\":57216,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":177858,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1876,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":83064,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":149652,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":231196,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":349368,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":256000,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":456236,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":32519,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"South\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":124020,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":262511,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"State-gov\",\"fnlwgt\":111363,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":75,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":315291,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":136204,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2824,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":177211,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":200471,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":73541,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":83,\"workclass\":\"Private\",\"fnlwgt\":195507,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":105592,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"State-gov\",\"fnlwgt\":381789,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2339,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":349148,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Federal-gov\",\"fnlwgt\":177595,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1579,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":179137,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":39,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":175958,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":105188,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":null,\"fnlwgt\":123147,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":194490,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":507875,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":184553,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Local-gov\",\"fnlwgt\":191777,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":null,\"fnlwgt\":202106,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":230329,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":331482,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":358837,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":241126,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":191364,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"France\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":29810,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"State-gov\",\"fnlwgt\":188900,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3325,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":null,\"fnlwgt\":71592,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":77146,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":220690,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":153312,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":105598,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":58,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":206051,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":296453,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"State-gov\",\"fnlwgt\":115932,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":133696,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":365986,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":278228,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":126104,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1980,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":154568,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"Vietnam\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"State-gov\",\"fnlwgt\":206051,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":185814,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":204515,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":449354,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":229236,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":207637,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":363087,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":186495,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":265266,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":186009,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":222596,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":200973,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":274690,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Federal-gov\",\"fnlwgt\":282830,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":80933,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":104509,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":240628,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":70,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":207938,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2377,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Federal-gov\",\"fnlwgt\":45891,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":167005,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Local-gov\",\"fnlwgt\":82783,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":380544,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":34862,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":146310,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":341835,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":226525,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"State-gov\",\"fnlwgt\":164922,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":167531,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":336984,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":17,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":389725,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":197114,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":347491,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1876,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":null,\"fnlwgt\":288419,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":314897,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":463194,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":72,\"workclass\":null,\"fnlwgt\":213255,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":166546,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":111283,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":70387,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":4386,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"India\",\"income_bracket\":\">50K\"},{\"age\":64,\"workclass\":null,\"fnlwgt\":169917,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":4,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":393360,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":167915,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":157614,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":43285,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":28765,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":241951,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":null,\"fnlwgt\":85815,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":210736,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Craft-repair\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"State-gov\",\"fnlwgt\":239705,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":182866,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":280927,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":119199,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":83315,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":187563,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":143098,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4064,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":190115,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":291968,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":86745,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":104045,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Federal-gov\",\"fnlwgt\":135028,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":119891,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1672,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":24763,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":6849,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":216479,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":344916,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":109428,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1740,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":34278,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":64,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":73986,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":46221,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":27828,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":352834,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":404421,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":195576,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4386,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":138285,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Iran\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":255927,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":175942,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1977,\"hours_per_week\":55,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":255582,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Federal-gov\",\"fnlwgt\":211596,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":116933,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":33,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":185497,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Federal-gov\",\"fnlwgt\":215891,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Local-gov\",\"fnlwgt\":169853,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":null,\"fnlwgt\":375313,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":153805,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":99679,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":204226,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":null,\"fnlwgt\":237078,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":195488,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":188505,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-AF-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":380614,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":96660,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":34,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":115932,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":236068,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":119411,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Local-gov\",\"fnlwgt\":100776,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":165881,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":499249,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":199240,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"England\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":241832,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":58654,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":105592,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":183973,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":377701,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":334522,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":167501,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":20051,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Local-gov\",\"fnlwgt\":176557,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":118551,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":288229,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Laos\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":218015,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"State-gov\",\"fnlwgt\":189728,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":305874,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":270276,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":128736,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":170983,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":344351,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":203828,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":139193,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1980,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":167967,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":200515,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":98752,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":137192,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"Private\",\"fnlwgt\":154035,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":189253,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":158924,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":60,\"workclass\":null,\"fnlwgt\":141221,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2163,\"hours_per_week\":25,\"native_country\":\"South\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":213620,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":33331,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":19395,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":33678,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":76,\"workclass\":null,\"fnlwgt\":79445,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":1173,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":286675,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":180477,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"State-gov\",\"fnlwgt\":311512,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":72,\"workclass\":\"Private\",\"fnlwgt\":497280,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":350624,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":225605,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":31603,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":202952,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Federal-gov\",\"fnlwgt\":88876,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":189924,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":455361,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":189238,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":4,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":126845,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":99335,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":177705,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":113511,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":238002,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":163594,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Local-gov\",\"fnlwgt\":192982,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":143030,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":164748,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":170287,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":209184,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":110594,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":34616,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":137658,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":38795,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":70,\"workclass\":\"Private\",\"fnlwgt\":77219,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":187513,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":115358,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":184986,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Local-gov\",\"fnlwgt\":241851,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4386,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":175515,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"State-gov\",\"fnlwgt\":144811,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":132191,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Local-gov\",\"fnlwgt\":55658,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":120074,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":122048,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":353219,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":259301,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":41,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":311495,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":183358,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":89652,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":4787,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":198346,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":156980,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":235894,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":167309,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":185399,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":47791,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":219130,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":150076,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":188571,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":168981,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":139347,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Local-gov\",\"fnlwgt\":244856,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":220789,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":387776,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":615367,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":154537,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":508548,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":229826,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":157262,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":132973,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":117605,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":316359,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Federal-gov\",\"fnlwgt\":40808,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":358975,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":\"Local-gov\",\"fnlwgt\":174486,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":20051,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Jamaica\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":195750,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":27,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":315877,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2001,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":293791,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":190350,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":201723,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":454915,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":207791,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":307767,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":134152,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":86373,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":191957,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":60313,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":286002,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Nicaragua\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Federal-gov\",\"fnlwgt\":325089,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":220362,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":84,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":124963,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Federal-gov\",\"fnlwgt\":211123,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":65876,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":252202,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"State-gov\",\"fnlwgt\":184659,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1485,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"State-gov\",\"fnlwgt\":175325,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":227931,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":224640,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":30497,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":33304,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":134768,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Germany\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":203488,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":256263,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":347166,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":13550,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":162322,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":181655,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2377,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":132633,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":71,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":38822,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":105808,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Widowed\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":119098,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":90,\"workclass\":null,\"fnlwgt\":39824,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":401,\"capital_loss\":0,\"hours_per_week\":4,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":140741,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":421561,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":133373,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":171467,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":283917,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":297906,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":358753,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":null,\"fnlwgt\":234542,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Federal-gov\",\"fnlwgt\":218542,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":549349,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":114544,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":115562,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":264526,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":169885,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":372838,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":58222,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":184687,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":166894,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":35092,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Local-gov\",\"fnlwgt\":169837,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":289909,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":101603,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":83444,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":281437,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":null,\"fnlwgt\":428584,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":3464,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":188432,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Local-gov\",\"fnlwgt\":412316,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":192924,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":73,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":102510,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":6418,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":353142,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Local-gov\",\"fnlwgt\":184678,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":114971,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Federal-gov\",\"fnlwgt\":299831,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":880,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":234901,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1977,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Local-gov\",\"fnlwgt\":281784,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1564,\"hours_per_week\":52,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":236242,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":110171,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Local-gov\",\"fnlwgt\":136986,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":327434,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":35406,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":280410,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":81232,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":49017,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":304602,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":98,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":291566,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":71,\"workclass\":\"Local-gov\",\"fnlwgt\":365996,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Widowed\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":168276,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":296999,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":279173,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":411273,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":124137,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2415,\"hours_per_week\":35,\"native_country\":\"Greece\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"State-gov\",\"fnlwgt\":256335,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Local-gov\",\"fnlwgt\":167544,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":13,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":209482,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"State-gov\",\"fnlwgt\":24264,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Federal-gov\",\"fnlwgt\":145401,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":73203,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":346341,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":148207,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":200295,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Federal-gov\",\"fnlwgt\":121012,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":189123,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1485,\"hours_per_week\":58,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":236379,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":303431,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":108431,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":173005,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Local-gov\",\"fnlwgt\":117109,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":27,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":29696,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":165804,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":194850,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":39484,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":192835,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":339324,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":182609,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Poland\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":35411,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Local-gov\",\"fnlwgt\":95855,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":31053,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":142443,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":162256,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":182467,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":200783,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":257295,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Other-relative\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2258,\"hours_per_week\":40,\"native_country\":\"South\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":593246,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":436107,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":184207,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":100669,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":196342,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":116927,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":376455,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":229272,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":412379,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":180418,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":106437,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":147258,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1974,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":195372,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":232421,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"State-gov\",\"fnlwgt\":29696,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":334999,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":176998,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":297759,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":281030,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":94,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Local-gov\",\"fnlwgt\":254817,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1340,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":55568,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":243313,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":320984,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":277112,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":187167,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Local-gov\",\"fnlwgt\":235894,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":308874,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Local-gov\",\"fnlwgt\":286101,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":74949,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":124111,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Federal-gov\",\"fnlwgt\":257124,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":69251,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":323713,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":130557,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":83196,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"State-gov\",\"fnlwgt\":145651,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1602,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":173593,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":231689,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":204752,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":116338,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":653,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Local-gov\",\"fnlwgt\":70655,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":90915,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":177277,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":null,\"fnlwgt\":161930,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1504,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":143003,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"India\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Federal-gov\",\"fnlwgt\":182714,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":204226,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":130126,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":33798,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":211880,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Local-gov\",\"fnlwgt\":575442,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":35295,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"State-gov\",\"fnlwgt\":38251,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":270887,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":359461,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":373469,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":162947,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":111394,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":291755,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Federal-gov\",\"fnlwgt\":410446,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":137707,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":103700,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":166416,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":47707,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":185503,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":122109,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":323,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":null,\"fnlwgt\":99888,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":207140,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":419721,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Japan\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":235379,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":105449,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":102270,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":795830,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":257933,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":169815,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":144556,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":null,\"fnlwgt\":200819,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":84,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":72338,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":204389,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":89040,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":47,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Local-gov\",\"fnlwgt\":190748,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":172046,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1977,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":173704,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"State-gov\",\"fnlwgt\":160402,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":255476,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":90046,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":172307,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":217530,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":114988,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":326624,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":100662,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Columbia\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":179088,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":226735,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Local-gov\",\"fnlwgt\":116286,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":65291,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":101146,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":4650,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":289106,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Separated\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":35034,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":21,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":193026,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":227236,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Local-gov\",\"fnlwgt\":280164,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":27669,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":28,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":202450,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":225024,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":187901,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2258,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":null,\"fnlwgt\":177273,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":101283,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":278391,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"Nicaragua\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"State-gov\",\"fnlwgt\":105728,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":28,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":211482,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":151910,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":122672,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Local-gov\",\"fnlwgt\":113253,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":204057,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Private\",\"fnlwgt\":172510,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":1848,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"Hungary\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":214689,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":138358,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":47,\"native_country\":\"Jamaica\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":100882,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":273803,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":null,\"fnlwgt\":299090,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"State-gov\",\"fnlwgt\":1033222,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"State-gov\",\"fnlwgt\":119421,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Local-gov\",\"fnlwgt\":157043,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":2202,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":211531,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":210736,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":383518,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":350783,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":355477,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":210736,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3103,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":234302,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":70,\"workclass\":\"Private\",\"fnlwgt\":262345,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":177181,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":386643,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":142158,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":42857,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":51264,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":220641,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":108907,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":291386,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":132130,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":115488,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":185647,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":33551,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":188246,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":269015,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Germany\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":66304,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Local-gov\",\"fnlwgt\":146181,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":81259,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":286261,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":126233,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":172822,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2824,\"hours_per_week\":76,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":184806,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Local-gov\",\"fnlwgt\":423605,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1848,\"hours_per_week\":40,\"native_country\":\"Nicaragua\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":269786,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Federal-gov\",\"fnlwgt\":328606,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Local-gov\",\"fnlwgt\":176059,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":334618,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"State-gov\",\"fnlwgt\":231166,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":60331,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":null,\"fnlwgt\":177902,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":128105,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":null,\"fnlwgt\":50171,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":120131,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":427686,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":null,\"fnlwgt\":221881,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":130021,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2829,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":387068,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":246207,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":40319,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Federal-gov\",\"fnlwgt\":188569,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":164441,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":257200,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":222539,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":225504,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":null,\"fnlwgt\":315728,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":2329,\"capital_loss\":0,\"hours_per_week\":75,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Local-gov\",\"fnlwgt\":52590,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":70,\"workclass\":\"Private\",\"fnlwgt\":94692,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":35633,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":187870,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2415,\"hours_per_week\":90,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":199713,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":73498,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":206948,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":148211,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3674,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":186294,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":129525,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"State-gov\",\"fnlwgt\":146908,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":176760,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":353195,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":73,\"workclass\":null,\"fnlwgt\":200878,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":145714,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Local-gov\",\"fnlwgt\":289039,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":254907,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":99452,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":234640,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":181943,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":169324,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Local-gov\",\"fnlwgt\":163998,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Federal-gov\",\"fnlwgt\":112847,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":null,\"fnlwgt\":273569,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":68,\"workclass\":\"Private\",\"fnlwgt\":171933,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":177675,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":193026,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":185410,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":110028,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":138022,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":289886,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Vietnam\",\"income_bracket\":\"<=50K\"},{\"age\":68,\"workclass\":\"Private\",\"fnlwgt\":156000,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":182541,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":109009,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":375134,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"State-gov\",\"fnlwgt\":224474,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":110554,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":299197,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":68729,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"State-gov\",\"fnlwgt\":173780,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":194636,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Private\",\"fnlwgt\":264188,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":110844,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":27,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":259583,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":209609,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":110151,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":125933,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Federal-gov\",\"fnlwgt\":191858,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":307468,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":29,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":null,\"fnlwgt\":371827,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Portugal\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":147314,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":230824,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"State-gov\",\"fnlwgt\":199326,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":171080,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":210525,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":174924,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"Germany\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":112763,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":8614,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":42696,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":213226,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Iran\",\"income_bracket\":\">50K\"},{\"age\":68,\"workclass\":\"Private\",\"fnlwgt\":351711,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":null,\"fnlwgt\":138744,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":null,\"fnlwgt\":162108,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":107793,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":198769,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":68,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":89011,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":71,\"workclass\":\"Private\",\"fnlwgt\":78277,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":406811,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":248612,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":175761,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":29437,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":119215,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":217120,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":null,\"fnlwgt\":212759,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":6767,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":109917,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":348430,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Portugal\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":241626,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Local-gov\",\"fnlwgt\":216824,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":325596,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":168071,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":null,\"fnlwgt\":170653,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":208946,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":163725,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":186720,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":182823,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Federal-gov\",\"fnlwgt\":283918,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":97490,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":391114,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":188767,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":153588,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":174865,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":203776,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":296066,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Local-gov\",\"fnlwgt\":230420,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":136081,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":53407,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":403187,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Local-gov\",\"fnlwgt\":196308,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":null,\"fnlwgt\":139391,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":211032,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":118693,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":231714,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":140830,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":124793,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":112271,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":212407,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":125856,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":93213,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":62,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":242713,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":98389,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":173858,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"India\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":222646,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Cuba\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":289636,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Local-gov\",\"fnlwgt\":233734,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":66173,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":41762,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"South\",\"income_bracket\":\">50K\"},{\"age\":65,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":172684,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"Mexico\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":74054,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":297847,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":2001,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":373469,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":37821,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":164197,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Local-gov\",\"fnlwgt\":158688,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":172333,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":192835,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":150975,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":274158,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":176293,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":416577,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":2829,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":213611,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1594,\"hours_per_week\":24,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":117251,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":254989,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":61178,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Federal-gov\",\"fnlwgt\":240628,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":2354,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":222205,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":184659,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":388672,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":127809,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":218785,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":null,\"fnlwgt\":320084,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":462838,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":210381,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":246011,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":204415,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":79,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":103684,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":106780,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":401723,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":194897,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":6849,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":256647,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"State-gov\",\"fnlwgt\":71592,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":208043,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":365986,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":null,\"fnlwgt\":45643,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":197967,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":72,\"workclass\":null,\"fnlwgt\":173427,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Cuba\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":213019,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":212798,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":210013,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":182217,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":264593,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":66473,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":109705,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":194096,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":200374,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":225507,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":361341,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"Thailand\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":187073,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":53109,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":362623,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":195835,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":59083,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":268598,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":null,\"fnlwgt\":204577,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":148291,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":null,\"fnlwgt\":376277,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":90,\"workclass\":\"Private\",\"fnlwgt\":226968,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Local-gov\",\"fnlwgt\":180805,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"State-gov\",\"fnlwgt\":77723,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Local-gov\",\"fnlwgt\":44566,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":256522,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":35576,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2415,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":70,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":124449,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2246,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":199596,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":349689,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":230329,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Canada\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":275884,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":358886,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2407,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":230684,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":null,\"fnlwgt\":216256,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3464,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":104235,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Local-gov\",\"fnlwgt\":84119,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":224566,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1669,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":137527,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":423711,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":327964,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":114678,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":308861,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Local-gov\",\"fnlwgt\":33863,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":209057,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":354573,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":165930,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":136448,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":63814,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":18,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Federal-gov\",\"fnlwgt\":110188,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Vietnam\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":210424,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":914,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":167149,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":190836,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":224506,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Federal-gov\",\"fnlwgt\":208534,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":320811,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":216214,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":207578,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":91689,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":232799,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":185330,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":null,\"fnlwgt\":193047,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":113995,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":70055,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":105813,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":178841,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":384276,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":205581,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":198870,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":221936,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":73585,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Local-gov\",\"fnlwgt\":28375,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":121362,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":2258,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":58,\"workclass\":\"Local-gov\",\"fnlwgt\":368797,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Widowed\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":128796,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":null,\"fnlwgt\":346762,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":84,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":164190,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":392167,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":64960,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":68,\"workclass\":\"Federal-gov\",\"fnlwgt\":232151,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":2346,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":226535,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":180339,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1602,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":277488,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":84,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":73,\"workclass\":\"Local-gov\",\"fnlwgt\":232871,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2228,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"State-gov\",\"fnlwgt\":150755,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5013,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":67234,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"State-gov\",\"fnlwgt\":123592,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":3887,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":228243,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":231180,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":162130,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":67,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":150080,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":193741,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":155509,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"Trinadad&Tobago\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"State-gov\",\"fnlwgt\":188386,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":378045,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":99131,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":196116,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":2174,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":222216,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Local-gov\",\"fnlwgt\":110490,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":276096,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":103389,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":169699,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Local-gov\",\"fnlwgt\":250135,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":197752,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":38353,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":null,\"fnlwgt\":55621,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":54611,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"State-gov\",\"fnlwgt\":103179,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":146091,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":194426,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":361280,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"China\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":221452,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":49092,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":115176,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Local-gov\",\"fnlwgt\":249101,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":163108,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":149531,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":251836,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":184424,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Federal-gov\",\"fnlwgt\":371373,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":193116,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":87,\"workclass\":null,\"fnlwgt\":90338,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":2,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":257416,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Local-gov\",\"fnlwgt\":164518,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":275181,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"Cuba\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":126771,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":7,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":185061,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":276540,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"State-gov\",\"fnlwgt\":206927,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":136997,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":182140,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":29662,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":401104,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":146440,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1740,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":305053,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2051,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Federal-gov\",\"fnlwgt\":68330,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Local-gov\",\"fnlwgt\":54377,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":69251,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":211751,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":134367,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1977,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":227158,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":153312,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Local-gov\",\"fnlwgt\":91711,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":308205,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":19847,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":278155,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":369114,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Local-gov\",\"fnlwgt\":161240,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":36228,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":263836,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":230168,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":91,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":79682,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":217030,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":105779,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":312372,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":186035,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":150262,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":208946,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":30529,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Local-gov\",\"fnlwgt\":206609,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":239708,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":null,\"fnlwgt\":257659,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":3,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":32365,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Local-gov\",\"fnlwgt\":204470,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":414525,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":253006,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Without-pay\",\"fnlwgt\":302347,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4416,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":214413,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":null,\"fnlwgt\":99399,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":419732,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":197997,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":197462,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":33939,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":187847,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":111058,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":243380,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":291951,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":113390,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1740,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":156819,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":null,\"fnlwgt\":153131,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":202373,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":331776,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":156728,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":76,\"workclass\":\"Local-gov\",\"fnlwgt\":169133,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":201204,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":121038,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":205004,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":26,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":182668,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":212918,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":326297,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":116986,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":null,\"fnlwgt\":291374,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":215944,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":129865,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":151364,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":388725,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":200246,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":228395,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":20511,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"State-gov\",\"fnlwgt\":89040,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":161087,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"Jamaica\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":93235,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1721,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Federal-gov\",\"fnlwgt\":56063,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":236804,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":28729,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":192923,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2377,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":27997,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":73,\"workclass\":\"Private\",\"fnlwgt\":247355,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":222115,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":223352,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":1055,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":167147,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":48520,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2002,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":394669,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1741,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":375655,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"State-gov\",\"fnlwgt\":127085,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":98077,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":182314,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Local-gov\",\"fnlwgt\":101833,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":161708,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":247294,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":29814,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Federal-gov\",\"fnlwgt\":408229,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":193524,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1485,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":50163,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":187392,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":259643,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4650,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":246595,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":268553,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":134854,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":243923,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":213654,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Local-gov\",\"fnlwgt\":118600,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":625,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":null,\"fnlwgt\":110150,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Federal-gov\",\"fnlwgt\":108183,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"South\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":233711,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":245661,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":213719,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":65481,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Local-gov\",\"fnlwgt\":193249,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":355978,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":98948,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":195124,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":306495,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":130356,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":169662,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":104232,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":215479,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":549430,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"State-gov\",\"fnlwgt\":39478,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":54,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":50837,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":214129,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":83704,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":null,\"fnlwgt\":203821,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":37072,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Local-gov\",\"fnlwgt\":127943,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":326400,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":213354,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":96219,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":101709,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":32406,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":244689,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Federal-gov\",\"fnlwgt\":110622,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":155574,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":61838,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":231141,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2829,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":182975,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":150463,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Unmarried\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":207940,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":91525,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":241998,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":5,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":254285,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":358199,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":199856,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Local-gov\",\"fnlwgt\":174684,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Federal-gov\",\"fnlwgt\":221943,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":9386,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Local-gov\",\"fnlwgt\":101119,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":null,\"fnlwgt\":31008,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":145886,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":42401,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":47,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":235197,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":180656,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":361497,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":70,\"workclass\":null,\"fnlwgt\":207627,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2228,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":null,\"fnlwgt\":99127,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":238959,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":179534,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Widowed\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"State-gov\",\"fnlwgt\":29276,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":243373,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":1055,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":145419,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":67,\"native_country\":\"Italy\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":216129,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1408,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":191765,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Federal-gov\",\"fnlwgt\":97837,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Federal-gov\",\"fnlwgt\":221532,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"State-gov\",\"fnlwgt\":102343,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"India\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Local-gov\",\"fnlwgt\":321851,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Federal-gov\",\"fnlwgt\":172571,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":207668,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":54,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":248919,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":null,\"fnlwgt\":584259,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":2,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":122493,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":212864,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":181307,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":207213,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Local-gov\",\"fnlwgt\":107233,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"State-gov\",\"fnlwgt\":89508,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":\"Private\",\"fnlwgt\":66008,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"England\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":511361,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":35166,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":90,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":189186,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":355320,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"State-gov\",\"fnlwgt\":312897,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"England\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":289669,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":2547,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":33798,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":221762,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":121836,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":120359,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":124563,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":65738,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":214061,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":218490,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":27828,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":143342,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Local-gov\",\"fnlwgt\":167261,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":135645,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":181755,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":25826,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":47,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":153141,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":186035,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":374524,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":231931,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":71195,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":245918,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":70720,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":27828,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":210013,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":348416,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"State-gov\",\"fnlwgt\":337766,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":381789,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":228500,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":165235,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Thailand\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":179013,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":256620,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":252168,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":180985,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Local-gov\",\"fnlwgt\":359259,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":193061,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":220696,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Federal-gov\",\"fnlwgt\":177945,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Local-gov\",\"fnlwgt\":223433,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":53,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":293091,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"State-gov\",\"fnlwgt\":134782,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":170108,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":318259,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":241885,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":30840,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":174051,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":90582,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":380674,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":52,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":170070,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":90291,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":316929,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":223267,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":80933,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"State-gov\",\"fnlwgt\":122011,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":263498,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":137898,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":129173,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":220776,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":249956,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":374790,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":120970,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":162651,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Columbia\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":112031,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Federal-gov\",\"fnlwgt\":193246,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":80574,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":224947,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":182162,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":76,\"workclass\":\"Local-gov\",\"fnlwgt\":259612,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":375313,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":271714,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":339473,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Local-gov\",\"fnlwgt\":293809,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"State-gov\",\"fnlwgt\":423222,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":99999,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":243743,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":369678,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Federal-gov\",\"fnlwgt\":214838,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":176814,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Local-gov\",\"fnlwgt\":318921,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":126675,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":215247,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":150441,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":260696,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":250182,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"State-gov\",\"fnlwgt\":272944,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":102096,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":293690,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":58,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":309098,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Local-gov\",\"fnlwgt\":92431,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2231,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":93930,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":126071,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":164529,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":224241,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":null,\"fnlwgt\":280134,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":70240,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":211184,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":170846,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":77,\"workclass\":\"Private\",\"fnlwgt\":149912,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":268051,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":197988,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":120629,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":325538,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":64922,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":159788,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":192973,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Local-gov\",\"fnlwgt\":287920,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":35330,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":50483,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":129263,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":66755,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Other\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":141363,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":194908,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":309055,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":144182,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":23,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":174120,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":36467,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":155434,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":184135,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":1,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":142233,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":109952,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":160246,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":77143,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Separated\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Local-gov\",\"fnlwgt\":88904,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":194698,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":96798,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":250135,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":149184,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":60,\"workclass\":null,\"fnlwgt\":116961,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":34744,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":410450,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"England\",\"income_bracket\":\">50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":113440,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":101352,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":191893,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":183523,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":171199,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":122442,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Local-gov\",\"fnlwgt\":117496,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":174626,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":419134,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":238068,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":186733,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":105444,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":151626,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Local-gov\",\"fnlwgt\":201495,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":61272,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":108913,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":266084,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":137814,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Local-gov\",\"fnlwgt\":300681,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":204756,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":28035,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":86,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":139193,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":175622,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":226696,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":604537,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":89400,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Federal-gov\",\"fnlwgt\":141459,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":154374,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":24712,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":216657,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":124187,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Private\",\"fnlwgt\":80174,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":1848,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":168601,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Local-gov\",\"fnlwgt\":129232,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":37237,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":179666,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":63899,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":151386,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Jamaica\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":35236,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":343440,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":353994,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Other-relative\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"China\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":206351,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":306567,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":79797,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Japan\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"State-gov\",\"fnlwgt\":154432,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":144460,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":260954,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2042,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":97165,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":32954,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":116385,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":null,\"fnlwgt\":89870,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":355918,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":70,\"workclass\":null,\"fnlwgt\":172652,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":165815,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":178749,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":278188,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":74,\"workclass\":null,\"fnlwgt\":95825,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":3,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":71,\"workclass\":\"Private\",\"fnlwgt\":77253,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":17,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":220789,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":182643,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":9,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":108468,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":259840,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":70919,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Local-gov\",\"fnlwgt\":199172,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":197860,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":227778,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Local-gov\",\"fnlwgt\":170092,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":null,\"fnlwgt\":166545,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":277034,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Local-gov\",\"fnlwgt\":202872,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":73895,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":52636,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":227890,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":257980,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":227128,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":158294,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3103,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":29582,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":48935,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":80638,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":84,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":55,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":141807,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":232308,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":29599,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":198813,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Local-gov\",\"fnlwgt\":66118,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":190290,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":70,\"workclass\":\"Private\",\"fnlwgt\":89787,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Federal-gov\",\"fnlwgt\":185885,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":142444,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Local-gov\",\"fnlwgt\":124692,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":101626,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Local-gov\",\"fnlwgt\":212685,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":305147,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":null,\"fnlwgt\":182771,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":163494,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":182416,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Local-gov\",\"fnlwgt\":163965,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":51255,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":155106,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":121124,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":183168,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":206399,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":145784,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":132705,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":147951,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":1,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":244665,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":82488,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":\"Private\",\"fnlwgt\":294009,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":140886,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":541343,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":99179,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":null,\"fnlwgt\":242001,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":77774,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":34,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":219266,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":66,\"workclass\":\"Private\",\"fnlwgt\":127139,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":253914,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":283635,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":126613,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":241025,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":18,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":341638,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Local-gov\",\"fnlwgt\":72338,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":54,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"State-gov\",\"fnlwgt\":340091,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":124520,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":302122,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Federal-gov\",\"fnlwgt\":192150,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":54317,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":35373,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":356823,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":10520,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":null,\"fnlwgt\":41356,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":157617,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Poland\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Federal-gov\",\"fnlwgt\":125796,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":98010,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Private\",\"fnlwgt\":213477,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":28,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":278632,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":176732,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":189225,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":212894,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2407,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":172281,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":106406,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":100563,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":72887,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":1,\"native_country\":\"Vietnam\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":60940,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":8614,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"France\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Federal-gov\",\"fnlwgt\":36186,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":261023,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1651,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":455361,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":357540,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2002,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":331395,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":213615,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":301199,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":136836,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":68,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":336329,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":87054,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Local-gov\",\"fnlwgt\":254127,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":188540,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":116230,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":313729,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":416577,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":152933,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":null,\"fnlwgt\":150516,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":3,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":113203,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":598606,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Separated\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":117585,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1485,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":87891,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":401333,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":109856,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":391192,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":140363,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3325,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":155664,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":331395,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":156897,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2258,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":75,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":205860,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1735,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":265192,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":null,\"fnlwgt\":39901,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Federal-gov\",\"fnlwgt\":20795,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":192779,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":223515,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":191712,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1741,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Federal-gov\",\"fnlwgt\":23789,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":143771,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":76,\"workclass\":\"Private\",\"fnlwgt\":97077,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":72310,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":43,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":null,\"fnlwgt\":296613,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":65,\"workclass\":\"Private\",\"fnlwgt\":174603,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Widowed\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":270551,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":182541,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":119177,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":176335,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":109133,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Portugal\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Federal-gov\",\"fnlwgt\":76008,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":177119,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":null,\"fnlwgt\":114362,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":437727,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":63861,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":105838,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":\"Local-gov\",\"fnlwgt\":144723,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":202662,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":null,\"fnlwgt\":78181,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":200360,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":103596,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":99,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":155976,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":114874,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"State-gov\",\"fnlwgt\":101094,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":227146,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":159603,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":193949,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":183155,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":106698,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":342642,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":721161,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":null,\"fnlwgt\":335453,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":257277,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":106143,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":20051,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":106085,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1721,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":190290,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":41610,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":160815,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":116489,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":171550,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":209538,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":290286,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Federal-gov\",\"fnlwgt\":190333,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":143932,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":102938,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Vietnam\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":25139,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":173495,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":255424,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":154076,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":149640,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":443546,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":190636,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1485,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":243142,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":142038,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":237432,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":323706,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":34788,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":49156,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":201924,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":34973,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":133515,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"France\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":301862,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":180532,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":39581,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":172571,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1848,\"hours_per_week\":54,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":343742,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":138847,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":378322,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":143800,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":67,\"workclass\":null,\"fnlwgt\":63552,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":485496,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":279636,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":170114,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1672,\"hours_per_week\":84,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":34747,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":237833,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":200652,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":170244,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":286989,\"education\":\"Preschool\",\"education_num\":1,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":45366,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":257780,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Private\",\"fnlwgt\":127315,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":319122,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Local-gov\",\"fnlwgt\":144778,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":181896,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":159589,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":85,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":325971,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":38,\"workclass\":\"Federal-gov\",\"fnlwgt\":47707,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":123170,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Local-gov\",\"fnlwgt\":159908,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1258,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":123211,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":44,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":344492,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":26,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":187089,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":431745,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":14,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":96779,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":218188,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":245199,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Local-gov\",\"fnlwgt\":240979,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":180303,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":47,\"native_country\":\"Iran\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":251396,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"Canada\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Local-gov\",\"fnlwgt\":205570,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Local-gov\",\"fnlwgt\":188909,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":117381,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":23892,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":373366,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3781,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":175127,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Federal-gov\",\"fnlwgt\":247043,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":76773,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":124963,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":396790,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":277314,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1902,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":110015,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"Greece\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":259352,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":68898,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Federal-gov\",\"fnlwgt\":170230,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":14084,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":170086,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":185397,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":260560,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":184784,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":95244,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":105010,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":226902,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":39665,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":196125,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Local-gov\",\"fnlwgt\":248595,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"State-gov\",\"fnlwgt\":112139,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":279156,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":124827,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":69311,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":197583,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":30751,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":322674,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":null,\"fnlwgt\":126797,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-spouse-absent\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":139743,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":252752,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":156033,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Local-gov\",\"fnlwgt\":48542,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"State-gov\",\"fnlwgt\":186934,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":194940,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":22418,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":203797,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":199883,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":null,\"fnlwgt\":168223,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":42959,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":151888,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":342567,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":160614,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":63,\"workclass\":null,\"fnlwgt\":126540,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":5,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":247006,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":337766,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":191277,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":115839,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":69,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":69306,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":98637,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"State-gov\",\"fnlwgt\":20057,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":87556,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":108435,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2829,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":180599,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":34446,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Local-gov\",\"fnlwgt\":114719,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Local-gov\",\"fnlwgt\":47392,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":302847,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":54,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":261943,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Honduras\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":86701,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":178421,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":101198,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":205100,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"Germany\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Local-gov\",\"fnlwgt\":206609,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":64479,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":47,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":187440,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":399087,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":223019,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":189468,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":64922,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"England\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":229394,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":114844,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1876,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":43646,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":200187,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":378723,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":179717,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1564,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":35824,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":374588,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":101320,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":195994,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":340543,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":169631,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":195118,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":226181,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":126730,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":648223,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":244773,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":258550,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":487330,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":null,\"fnlwgt\":86143,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":29444,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":153588,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":198270,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":367984,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":127149,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":256362,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"State-gov\",\"fnlwgt\":137421,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"Hong\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":102420,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"South\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":165186,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":256636,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":190539,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1590,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":null,\"fnlwgt\":170320,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":41526,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Canada\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":270889,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":177027,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":52,\"native_country\":\"Japan\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":129767,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1721,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":null,\"fnlwgt\":353881,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3103,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":181580,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":null,\"fnlwgt\":196388,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":96862,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":266707,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2179,\"hours_per_week\":18,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"State-gov\",\"fnlwgt\":334273,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":null,\"fnlwgt\":176458,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":28,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":223999,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1848,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":132636,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Local-gov\",\"fnlwgt\":261319,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Local-gov\",\"fnlwgt\":365430,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":5178,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":275703,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"Private\",\"fnlwgt\":174693,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"Nicaragua\",\"income_bracket\":\"<=50K\"},{\"age\":69,\"workclass\":null,\"fnlwgt\":180187,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":239415,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":155293,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":421633,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":111567,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":null,\"fnlwgt\":35523,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":304169,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":180052,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":24108,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":180656,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":420054,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Italy\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":125525,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":84,\"workclass\":\"Private\",\"fnlwgt\":241065,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":66,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":169527,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":4386,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":\"Federal-gov\",\"fnlwgt\":38621,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":3273,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":77313,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":167415,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":215591,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":49,\"workclass\":\"Local-gov\",\"fnlwgt\":123088,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"State-gov\",\"fnlwgt\":222884,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":342448,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":318036,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":56582,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":219483,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":null,\"fnlwgt\":190324,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":18,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":175266,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":160943,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":182028,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":224799,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":155320,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":175183,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Federal-gov\",\"fnlwgt\":101338,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Local-gov\",\"fnlwgt\":143865,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":179668,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":304530,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":151627,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":189838,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Local-gov\",\"fnlwgt\":117496,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":128876,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":188008,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":76,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":237624,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":117963,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":251579,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":14,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":295308,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":184756,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":136721,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"State-gov\",\"fnlwgt\":478457,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":154227,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":243432,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":221947,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1887,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":69019,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":309056,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":127686,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":336643,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":230113,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":239404,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":201328,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":213019,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":112115,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":179010,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":189027,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":357348,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":343789,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":227832,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Private\",\"fnlwgt\":205934,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":71772,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":216237,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":210959,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":228320,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":114158,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3325,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"State-gov\",\"fnlwgt\":77146,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":302097,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3464,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":269444,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":72896,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":167476,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":301654,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":75,\"workclass\":null,\"fnlwgt\":173064,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Federal-gov\",\"fnlwgt\":102308,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":154210,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":2829,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"China\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":300777,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":169611,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":132222,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Federal-gov\",\"fnlwgt\":196348,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":54229,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":196791,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":92178,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":66,\"workclass\":null,\"fnlwgt\":270460,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":462869,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":196308,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":77820,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":462966,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":56248,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2415,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":34975,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":36270,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1977,\"hours_per_week\":65,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":192712,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":215990,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":266945,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3137,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Local-gov\",\"fnlwgt\":305597,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Federal-gov\",\"fnlwgt\":190174,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":300528,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":74,\"workclass\":\"Private\",\"fnlwgt\":161387,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":163002,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":178623,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"Trinadad&Tobago\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":343721,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":215495,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"State-gov\",\"fnlwgt\":456110,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Divorced\",\"occupation\":\"Transport-moving\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":52,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Federal-gov\",\"fnlwgt\":130749,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":176486,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":95654,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Local-gov\",\"fnlwgt\":668319,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1740,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":308144,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":33884,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":131117,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"Columbia\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":164920,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":85088,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":148015,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Local-gov\",\"fnlwgt\":108083,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":42,\"workclass\":\"State-gov\",\"fnlwgt\":74334,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":53197,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":320451,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Protective-serv\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"India\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Federal-gov\",\"fnlwgt\":91716,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":140558,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Federal-gov\",\"fnlwgt\":170915,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":4865,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":172571,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":482732,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":32552,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":4,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":209317,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":117779,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Transport-moving\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":64292,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":188925,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":null,\"fnlwgt\":291547,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"Other\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":6,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":198211,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":216010,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":91839,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":114691,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":39369,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":122272,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":89922,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3103,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":32921,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":212235,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":253354,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"State-gov\",\"fnlwgt\":33142,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":\"State-gov\",\"fnlwgt\":156294,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":183319,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":68,\"workclass\":null,\"fnlwgt\":140282,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":181087,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":96226,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":99925,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":252058,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":186452,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":183611,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"Germany\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":308136,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":160440,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":42,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"State-gov\",\"fnlwgt\":105943,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3908,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":92845,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":279914,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":236861,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":255934,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":80,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":155469,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Widowed\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":209146,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":28568,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":null,\"fnlwgt\":72886,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":202673,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":233802,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":208826,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":211046,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":2463,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":71009,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":113481,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":317360,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"State-gov\",\"fnlwgt\":132819,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":41,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":106437,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":265116,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":223133,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Federal-gov\",\"fnlwgt\":203836,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Local-gov\",\"fnlwgt\":190020,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":124507,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":178948,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":156687,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"India\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":172891,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":162094,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":103323,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2829,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":480717,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":183066,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Federal-gov\",\"fnlwgt\":113688,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":131899,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":90758,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":64,\"workclass\":\"Federal-gov\",\"fnlwgt\":341695,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":98283,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1564,\"hours_per_week\":40,\"native_country\":\"India\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":156874,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":27,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"State-gov\",\"fnlwgt\":199450,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":557082,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":38,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":229009,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":308945,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":112262,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":234664,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":null,\"fnlwgt\":37215,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":194710,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Private\",\"fnlwgt\":24344,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":285432,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":202322,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":\"Private\",\"fnlwgt\":159796,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":84298,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":106758,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":182200,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":311795,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":175804,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":390817,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":222490,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":219591,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":166961,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":53,\"workclass\":\"State-gov\",\"fnlwgt\":195922,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":59948,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":114,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":162381,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":61,\"workclass\":\"Private\",\"fnlwgt\":73809,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":150560,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":14084,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":64940,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":60,\"workclass\":\"Federal-gov\",\"fnlwgt\":129379,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":96824,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":151001,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":3464,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":27444,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":171176,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":306967,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":196899,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Haiti\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":306405,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":51,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":162943,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":218184,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Jamaica\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":192712,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":26,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":163189,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":169184,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":23324,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":54782,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":19,\"workclass\":null,\"fnlwgt\":220517,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":149507,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":182074,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":37438,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":121308,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":96483,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"South\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":205949,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Craft-repair\",\"relationship\":\"Unmarried\",\"race\":\"Amer-Indian-Eskimo\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":116789,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":184883,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":50,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":42402,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2415,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":67136,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Separated\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":303942,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":43387,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"England\",\"income_bracket\":\">50K\"},{\"age\":21,\"workclass\":null,\"fnlwgt\":121694,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":37783,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":227689,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":64,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":121712,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":null,\"fnlwgt\":166759,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":33126,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Private\",\"fnlwgt\":196482,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":37939,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":54,\"workclass\":\"Private\",\"fnlwgt\":53833,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":188557,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":80,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":34340,\"education\":\"7th-8th\",\"education_num\":4,\"marital_status\":\"Widowed\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":257068,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Transport-moving\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":37,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":227146,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":176178,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":56,\"workclass\":\"Private\",\"fnlwgt\":56331,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":32,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":259425,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":234271,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Private\",\"fnlwgt\":324601,\"education\":\"1st-4th\",\"education_num\":2,\"marital_status\":\"Separated\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":73,\"workclass\":\"Private\",\"fnlwgt\":139978,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":154297,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"State-gov\",\"fnlwgt\":208785,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":10520,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":81,\"workclass\":\"Private\",\"fnlwgt\":122651,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"State-gov\",\"fnlwgt\":197558,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":141795,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":170166,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":43,\"workclass\":\"Private\",\"fnlwgt\":403467,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":7688,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":39054,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"State-gov\",\"fnlwgt\":214542,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":74,\"workclass\":\"Private\",\"fnlwgt\":192290,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":256723,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":31360,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":null,\"fnlwgt\":981628,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":214858,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":283921,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Transport-moving\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":148171,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":140664,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":110164,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":343476,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Japan\",\"income_bracket\":\">50K\"},{\"age\":34,\"workclass\":\"Private\",\"fnlwgt\":178615,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Private\",\"fnlwgt\":306666,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":227778,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":56,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":157332,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Local-gov\",\"fnlwgt\":251521,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":394927,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":18,\"workclass\":\"Private\",\"fnlwgt\":478380,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":137591,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":171676,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1741,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Private\",\"fnlwgt\":176341,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"India\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":140001,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"El-Salvador\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":42596,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":240398,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":46,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":201865,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":165360,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":21174,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":26,\"workclass\":\"Private\",\"fnlwgt\":59306,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"Private\",\"fnlwgt\":606752,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":205939,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2202,\"capital_loss\":0,\"hours_per_week\":4,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":67,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":116057,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":3273,\"capital_loss\":0,\"hours_per_week\":16,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":171133,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":202344,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":57,\"workclass\":\"Private\",\"fnlwgt\":73051,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":56322,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2176,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Federal-gov\",\"fnlwgt\":388594,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":31,\"workclass\":\"Private\",\"fnlwgt\":302626,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":34,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":80249,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":72,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":47,\"workclass\":\"State-gov\",\"fnlwgt\":120429,\"education\":\"Doctorate\",\"education_num\":16,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":57,\"workclass\":null,\"fnlwgt\":155259,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":null,\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":338409,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Cuba\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":195462,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":98,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":205249,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Japan\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":245297,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":75,\"workclass\":\"Private\",\"fnlwgt\":101887,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Widowed\",\"occupation\":\"Priv-house-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":70,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":27,\"workclass\":\"Private\",\"fnlwgt\":192384,\"education\":\"Prof-school\",\"education_num\":15,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":200089,\"education\":\"5th-6th\",\"education_num\":3,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"Guatemala\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Private\",\"fnlwgt\":410439,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":15,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":318416,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Separated\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":12,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Federal-gov\",\"fnlwgt\":287658,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":61,\"workclass\":null,\"fnlwgt\":116230,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":41,\"workclass\":\"Federal-gov\",\"fnlwgt\":106982,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Federal-gov\",\"fnlwgt\":110457,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Federal-gov\",\"fnlwgt\":399155,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":32,\"workclass\":\"Private\",\"fnlwgt\":168981,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"State-gov\",\"fnlwgt\":223020,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":307315,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":30,\"workclass\":\"Private\",\"fnlwgt\":112650,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Craft-repair\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":62,\"workclass\":\"Private\",\"fnlwgt\":41718,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":243425,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Peru\",\"income_bracket\":\"<=50K\"},{\"age\":22,\"workclass\":\"Private\",\"fnlwgt\":175374,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Other-service\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":24,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":38,\"workclass\":\"Private\",\"fnlwgt\":95654,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Private\",\"fnlwgt\":187601,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Widowed\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":256062,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"Puerto-Rico\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":293398,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Separated\",\"occupation\":\"Sales\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Private\",\"fnlwgt\":136951,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Philippines\",\"income_bracket\":\"<=50K\"},{\"age\":25,\"workclass\":\"Local-gov\",\"fnlwgt\":206002,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Tech-support\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":179824,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":36,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":199326,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":null,\"fnlwgt\":163911,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":null,\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":162945,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":2377,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":29,\"workclass\":\"Private\",\"fnlwgt\":87905,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":10520,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":199763,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":8,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":20,\"workclass\":\"Private\",\"fnlwgt\":279538,\"education\":\"11th\",\"education_num\":7,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":2961,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":21,\"workclass\":\"Private\",\"fnlwgt\":221955,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Machine-op-inspct\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Mexico\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"State-gov\",\"fnlwgt\":179488,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":55,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":35,\"workclass\":\"Private\",\"fnlwgt\":22463,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":35,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":278632,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":41,\"workclass\":\"Private\",\"fnlwgt\":169104,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":null,\"income_bracket\":\">50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":120277,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":15024,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"Italy\",\"income_bracket\":\">50K\"},{\"age\":52,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":217210,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Other-relative\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":23,\"workclass\":\"Private\",\"fnlwgt\":409230,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":52,\"workclass\":\"Without-pay\",\"fnlwgt\":198262,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":53,\"workclass\":\"Private\",\"fnlwgt\":96062,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":1740,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":59,\"workclass\":\"Local-gov\",\"fnlwgt\":114401,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":1504,\"hours_per_week\":19,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":120475,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":44,\"workclass\":\"Private\",\"fnlwgt\":106900,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":68,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":55,\"workclass\":\"Private\",\"fnlwgt\":227856,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":7298,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":37,\"workclass\":\"Private\",\"fnlwgt\":155064,\"education\":\"Assoc-voc\",\"education_num\":11,\"marital_status\":\"Divorced\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":251323,\"education\":\"9th\",\"education_num\":5,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"Cuba\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":213821,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Never-married\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":65,\"workclass\":null,\"fnlwgt\":293385,\"education\":\"Preschool\",\"education_num\":1,\"marital_status\":\"Married-civ-spouse\",\"occupation\":null,\"relationship\":\"Husband\",\"race\":\"Black\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":30,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":201495,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Protective-serv\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":319854,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Separated\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":4650,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"State-gov\",\"fnlwgt\":73211,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Husband\",\"race\":\"Asian-Pac-Islander\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":20,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":65535,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Farming-fishing\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":39,\"workclass\":\"Private\",\"fnlwgt\":34028,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":48,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":\"Private\",\"fnlwgt\":39986,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Handlers-cleaners\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":33,\"workclass\":\"Private\",\"fnlwgt\":141490,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Wife\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":17,\"workclass\":\"Private\",\"fnlwgt\":24090,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":35,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":24,\"workclass\":\"Federal-gov\",\"fnlwgt\":312017,\"education\":\"Some-college\",\"education_num\":10,\"marital_status\":\"Never-married\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Own-child\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":58,\"workclass\":\"Federal-gov\",\"fnlwgt\":298643,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Divorced\",\"occupation\":\"Adm-clerical\",\"relationship\":\"Unmarried\",\"race\":\"Black\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":77247,\"education\":\"12th\",\"education_num\":8,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Craft-repair\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":50,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":50,\"workclass\":\"Private\",\"fnlwgt\":196193,\"education\":\"Masters\",\"education_num\":14,\"marital_status\":\"Married-spouse-absent\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Other-relative\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":null,\"income_bracket\":\"<=50K\"},{\"age\":49,\"workclass\":\"Local-gov\",\"fnlwgt\":268234,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Protective-serv\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":64,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":388625,\"education\":\"10th\",\"education_num\":6,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":10,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":40,\"workclass\":\"Private\",\"fnlwgt\":47902,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Exec-managerial\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":48,\"workclass\":null,\"fnlwgt\":167381,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Widowed\",\"occupation\":null,\"relationship\":\"Unmarried\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":25,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":64,\"workclass\":\"Self-emp-not-inc\",\"fnlwgt\":177825,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Never-married\",\"occupation\":\"Other-service\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":1055,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":45,\"workclass\":\"Private\",\"fnlwgt\":117310,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Divorced\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":46,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":42,\"workclass\":\"Private\",\"fnlwgt\":127314,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Tech-support\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":45,\"native_country\":\"United-States\",\"income_bracket\":\">50K\"},{\"age\":68,\"workclass\":\"Self-emp-inc\",\"fnlwgt\":140852,\"education\":\"HS-grad\",\"education_num\":9,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Sales\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":40,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":28,\"workclass\":\"Private\",\"fnlwgt\":69621,\"education\":\"Assoc-acdm\",\"education_num\":12,\"marital_status\":\"Never-married\",\"occupation\":\"Sales\",\"relationship\":\"Not-in-family\",\"race\":\"White\",\"gender\":\"Female\",\"capital_gain\":0,\"capital_loss\":0,\"hours_per_week\":60,\"native_country\":\"United-States\",\"income_bracket\":\"<=50K\"},{\"age\":36,\"workclass\":\"Private\",\"fnlwgt\":174938,\"education\":\"Bachelors\",\"education_num\":13,\"marital_status\":\"Married-civ-spouse\",\"occupation\":\"Prof-specialty\",\"relationship\":\"Husband\",\"race\":\"White\",\"gender\":\"Male\",\"capital_gain\":0,\"capital_loss\":188
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment