File size: 3,370 Bytes
2150692
 
 
 
337cc9e
2150692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a460052
2150692
 
 
3355ad5
 
 
a460052
 
 
 
 
2150692
 
 
 
3355ad5
6c39add
3355ad5
2150692
337cc9e
 
 
6c39add
337cc9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6c39add
337cc9e
 
 
 
 
 
 
 
 
 
6c39add
337cc9e
 
 
 
 
 
 
 
6c39add
337cc9e
 
 
 
 
 
 
 
 
 
 
6c39add
 
 
 
337cc9e
 
6c39add
337cc9e
 
 
 
 
 
 
2150692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "/Users/misikoff/opt/anaconda3/envs/sta663/lib/python3.12/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
      "  from .autonotebook import tqdm as notebook_tqdm\n"
     ]
    }
   ],
   "source": [
    "# !pip install datasets\n",
    "\n",
    "from datasets import load_dataset"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Downloading builder script: 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 18.5k/18.5k [00:00<00:00, 11.3MB/s]\n",
      "Downloading data: 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 20.4M/20.4M [00:00<00:00, 33.6MB/s]\n",
      "Generating train split: 96012 examples [00:02, 46188.04 examples/s]\n",
      "Generating validation split: 96012 examples [00:02, 47013.79 examples/s]\n",
      "Generating test split: 96012 examples [00:02, 46947.45 examples/s]\n"
     ]
    }
   ],
   "source": [
    "configs = [\"home_value_forecasts\", \"new_constructions\", \"for_sale_listings\", \"rentals\"]\n",
    "\n",
    "dataset = load_dataset(\"misikoff/zillow\", \"rentals\", trust_remote_code=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'Region ID': '102001',\n",
       " 'Size Rank': 0,\n",
       " 'Region': 'United States',\n",
       " 'Region Type': 'country',\n",
       " 'State': None,\n",
       " 'Home Type': 'SFR',\n",
       " 'Date': '2018-01-31',\n",
       " 'Sale Price': 309000.0,\n",
       " 'Sale Price per Sqft': 137.41232299804688,\n",
       " 'Count': 33940}"
      ]
     },
     "execution_count": 27,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "next(iter((dataset[\"train\"])))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "metadata": {},
   "outputs": [],
   "source": [
    "gen = iter((dataset[\"train\"]))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'Region ID': '102001',\n",
       " 'Size Rank': 0,\n",
       " 'Region': 'United States',\n",
       " 'Region Type': 'country',\n",
       " 'State': None,\n",
       " 'Home Type': 'condo/co-op only',\n",
       " 'Date': '2018-03-31',\n",
       " 'Sale Price': 386700.0,\n",
       " 'Sale Price per Sqft': 238.31776428222656,\n",
       " 'Count': 4267}"
      ]
     },
     "execution_count": 37,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "next(gen)"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "sta663",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.12.2"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}