{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Stack Exchange\n",
    "\n",
    "SE API: https://api.stackexchange.com/docs\n",
    "\n",
    "Share dataset on HF Hub:\n",
    "- https://huggingface.co/docs/datasets/en/create_dataset\n",
    "- Advanced: https://huggingface.co/docs/datasets/main/en/dataset_script\n",
    "- https://huggingface.co/docs/datasets/en/upload_dataset\n",
    "    - Example dataset card: https://huggingface.co/datasets/cnn_dailymail\n",
    "    - Getting started: https://huggingface.co/welcome"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "%load_ext autoreload\n",
    "%autoreload 2"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 39,
   "metadata": {},
   "outputs": [],
   "source": [
    "from requests import Session\n",
    "import urllib.parse\n",
    "from time import sleep\n",
    "import pandas as pd\n",
    "import os\n",
    "import json"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 44,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Directory to store the data files\n",
    "dest_dir = '/Users/ag2435/repos/stackexchange/'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [],
   "source": [
    "BASE_URL = 'https://api.stackexchange.com/'\n",
    "APPLICATION_KEY = ')KIPKiGfEARDVrtTHF2UKw(('\n",
    "MAX_PAGESIZE = 100"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [],
   "source": [
    "def all(func):\n",
    "    def wrapper(session, **kwargs):\n",
    "        # get page from params or default to 1\n",
    "        page = kwargs.get('page', 1)\n",
    "        n_requests = 0\n",
    "\n",
    "        while True:\n",
    "            # add access token to unlock higher request quota\n",
    "            if 'key' not in kwargs: kwargs['key'] = APPLICATION_KEY\n",
    "            # use max page size to reduce number of requests\n",
    "            if 'pagesize' not in kwargs: kwargs['pagesize'] = MAX_PAGESIZE\n",
    "            # add page number to params\n",
    "            kwargs['page'] = page\n",
    "\n",
    "            response = func(session, **kwargs)\n",
    "            # print('response', response)\n",
    "            for el in response['items']:\n",
    "                yield el\n",
    "            # print(response.keys())\n",
    "            # check if there are more pages\n",
    "            print(f\"page {page}: has_more={response['has_more']}, quota_remaining={response['quota_remaining']}/{response['quota_max']}\")\n",
    "            if 'has_more' in response and not response['has_more']:\n",
    "                break\n",
    "            page += 1\n",
    "\n",
    "            if n_requests % 4 == 0:\n",
    "                sleep(1)\n",
    "    return wrapper"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Sites\n",
    "\n",
    "TODO: get usage statistics for each site"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [],
   "source": [
    "@all\n",
    "def get_sites(session, **kwargs):\n",
    "    url = urllib.parse.urljoin(BASE_URL, '/2.3/sites')\n",
    "    response = session.get(url, params=kwargs)\n",
    "    return response.json()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "page 1: has_more=True, quota_remaining=9951/10000\n",
      "page 2: has_more=True, quota_remaining=9950/10000\n",
      "page 3: has_more=True, quota_remaining=9949/10000\n",
      "page 4: has_more=False, quota_remaining=9948/10000\n"
     ]
    }
   ],
   "source": [
    "with Session() as session:\n",
    "    sites = list(get_sites(session))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'aliases': ['https://www.stackoverflow.com',\n",
       "  'https://facebook.stackoverflow.com'],\n",
       " 'styling': {'tag_background_color': '#E0EAF1',\n",
       "  'tag_foreground_color': '#3E6D8E',\n",
       "  'link_color': '#0077CC'},\n",
       " 'related_sites': [{'relation': 'meta',\n",
       "   'api_site_parameter': 'meta.stackoverflow',\n",
       "   'site_url': 'https://meta.stackoverflow.com',\n",
       "   'name': 'Meta Stack Overflow'},\n",
       "  {'relation': 'chat',\n",
       "   'site_url': 'https://chat.stackoverflow.com/',\n",
       "   'name': 'Stack Overflow Chat'}],\n",
       " 'markdown_extensions': ['Prettify'],\n",
       " 'launch_date': 1221436800,\n",
       " 'open_beta_date': 1217462400,\n",
       " 'site_state': 'normal',\n",
       " 'high_resolution_icon_url': 'https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon@2.png',\n",
       " 'favicon_url': 'https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico',\n",
       " 'icon_url': 'https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png',\n",
       " 'audience': 'professional and enthusiast programmers',\n",
       " 'site_url': 'https://stackoverflow.com',\n",
       " 'api_site_parameter': 'stackoverflow',\n",
       " 'logo_url': 'https://cdn.sstatic.net/Sites/stackoverflow/Img/logo.png',\n",
       " 'name': 'Stack Overflow',\n",
       " 'site_type': 'main_site'}"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sites[0]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {},
   "outputs": [],
   "source": [
    "# SITE_KEYS = list(sites[0].keys())\n",
    "SITE_KEYS = [\n",
    "    'aliases', # exclude aliases key\n",
    "    'styling',\n",
    "    'related_sites',\n",
    "    'markdown_extensions',\n",
    "    'launch_date',\n",
    "    'open_beta_date',\n",
    "    'site_state',\n",
    "    'high_resolution_icon_url',\n",
    "    'favicon_url',\n",
    "    'icon_url',\n",
    "    'audience',\n",
    "    'site_url',\n",
    "    'api_site_parameter',\n",
    "    'logo_url',\n",
    "    'name',\n",
    "    'site_type'\n",
    "]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "0 https://stackoverflow.com Stack Overflow stackoverflow main_site\n",
      "1 https://serverfault.com Server Fault serverfault main_site\n",
      "2 https://superuser.com Super User superuser main_site\n",
      "3 https://meta.stackexchange.com Meta Stack Exchange meta main_site\n",
      "4 https://webapps.stackexchange.com Web Applications webapps main_site\n",
      "5 https://webapps.meta.stackexchange.com Web Applications Meta webapps.meta meta_site\n",
      "6 https://gaming.stackexchange.com Arqade gaming main_site\n",
      "7 https://gaming.meta.stackexchange.com Arqade Meta gaming.meta meta_site\n",
      "8 https://webmasters.stackexchange.com Webmasters webmasters main_site\n",
      "9 https://webmasters.meta.stackexchange.com Webmasters Meta webmasters.meta meta_site\n",
      "10 https://cooking.stackexchange.com Seasoned Advice cooking main_site\n",
      "11 https://cooking.meta.stackexchange.com Seasoned Advice Meta cooking.meta meta_site\n",
      "12 https://gamedev.stackexchange.com Game Development gamedev main_site\n",
      "13 https://gamedev.meta.stackexchange.com Game Development Meta gamedev.meta meta_site\n",
      "14 https://photo.stackexchange.com Photography photo main_site\n",
      "15 https://photo.meta.stackexchange.com Photography Meta photo.meta meta_site\n",
      "16 https://stats.stackexchange.com Cross Validated stats main_site\n",
      "17 https://stats.meta.stackexchange.com Cross Validated Meta stats.meta meta_site\n",
      "18 https://math.stackexchange.com Mathematics math main_site\n",
      "19 https://math.meta.stackexchange.com Mathematics Meta math.meta meta_site\n",
      "20 https://diy.stackexchange.com Home Improvement diy main_site\n",
      "21 https://diy.meta.stackexchange.com Home Improvement Meta diy.meta meta_site\n",
      "22 https://meta.superuser.com Meta Super User meta.superuser meta_site\n",
      "23 https://meta.serverfault.com Meta Server Fault meta.serverfault meta_site\n",
      "24 https://gis.stackexchange.com Geographic Information Systems gis main_site\n",
      "25 https://gis.meta.stackexchange.com Geographic Information Systems Meta gis.meta meta_site\n",
      "26 https://tex.stackexchange.com TeX - LaTeX tex main_site\n",
      "27 https://tex.meta.stackexchange.com TeX - LaTeX Meta tex.meta meta_site\n",
      "28 https://askubuntu.com Ask Ubuntu askubuntu main_site\n",
      "29 https://meta.askubuntu.com Ask Ubuntu Meta meta.askubuntu meta_site\n",
      "30 https://money.stackexchange.com Personal Finance & Money money main_site\n",
      "31 https://money.meta.stackexchange.com Personal Finance & Money Meta money.meta meta_site\n",
      "32 https://english.stackexchange.com English Language & Usage english main_site\n",
      "33 https://english.meta.stackexchange.com English Language & Usage Meta english.meta meta_site\n",
      "34 https://stackapps.com Stack Apps stackapps main_site\n",
      "35 https://ux.stackexchange.com User Experience ux main_site\n",
      "36 https://ux.meta.stackexchange.com User Experience Meta ux.meta meta_site\n",
      "37 https://unix.stackexchange.com Unix & Linux unix main_site\n",
      "38 https://unix.meta.stackexchange.com Unix & Linux Meta unix.meta meta_site\n",
      "39 https://wordpress.stackexchange.com WordPress Development wordpress main_site\n",
      "40 https://wordpress.meta.stackexchange.com WordPress Development Meta wordpress.meta meta_site\n",
      "41 https://cstheory.stackexchange.com Theoretical Computer Science cstheory main_site\n",
      "42 https://cstheory.meta.stackexchange.com Theoretical Computer Science Meta cstheory.meta meta_site\n",
      "43 https://apple.stackexchange.com Ask Different apple main_site\n",
      "44 https://apple.meta.stackexchange.com Ask Different Meta apple.meta meta_site\n",
      "45 https://rpg.stackexchange.com Role-playing Games rpg main_site\n",
      "46 https://rpg.meta.stackexchange.com Role-playing Games Meta rpg.meta meta_site\n",
      "47 https://bicycles.stackexchange.com Bicycles bicycles main_site\n",
      "48 https://bicycles.meta.stackexchange.com Bicycles Meta bicycles.meta meta_site\n",
      "49 https://softwareengineering.stackexchange.com Software Engineering softwareengineering main_site\n",
      "50 https://softwareengineering.meta.stackexchange.com Software Engineering Meta softwareengineering.meta meta_site\n",
      "51 https://electronics.stackexchange.com Electrical Engineering electronics main_site\n",
      "52 https://electronics.meta.stackexchange.com Electrical Engineering Meta electronics.meta meta_site\n",
      "53 https://android.stackexchange.com Android Enthusiasts android main_site\n",
      "54 https://android.meta.stackexchange.com Android Enthusiasts Meta android.meta meta_site\n",
      "55 https://boardgames.stackexchange.com Board & Card Games boardgames main_site\n",
      "56 https://boardgames.meta.stackexchange.com Board & Card Games Meta boardgames.meta meta_site\n",
      "57 https://physics.stackexchange.com Physics physics main_site\n",
      "58 https://physics.meta.stackexchange.com Physics Meta physics.meta meta_site\n",
      "59 https://homebrew.stackexchange.com Homebrewing homebrew main_site\n",
      "60 https://homebrew.meta.stackexchange.com Homebrewing Meta homebrew.meta meta_site\n",
      "61 https://security.stackexchange.com Information Security security main_site\n",
      "62 https://security.meta.stackexchange.com Information Security Meta security.meta meta_site\n",
      "63 https://writing.stackexchange.com Writing writing main_site\n",
      "64 https://writing.meta.stackexchange.com Writing Meta writing.meta meta_site\n",
      "65 https://video.stackexchange.com Video Production video main_site\n",
      "66 https://video.meta.stackexchange.com Video Production Meta video.meta meta_site\n",
      "67 https://graphicdesign.stackexchange.com Graphic Design graphicdesign main_site\n",
      "68 https://graphicdesign.meta.stackexchange.com Graphic Design Meta graphicdesign.meta meta_site\n",
      "69 https://dba.stackexchange.com Database Administrators dba main_site\n",
      "70 https://dba.meta.stackexchange.com Database Administrators Meta dba.meta meta_site\n",
      "71 https://scifi.stackexchange.com Science Fiction & Fantasy scifi main_site\n",
      "72 https://scifi.meta.stackexchange.com Science Fiction & Fantasy Meta scifi.meta meta_site\n",
      "73 https://codereview.stackexchange.com Code Review codereview main_site\n",
      "74 https://codereview.meta.stackexchange.com Code Review Meta codereview.meta meta_site\n",
      "75 https://codegolf.stackexchange.com Code Golf codegolf main_site\n",
      "76 https://codegolf.meta.stackexchange.com Code Golf Meta codegolf.meta meta_site\n",
      "77 https://quant.stackexchange.com Quantitative Finance quant main_site\n",
      "78 https://quant.meta.stackexchange.com Quantitative Finance Meta quant.meta meta_site\n",
      "79 https://pm.stackexchange.com Project Management pm main_site\n",
      "80 https://pm.meta.stackexchange.com Project Management Meta pm.meta meta_site\n",
      "81 https://skeptics.stackexchange.com Skeptics skeptics main_site\n",
      "82 https://skeptics.meta.stackexchange.com Skeptics Meta skeptics.meta meta_site\n",
      "83 https://fitness.stackexchange.com Physical Fitness fitness main_site\n",
      "84 https://fitness.meta.stackexchange.com Physical Fitness Meta fitness.meta meta_site\n",
      "85 https://drupal.stackexchange.com Drupal Answers drupal main_site\n",
      "86 https://drupal.meta.stackexchange.com Drupal Answers Meta drupal.meta meta_site\n",
      "87 https://mechanics.stackexchange.com Motor Vehicle Maintenance & Repair mechanics main_site\n",
      "88 https://mechanics.meta.stackexchange.com Motor Vehicle Maintenance & Repair Meta mechanics.meta meta_site\n",
      "89 https://parenting.stackexchange.com Parenting parenting main_site\n",
      "90 https://parenting.meta.stackexchange.com Parenting Meta parenting.meta meta_site\n",
      "91 https://sharepoint.stackexchange.com SharePoint sharepoint main_site\n",
      "92 https://sharepoint.meta.stackexchange.com SharePoint Meta sharepoint.meta meta_site\n",
      "93 https://music.stackexchange.com Music: Practice & Theory music main_site\n",
      "94 https://music.meta.stackexchange.com Music: Practice & Theory Meta music.meta meta_site\n",
      "95 https://sqa.stackexchange.com Software Quality Assurance & Testing sqa main_site\n",
      "96 https://sqa.meta.stackexchange.com Software Quality Assurance & Testing Meta sqa.meta meta_site\n",
      "97 https://judaism.stackexchange.com Mi Yodeya judaism main_site\n",
      "98 https://judaism.meta.stackexchange.com Mi Yodeya Meta judaism.meta meta_site\n",
      "99 https://german.stackexchange.com German Language german main_site\n",
      "100 https://german.meta.stackexchange.com German Language Meta german.meta meta_site\n",
      "101 https://japanese.stackexchange.com Japanese Language japanese main_site\n",
      "102 https://japanese.meta.stackexchange.com Japanese Language Meta japanese.meta meta_site\n",
      "103 https://philosophy.stackexchange.com Philosophy philosophy main_site\n",
      "104 https://philosophy.meta.stackexchange.com Philosophy Meta philosophy.meta meta_site\n",
      "105 https://gardening.stackexchange.com Gardening & Landscaping gardening main_site\n",
      "106 https://gardening.meta.stackexchange.com Gardening & Landscaping Meta gardening.meta meta_site\n",
      "107 https://travel.stackexchange.com Travel travel main_site\n",
      "108 https://travel.meta.stackexchange.com Travel Meta travel.meta meta_site\n",
      "109 https://crypto.stackexchange.com Cryptography crypto main_site\n",
      "110 https://crypto.meta.stackexchange.com Cryptography Meta crypto.meta meta_site\n",
      "111 https://dsp.stackexchange.com Signal Processing dsp main_site\n",
      "112 https://dsp.meta.stackexchange.com Signal Processing Meta dsp.meta meta_site\n",
      "113 https://french.stackexchange.com French Language french main_site\n",
      "114 https://french.meta.stackexchange.com French Language Meta french.meta meta_site\n",
      "115 https://christianity.stackexchange.com Christianity christianity main_site\n",
      "116 https://christianity.meta.stackexchange.com Christianity Meta christianity.meta meta_site\n",
      "117 https://bitcoin.stackexchange.com Bitcoin bitcoin main_site\n",
      "118 https://bitcoin.meta.stackexchange.com Bitcoin Meta bitcoin.meta meta_site\n",
      "119 https://linguistics.stackexchange.com Linguistics linguistics main_site\n",
      "120 https://linguistics.meta.stackexchange.com Linguistics Meta linguistics.meta meta_site\n",
      "121 https://hermeneutics.stackexchange.com Biblical Hermeneutics hermeneutics main_site\n",
      "122 https://hermeneutics.meta.stackexchange.com Biblical Hermeneutics Meta hermeneutics.meta meta_site\n",
      "123 https://history.stackexchange.com History history main_site\n",
      "124 https://history.meta.stackexchange.com History Meta history.meta meta_site\n",
      "125 https://bricks.stackexchange.com Bricks bricks main_site\n",
      "126 https://bricks.meta.stackexchange.com Bricks Meta bricks.meta meta_site\n",
      "127 https://spanish.stackexchange.com Spanish Language spanish main_site\n",
      "128 https://spanish.meta.stackexchange.com Spanish Language Meta spanish.meta meta_site\n",
      "129 https://scicomp.stackexchange.com Computational Science scicomp main_site\n",
      "130 https://scicomp.meta.stackexchange.com Computational Science Meta scicomp.meta meta_site\n",
      "131 https://movies.stackexchange.com Movies & TV movies main_site\n",
      "132 https://movies.meta.stackexchange.com Movies & TV Meta movies.meta meta_site\n",
      "133 https://chinese.stackexchange.com Chinese Language chinese main_site\n",
      "134 https://chinese.meta.stackexchange.com Chinese Language Meta chinese.meta meta_site\n",
      "135 https://biology.stackexchange.com Biology biology main_site\n",
      "136 https://biology.meta.stackexchange.com Biology Meta biology.meta meta_site\n",
      "137 https://poker.stackexchange.com Poker poker main_site\n",
      "138 https://poker.meta.stackexchange.com Poker Meta poker.meta meta_site\n",
      "139 https://mathematica.stackexchange.com Mathematica mathematica main_site\n",
      "140 https://mathematica.meta.stackexchange.com Mathematica Meta mathematica.meta meta_site\n",
      "141 https://psychology.stackexchange.com Psychology & Neuroscience psychology main_site\n",
      "142 https://psychology.meta.stackexchange.com Psychology & Neuroscience Meta psychology.meta meta_site\n",
      "143 https://outdoors.stackexchange.com The Great Outdoors outdoors main_site\n",
      "144 https://outdoors.meta.stackexchange.com The Great Outdoors Meta outdoors.meta meta_site\n",
      "145 https://martialarts.stackexchange.com Martial Arts martialarts main_site\n",
      "146 https://martialarts.meta.stackexchange.com Martial Arts Meta martialarts.meta meta_site\n",
      "147 https://sports.stackexchange.com Sports sports main_site\n",
      "148 https://sports.meta.stackexchange.com Sports Meta sports.meta meta_site\n",
      "149 https://academia.stackexchange.com Academia academia main_site\n",
      "150 https://academia.meta.stackexchange.com Academia Meta academia.meta meta_site\n",
      "151 https://cs.stackexchange.com Computer Science cs main_site\n",
      "152 https://cs.meta.stackexchange.com Computer Science Meta cs.meta meta_site\n",
      "153 https://workplace.stackexchange.com The Workplace workplace main_site\n",
      "154 https://workplace.meta.stackexchange.com The Workplace Meta workplace.meta meta_site\n",
      "155 https://chemistry.stackexchange.com Chemistry chemistry main_site\n",
      "156 https://chemistry.meta.stackexchange.com Chemistry Meta chemistry.meta meta_site\n",
      "157 https://chess.stackexchange.com Chess chess main_site\n",
      "158 https://chess.meta.stackexchange.com Chess Meta chess.meta meta_site\n",
      "159 https://raspberrypi.stackexchange.com Raspberry Pi raspberrypi main_site\n",
      "160 https://raspberrypi.meta.stackexchange.com Raspberry Pi Meta raspberrypi.meta meta_site\n",
      "161 https://russian.stackexchange.com Russian Language russian main_site\n",
      "162 https://russian.meta.stackexchange.com Russian Language Meta russian.meta meta_site\n",
      "163 https://islam.stackexchange.com Islam islam main_site\n",
      "164 https://islam.meta.stackexchange.com Islam Meta islam.meta meta_site\n",
      "165 https://salesforce.stackexchange.com Salesforce salesforce main_site\n",
      "166 https://salesforce.meta.stackexchange.com Salesforce Meta salesforce.meta meta_site\n",
      "167 https://patents.stackexchange.com Ask Patents patents main_site\n",
      "168 https://patents.meta.stackexchange.com Ask Patents Meta patents.meta meta_site\n",
      "169 https://genealogy.stackexchange.com Genealogy & Family History genealogy main_site\n",
      "170 https://genealogy.meta.stackexchange.com Genealogy & Family History Meta genealogy.meta meta_site\n",
      "171 https://robotics.stackexchange.com Robotics robotics main_site\n",
      "172 https://robotics.meta.stackexchange.com Robotics Meta robotics.meta meta_site\n",
      "173 https://expressionengine.stackexchange.com ExpressionEngine® Answers expressionengine main_site\n",
      "174 https://expressionengine.meta.stackexchange.com ExpressionEngine® Answers Meta expressionengine.meta meta_site\n",
      "175 https://politics.stackexchange.com Politics politics main_site\n",
      "176 https://politics.meta.stackexchange.com Politics Meta politics.meta meta_site\n",
      "177 https://anime.stackexchange.com Anime & Manga anime main_site\n",
      "178 https://anime.meta.stackexchange.com Anime & Manga Meta anime.meta meta_site\n",
      "179 https://magento.stackexchange.com Magento magento main_site\n",
      "180 https://magento.meta.stackexchange.com Magento Meta magento.meta meta_site\n",
      "181 https://ell.stackexchange.com English Language Learners ell main_site\n",
      "182 https://ell.meta.stackexchange.com English Language Learners Meta ell.meta meta_site\n",
      "183 https://sustainability.stackexchange.com Sustainable Living sustainability main_site\n",
      "184 https://sustainability.meta.stackexchange.com Sustainable Living Meta sustainability.meta meta_site\n",
      "185 https://tridion.stackexchange.com Tridion tridion main_site\n",
      "186 https://tridion.meta.stackexchange.com Tridion Meta tridion.meta meta_site\n",
      "187 https://reverseengineering.stackexchange.com Reverse Engineering reverseengineering main_site\n",
      "188 https://reverseengineering.meta.stackexchange.com Reverse Engineering Meta reverseengineering.meta meta_site\n",
      "189 https://networkengineering.stackexchange.com Network Engineering networkengineering main_site\n",
      "190 https://networkengineering.meta.stackexchange.com Network Engineering Meta networkengineering.meta meta_site\n",
      "191 https://opendata.stackexchange.com Open Data opendata main_site\n",
      "192 https://opendata.meta.stackexchange.com Open Data Meta opendata.meta meta_site\n",
      "193 https://freelancing.stackexchange.com Freelancing freelancing main_site\n",
      "194 https://freelancing.meta.stackexchange.com Freelancing Meta freelancing.meta meta_site\n",
      "195 https://blender.stackexchange.com Blender blender main_site\n",
      "196 https://blender.meta.stackexchange.com Blender Meta blender.meta meta_site\n",
      "197 https://mathoverflow.net MathOverflow mathoverflow.net main_site\n",
      "198 https://meta.mathoverflow.net MathOverflow Meta meta.mathoverflow.net meta_site\n",
      "199 https://space.stackexchange.com Space Exploration space main_site\n",
      "200 https://space.meta.stackexchange.com Space Exploration Meta space.meta meta_site\n",
      "201 https://sound.stackexchange.com Sound Design sound main_site\n",
      "202 https://sound.meta.stackexchange.com Sound Design Meta sound.meta meta_site\n",
      "203 https://astronomy.stackexchange.com Astronomy astronomy main_site\n",
      "204 https://astronomy.meta.stackexchange.com Astronomy Meta astronomy.meta meta_site\n",
      "205 https://tor.stackexchange.com Tor tor main_site\n",
      "206 https://tor.meta.stackexchange.com Tor Meta tor.meta meta_site\n",
      "207 https://pets.stackexchange.com Pets pets main_site\n",
      "208 https://pets.meta.stackexchange.com Pets Meta pets.meta meta_site\n",
      "209 https://ham.stackexchange.com Amateur Radio ham main_site\n",
      "210 https://ham.meta.stackexchange.com Amateur Radio Meta ham.meta meta_site\n",
      "211 https://italian.stackexchange.com Italian Language italian main_site\n",
      "212 https://italian.meta.stackexchange.com Italian Language Meta italian.meta meta_site\n",
      "213 https://pt.stackoverflow.com Stack Overflow em Português pt.stackoverflow main_site\n",
      "214 https://pt.meta.stackoverflow.com Stack Overflow em Português Meta pt.meta.stackoverflow meta_site\n",
      "215 https://aviation.stackexchange.com Aviation aviation main_site\n",
      "216 https://aviation.meta.stackexchange.com Aviation Meta aviation.meta meta_site\n",
      "217 https://ebooks.stackexchange.com Ebooks ebooks main_site\n",
      "218 https://ebooks.meta.stackexchange.com Ebooks Meta ebooks.meta meta_site\n",
      "219 https://alcohol.stackexchange.com Beer, Wine & Spirits alcohol main_site\n",
      "220 https://alcohol.meta.stackexchange.com Beer, Wine & Spirits Meta alcohol.meta meta_site\n",
      "221 https://softwarerecs.stackexchange.com Software Recommendations softwarerecs main_site\n",
      "222 https://softwarerecs.meta.stackexchange.com Software Recommendations Meta softwarerecs.meta meta_site\n",
      "223 https://arduino.stackexchange.com Arduino arduino main_site\n",
      "224 https://arduino.meta.stackexchange.com Arduino Meta arduino.meta meta_site\n",
      "225 https://cs50.stackexchange.com CS50 cs50 main_site\n",
      "226 https://cs50.meta.stackexchange.com CS50 Meta cs50.meta meta_site\n",
      "227 https://expatriates.stackexchange.com Expatriates expatriates main_site\n",
      "228 https://expatriates.meta.stackexchange.com Expatriates Meta expatriates.meta meta_site\n",
      "229 https://matheducators.stackexchange.com Mathematics Educators matheducators main_site\n",
      "230 https://matheducators.meta.stackexchange.com Mathematics Educators Meta matheducators.meta meta_site\n",
      "231 https://meta.stackoverflow.com Meta Stack Overflow meta.stackoverflow meta_site\n",
      "232 https://earthscience.stackexchange.com Earth Science earthscience main_site\n",
      "233 https://earthscience.meta.stackexchange.com Earth Science Meta earthscience.meta meta_site\n",
      "234 https://joomla.stackexchange.com Joomla joomla main_site\n",
      "235 https://joomla.meta.stackexchange.com Joomla Meta joomla.meta meta_site\n",
      "236 https://datascience.stackexchange.com Data Science datascience main_site\n",
      "237 https://datascience.meta.stackexchange.com Data Science Meta datascience.meta meta_site\n",
      "238 https://puzzling.stackexchange.com Puzzling puzzling main_site\n",
      "239 https://puzzling.meta.stackexchange.com Puzzling Meta puzzling.meta meta_site\n",
      "240 https://craftcms.stackexchange.com Craft CMS craftcms main_site\n",
      "241 https://craftcms.meta.stackexchange.com Craft CMS Meta craftcms.meta meta_site\n",
      "242 https://buddhism.stackexchange.com Buddhism buddhism main_site\n",
      "243 https://buddhism.meta.stackexchange.com Buddhism Meta buddhism.meta meta_site\n",
      "244 https://hinduism.stackexchange.com Hinduism hinduism main_site\n",
      "245 https://hinduism.meta.stackexchange.com Hinduism Meta hinduism.meta meta_site\n",
      "246 https://communitybuilding.stackexchange.com Community Building communitybuilding main_site\n",
      "247 https://communitybuilding.meta.stackexchange.com Community Building Meta communitybuilding.meta meta_site\n",
      "248 https://worldbuilding.stackexchange.com Worldbuilding worldbuilding main_site\n",
      "249 https://worldbuilding.meta.stackexchange.com Worldbuilding Meta worldbuilding.meta meta_site\n",
      "250 https://ja.stackoverflow.com スタック・オーバーフロー ja.stackoverflow main_site\n",
      "251 https://ja.meta.stackoverflow.com スタック・オーバーフローMeta ja.meta.stackoverflow meta_site\n",
      "252 https://emacs.stackexchange.com Emacs emacs main_site\n",
      "253 https://emacs.meta.stackexchange.com Emacs Meta emacs.meta meta_site\n",
      "254 https://hsm.stackexchange.com History of Science and Mathematics hsm main_site\n",
      "255 https://hsm.meta.stackexchange.com History of Science and Mathematics Meta hsm.meta meta_site\n",
      "256 https://economics.stackexchange.com Economics economics main_site\n",
      "257 https://economics.meta.stackexchange.com Economics Meta economics.meta meta_site\n",
      "258 https://lifehacks.stackexchange.com Lifehacks lifehacks main_site\n",
      "259 https://lifehacks.meta.stackexchange.com Lifehacks Meta lifehacks.meta meta_site\n",
      "260 https://engineering.stackexchange.com Engineering engineering main_site\n",
      "261 https://engineering.meta.stackexchange.com Engineering Meta engineering.meta meta_site\n",
      "262 https://coffee.stackexchange.com Coffee coffee main_site\n",
      "263 https://coffee.meta.stackexchange.com Coffee Meta coffee.meta meta_site\n",
      "264 https://vi.stackexchange.com Vi and Vim vi main_site\n",
      "265 https://vi.meta.stackexchange.com Vi and Vim Meta vi.meta meta_site\n",
      "266 https://musicfans.stackexchange.com Music Fans musicfans main_site\n",
      "267 https://musicfans.meta.stackexchange.com Music Fans Meta musicfans.meta meta_site\n",
      "268 https://woodworking.stackexchange.com Woodworking woodworking main_site\n",
      "269 https://woodworking.meta.stackexchange.com Woodworking Meta woodworking.meta meta_site\n",
      "270 https://civicrm.stackexchange.com CiviCRM civicrm main_site\n",
      "271 https://civicrm.meta.stackexchange.com CiviCRM Meta civicrm.meta meta_site\n",
      "272 https://medicalsciences.stackexchange.com Medical Sciences medicalsciences main_site\n",
      "273 https://medicalsciences.meta.stackexchange.com Medical Sciences Meta medicalsciences.meta meta_site\n",
      "274 https://ru.stackoverflow.com Stack Overflow на русском ru.stackoverflow main_site\n",
      "275 https://ru.meta.stackoverflow.com Stack Overflow на русском Meta ru.meta.stackoverflow meta_site\n",
      "276 https://rus.stackexchange.com Русский язык rus main_site\n",
      "277 https://rus.meta.stackexchange.com Русский язык Meta rus.meta meta_site\n",
      "278 https://mythology.stackexchange.com Mythology & Folklore mythology main_site\n",
      "279 https://mythology.meta.stackexchange.com Mythology & Folklore Meta mythology.meta meta_site\n",
      "280 https://law.stackexchange.com Law law main_site\n",
      "281 https://law.meta.stackexchange.com Law Meta law.meta meta_site\n",
      "282 https://opensource.stackexchange.com Open Source opensource main_site\n",
      "283 https://opensource.meta.stackexchange.com Open Source Meta opensource.meta meta_site\n",
      "284 https://elementaryos.stackexchange.com elementary OS elementaryos main_site\n",
      "285 https://elementaryos.meta.stackexchange.com elementary OS Meta elementaryos.meta meta_site\n",
      "286 https://portuguese.stackexchange.com Portuguese Language portuguese main_site\n",
      "287 https://portuguese.meta.stackexchange.com Portuguese Language Meta portuguese.meta meta_site\n",
      "288 https://computergraphics.stackexchange.com Computer Graphics computergraphics main_site\n",
      "289 https://computergraphics.meta.stackexchange.com Computer Graphics Meta computergraphics.meta meta_site\n",
      "290 https://hardwarerecs.stackexchange.com Hardware Recommendations hardwarerecs main_site\n",
      "291 https://hardwarerecs.meta.stackexchange.com Hardware Recommendations Meta hardwarerecs.meta meta_site\n",
      "292 https://es.stackoverflow.com Stack Overflow en español es.stackoverflow main_site\n",
      "293 https://es.meta.stackoverflow.com Stack Overflow Meta en español es.meta.stackoverflow meta_site\n",
      "294 https://3dprinting.stackexchange.com 3D Printing 3dprinting main_site\n",
      "295 https://3dprinting.meta.stackexchange.com 3D Printing Meta 3dprinting.meta meta_site\n",
      "296 https://ethereum.stackexchange.com Ethereum ethereum main_site\n",
      "297 https://ethereum.meta.stackexchange.com Ethereum Meta ethereum.meta meta_site\n",
      "298 https://latin.stackexchange.com Latin Language latin main_site\n",
      "299 https://latin.meta.stackexchange.com Latin Language Meta latin.meta meta_site\n",
      "300 https://languagelearning.stackexchange.com Language Learning languagelearning main_site\n",
      "301 https://languagelearning.meta.stackexchange.com Language Learning Meta languagelearning.meta meta_site\n",
      "302 https://retrocomputing.stackexchange.com Retrocomputing retrocomputing main_site\n",
      "303 https://retrocomputing.meta.stackexchange.com Retrocomputing Meta retrocomputing.meta meta_site\n",
      "304 https://crafts.stackexchange.com Arts & Crafts crafts main_site\n",
      "305 https://crafts.meta.stackexchange.com Arts & Crafts Meta crafts.meta meta_site\n",
      "306 https://korean.stackexchange.com Korean Language korean main_site\n",
      "307 https://korean.meta.stackexchange.com Korean Language Meta korean.meta meta_site\n",
      "308 https://monero.stackexchange.com Monero monero main_site\n",
      "309 https://monero.meta.stackexchange.com Monero Meta monero.meta meta_site\n",
      "310 https://ai.stackexchange.com Artificial Intelligence ai main_site\n",
      "311 https://ai.meta.stackexchange.com Artificial Intelligence Meta ai.meta meta_site\n",
      "312 https://esperanto.stackexchange.com Esperanto Language esperanto main_site\n",
      "313 https://esperanto.meta.stackexchange.com Esperanto Language Meta esperanto.meta meta_site\n",
      "314 https://sitecore.stackexchange.com Sitecore sitecore main_site\n",
      "315 https://sitecore.meta.stackexchange.com Sitecore Meta sitecore.meta meta_site\n",
      "316 https://iot.stackexchange.com Internet of Things iot main_site\n",
      "317 https://iot.meta.stackexchange.com Internet of Things Meta iot.meta meta_site\n",
      "318 https://literature.stackexchange.com Literature literature main_site\n",
      "319 https://literature.meta.stackexchange.com Literature Meta literature.meta meta_site\n",
      "320 https://vegetarianism.stackexchange.com Veganism & Vegetarianism vegetarianism main_site\n",
      "321 https://vegetarianism.meta.stackexchange.com Veganism & Vegetarianism Meta vegetarianism.meta meta_site\n",
      "322 https://ukrainian.stackexchange.com Ukrainian Language ukrainian main_site\n",
      "323 https://ukrainian.meta.stackexchange.com Ukrainian Language Meta ukrainian.meta meta_site\n",
      "324 https://devops.stackexchange.com DevOps devops main_site\n",
      "325 https://devops.meta.stackexchange.com DevOps Meta devops.meta meta_site\n",
      "326 https://bioinformatics.stackexchange.com Bioinformatics bioinformatics main_site\n",
      "327 https://bioinformatics.meta.stackexchange.com Bioinformatics Meta bioinformatics.meta meta_site\n",
      "328 https://cseducators.stackexchange.com Computer Science Educators cseducators main_site\n",
      "329 https://cseducators.meta.stackexchange.com Computer Science Educators Meta cseducators.meta meta_site\n",
      "330 https://interpersonal.stackexchange.com Interpersonal Skills interpersonal main_site\n",
      "331 https://interpersonal.meta.stackexchange.com Interpersonal Skills Meta interpersonal.meta meta_site\n",
      "332 https://iota.stackexchange.com Iota iota main_site\n",
      "333 https://iota.meta.stackexchange.com Iota Meta iota.meta meta_site\n",
      "334 https://stellar.stackexchange.com Stellar stellar main_site\n",
      "335 https://stellar.meta.stackexchange.com Stellar Meta stellar.meta meta_site\n",
      "336 https://conlang.stackexchange.com Constructed Languages conlang main_site\n",
      "337 https://conlang.meta.stackexchange.com Constructed Languages Meta conlang.meta meta_site\n",
      "338 https://quantumcomputing.stackexchange.com Quantum Computing quantumcomputing main_site\n",
      "339 https://quantumcomputing.meta.stackexchange.com Quantum Computing Meta quantumcomputing.meta meta_site\n",
      "340 https://eosio.stackexchange.com EOS.IO eosio main_site\n",
      "341 https://eosio.meta.stackexchange.com EOS.IO Meta eosio.meta meta_site\n",
      "342 https://tezos.stackexchange.com Tezos tezos main_site\n",
      "343 https://tezos.meta.stackexchange.com Tezos Meta tezos.meta meta_site\n",
      "344 https://or.stackexchange.com Operations Research or main_site\n",
      "345 https://or.meta.stackexchange.com Operations Research Meta or.meta meta_site\n",
      "346 https://drones.stackexchange.com Drones and Model Aircraft drones main_site\n",
      "347 https://drones.meta.stackexchange.com Drones and Model Aircraft Meta drones.meta meta_site\n",
      "348 https://mattermodeling.stackexchange.com Matter Modeling mattermodeling main_site\n",
      "349 https://mattermodeling.meta.stackexchange.com Matter Modeling Meta mattermodeling.meta meta_site\n",
      "350 https://cardano.stackexchange.com Cardano cardano main_site\n",
      "351 https://cardano.meta.stackexchange.com Cardano Meta cardano.meta meta_site\n",
      "352 https://proofassistants.stackexchange.com Proof Assistants proofassistants main_site\n",
      "353 https://proofassistants.meta.stackexchange.com Proof Assistants Meta proofassistants.meta meta_site\n",
      "354 https://substrate.stackexchange.com Substrate and Polkadot substrate main_site\n",
      "355 https://substrate.meta.stackexchange.com Substrate and Polkadot Meta substrate.meta meta_site\n",
      "356 https://bioacoustics.stackexchange.com Bioacoustics bioacoustics main_site\n",
      "357 https://bioacoustics.meta.stackexchange.com Bioacoustics Meta bioacoustics.meta meta_site\n",
      "358 https://solana.stackexchange.com Solana solana main_site\n",
      "359 https://solana.meta.stackexchange.com Solana Meta solana.meta meta_site\n",
      "360 https://langdev.stackexchange.com Programming Language Design and Implementation langdev main_site\n",
      "361 https://langdev.meta.stackexchange.com Programming Language Design and Implementation Meta langdev.meta meta_site\n",
      "362 https://genai.stackexchange.com GenAI genai main_site\n",
      "363 https://genai.meta.stackexchange.com GenAI Meta genai.meta meta_site\n"
     ]
    }
   ],
   "source": [
    "for i, site in enumerate(sites):\n",
    "    print(i, site['site_url'], site['name'], site['api_site_parameter'], site['site_type'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [],
   "source": [
    "# # save to excel\n",
    "# df = pd.DataFrame(sites)\n",
    "# df = df[SITE_KEYS]\n",
    "# df.to_excel('se_sites.xlsx', index=False)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Advanced search"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {},
   "outputs": [],
   "source": [
    "@all\n",
    "def get_search_advanced(session, **kwargs):\n",
    "    # Make a GET request\n",
    "    # response = session.get('https://www.google.com')\n",
    "    # # Print the status code of the response\n",
    "    # print(response.status_code)\n",
    "\n",
    "    # Convert the following to a GET request:\n",
    "    # https://api.stackexchange.com/2.3/search/advanced?order=desc&sort=activity&body=arxiv&site=stackoverflow\n",
    "\n",
    "    url = urllib.parse.urljoin(BASE_URL, '/2.3/search/advanced')\n",
    "    response = session.get(url, params=kwargs)\n",
    "    return response.json()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "page 1: has_more=True, quota_remaining=9947/10000\n",
      "page 2: has_more=False, quota_remaining=9946/10000\n"
     ]
    }
   ],
   "source": [
    "with Session() as session:\n",
    "    params = {\n",
    "        'order': 'desc',\n",
    "        'sort': 'activity',\n",
    "        'body': 'arxiv',\n",
    "        'site': 'stackoverflow',\n",
    "    }\n",
    "    results = list(get_search_advanced(session, **params))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "148"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "len(results)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[{'tags': ['python', 'keras', 'loss-function'],\n",
       "  'owner': {'account_id': 30887162,\n",
       "   'reputation': 1,\n",
       "   'user_id': 23705688,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/0fc28f4b92f679e46ac0a2013e5d1c45?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Gst',\n",
       "   'link': 'https://stackoverflow.com/users/23705688/gst'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 20,\n",
       "  'answer_count': 0,\n",
       "  'score': -3,\n",
       "  'last_activity_date': 1712064071,\n",
       "  'creation_date': 1712062420,\n",
       "  'last_edit_date': 1712064071,\n",
       "  'question_id': 78261447,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/78261447/custom-loss-function-using-keras',\n",
       "  'title': 'Custom loss function using keras'},\n",
       " {'tags': ['latex', 'submission'],\n",
       "  'owner': {'account_id': 20425863,\n",
       "   'reputation': 61,\n",
       "   'user_id': 14985883,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/d43029b34aa6ce285abf1b144a3db801?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'jokkk2312',\n",
       "   'link': 'https://stackoverflow.com/users/14985883/jokkk2312'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1778,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1712001203,\n",
       "  'creation_date': 1673869286,\n",
       "  'last_edit_date': 1674056434,\n",
       "  'question_id': 75133722,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/75133722/latex-error-command-algorithmic-already-defined',\n",
       "  'title': 'LaTeX Error: Command \\\\algorithmic already defined'},\n",
       " {'tags': ['python',\n",
       "   'deep-learning',\n",
       "   'pytorch',\n",
       "   'anomaly-detection',\n",
       "   'multivariate-time-series'],\n",
       "  'owner': {'account_id': 19245659,\n",
       "   'reputation': 9,\n",
       "   'user_id': 14064736,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/1bf8658fa79e09515c5d7e5c6279bab9?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user_123789456',\n",
       "   'link': 'https://stackoverflow.com/users/14064736/user-123789456'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 26,\n",
       "  'answer_count': 0,\n",
       "  'score': -1,\n",
       "  'last_activity_date': 1711550637,\n",
       "  'creation_date': 1711550637,\n",
       "  'question_id': 78232542,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/78232542/multivariate-irregular-time-series-anomaly-detection-based-on-deep-learning-or',\n",
       "  'title': 'Multivariate irregular time series anomaly detection based on Deep Learning (or even self-attention)?'},\n",
       " {'tags': ['python'],\n",
       "  'owner': {'account_id': 6473652,\n",
       "   'reputation': 340,\n",
       "   'user_id': 10488142,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/GN4CA.png?s=256&g=1',\n",
       "   'display_name': 'Lukas Koestler',\n",
       "   'link': 'https://stackoverflow.com/users/10488142/lukas-koestler'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 463,\n",
       "  'accepted_answer_id': 78070287,\n",
       "  'answer_count': 1,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1709064846,\n",
       "  'creation_date': 1630434238,\n",
       "  'question_id': 69003677,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/69003677/arxiv-api-problem-with-searching-for-two-keywords',\n",
       "  'title': 'arXiv API problem with searching for two keywords'},\n",
       " {'tags': ['python', 'web-scraping', 'google-docs'],\n",
       "  'owner': {'account_id': 20095910,\n",
       "   'reputation': 2148,\n",
       "   'user_id': 14735451,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/BlY6t.jpg?s=256&g=1',\n",
       "   'display_name': 'Penguin',\n",
       "   'link': 'https://stackoverflow.com/users/14735451/penguin'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 541,\n",
       "  'accepted_answer_id': 77424842,\n",
       "  'answer_count': 2,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1708533570,\n",
       "  'creation_date': 1698447523,\n",
       "  'last_edit_date': 1698669342,\n",
       "  'question_id': 77377413,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77377413/how-to-query-arxiv-daily-based-on-keywords-and-write-the-results-in-a-google-doc',\n",
       "  'title': 'How to query arxiv daily based on keywords and write the results in a Google doc?'},\n",
       " {'tags': ['large-language-model', 'longtext', 'text-generation'],\n",
       "  'owner': {'account_id': 30430167,\n",
       "   'reputation': 1,\n",
       "   'user_id': 23319531,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/a/ACg8ocIUim46aR3GY13oMo_-2-YBnMTubH0WgC4jsZ1AgXgV=k-s256',\n",
       "   'display_name': 'youran zeng',\n",
       "   'link': 'https://stackoverflow.com/users/23319531/youran-zeng'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 13,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1706605021,\n",
       "  'creation_date': 1706605021,\n",
       "  'question_id': 77905034,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77905034/how-to-build-a-long-context-window-corpus-dataset',\n",
       "  'title': 'How to build a 'long context window' corpus dataset'},\n",
       " {'tags': ['python', 'numpy', 'signal-processing'],\n",
       "  'owner': {'account_id': 20952970,\n",
       "   'reputation': 459,\n",
       "   'user_id': 15394203,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-0W1ock3L3v4/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn45PpY0_gzlkMpSQuFGz2voNOGHg/s96-c/photo.jpg?sz=256',\n",
       "   'display_name': 'yras8',\n",
       "   'link': 'https://stackoverflow.com/users/15394203/yras8'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 2827,\n",
       "  'accepted_answer_id': 67001504,\n",
       "  'answer_count': 2,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1704921195,\n",
       "  'creation_date': 1617874634,\n",
       "  'question_id': 67001293,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/67001293/savitzky-golay-filter-in-python-wrong-window-size',\n",
       "  'title': 'savitzky-Golay filter in python, wrong window size'},\n",
       " {'tags': ['javascript',\n",
       "   'express',\n",
       "   'axios',\n",
       "   'google-cloud-functions',\n",
       "   'arxiv'],\n",
       "  'owner': {'account_id': 16630145,\n",
       "   'reputation': 65,\n",
       "   'user_id': 12018173,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh6.googleusercontent.com/-onoIzK5KFxw/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rdJ5VbTEaqvyt9BXyoYAnqMeNFOMw/photo.jpg?sz=256',\n",
       "   'display_name': 'Flavius Biras',\n",
       "   'link': 'https://stackoverflow.com/users/12018173/flavius-biras'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 153,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1704280404,\n",
       "  'creation_date': 1704124735,\n",
       "  'last_edit_date': 1704280404,\n",
       "  'question_id': 77742464,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77742464/axios-request-to-arxiv-randomly-fails',\n",
       "  'title': 'Axios request to arxiv randomly fails'},\n",
       " {'tags': ['python', 'arxiv'],\n",
       "  'owner': {'account_id': 22740999,\n",
       "   'reputation': 1,\n",
       "   'user_id': 23145235,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/18a963591d6b0b83fd5edc479c19d882?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'help meh',\n",
       "   'link': 'https://stackoverflow.com/users/23145235/help-meh'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 119,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1703326247,\n",
       "  'creation_date': 1703278675,\n",
       "  'last_edit_date': 1703326247,\n",
       "  'question_id': 77705787,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77705787/what-am-i-doing-wrong-querying-arxiv-api',\n",
       "  'title': 'What am I doing wrong? Querying Arxiv API'},\n",
       " {'tags': ['python', 'string', 'replace', 'python-re', 'url-parsing'],\n",
       "  'owner': {'account_id': 1212671,\n",
       "   'reputation': 1947,\n",
       "   'user_id': 1180930,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 37,\n",
       "   'profile_image': 'https://i.stack.imgur.com/XgoEx.jpg?s=256&g=1',\n",
       "   'display_name': 'jvriesem',\n",
       "   'link': 'https://stackoverflow.com/users/1180930/jvriesem'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 58,\n",
       "  'answer_count': 2,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1702851679,\n",
       "  'creation_date': 1702740661,\n",
       "  'last_edit_date': 1702851679,\n",
       "  'question_id': 77671478,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77671478/how-can-i-detect-and-fix-urls-in-a-body-of-text-if-they-have-spaces',\n",
       "  'title': 'How can I detect and "fix" URLs in a body of text if they have spaces?'},\n",
       " {'tags': ['deep-learning',\n",
       "   'probability',\n",
       "   'stable-diffusion',\n",
       "   'discrete',\n",
       "   'generative'],\n",
       "  'owner': {'account_id': 10976188,\n",
       "   'reputation': 503,\n",
       "   'user_id': 8064813,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2ad79a5965094a6c0ea2e59f9953e22a?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Hyunseung Kim',\n",
       "   'link': 'https://stackoverflow.com/users/8064813/hyunseung-kim'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 51,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1700740126,\n",
       "  'creation_date': 1700730133,\n",
       "  'last_edit_date': 1700740126,\n",
       "  'question_id': 77535527,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77535527/question-about-transition-matrix-q-in-d3pm-diffusion-model-for-discrete-state-sp',\n",
       "  'title': 'Question about transition matrix Q in D3PM diffusion model for discrete state space'},\n",
       " {'tags': ['python', 'web-scraping', 'data-science', 'data-analysis'],\n",
       "  'owner': {'account_id': 27932414,\n",
       "   'reputation': 1,\n",
       "   'user_id': 21330117,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/a/AGNmyxZ8avtW_dDbX667CwG5W2weZ40R5yrL4n_9FeAJ6nk=k-s256',\n",
       "   'display_name': 'Syed Siddiq',\n",
       "   'link': 'https://stackoverflow.com/users/21330117/syed-siddiq'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 358,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1698425625,\n",
       "  'creation_date': 1678273219,\n",
       "  'question_id': 75672158,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/75672158/need-help-in-downloading-pdfs-from-arxiv-dataset-which-is-in-kaggle',\n",
       "  'title': 'Need help in downloading PDFs from arxiv dataset which is in kaggle'},\n",
       " {'tags': ['database'],\n",
       "  'owner': {'account_id': 20208758,\n",
       "   'reputation': 41,\n",
       "   'user_id': 14822336,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/47951715bda03778619104e5ebe2716c?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'catharsis',\n",
       "   'link': 'https://stackoverflow.com/users/14822336/catharsis'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 41,\n",
       "  'closed_date': 1698197691,\n",
       "  'accepted_answer_id': 77356089,\n",
       "  'answer_count': 1,\n",
       "  'score': -2,\n",
       "  'last_activity_date': 1698213457,\n",
       "  'creation_date': 1698192705,\n",
       "  'question_id': 77355984,\n",
       "  'link': 'https://stackoverflow.com/questions/77355984/what-kind-of-database-should-i-use-for-storing-or-retrieving-files',\n",
       "  'closed_reason': 'Not suitable for this site',\n",
       "  'title': 'What kind of database should I use for storing or retrieving files?'},\n",
       " {'tags': ['python', 'urllib', 'feedparser'],\n",
       "  'owner': {'account_id': 16102288,\n",
       "   'reputation': 2928,\n",
       "   'user_id': 11622712,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/c89039d250a79a22e267876e4bf71e6d?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Fluxy',\n",
       "   'link': 'https://stackoverflow.com/users/11622712/fluxy'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 2417,\n",
       "  'accepted_answer_id': 64047528,\n",
       "  'answer_count': 2,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1697742258,\n",
       "  'creation_date': 1600953392,\n",
       "  'last_edit_date': 1697742258,\n",
       "  'question_id': 64047299,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/64047299/how-to-query-arxiv-for-a-specific-year',\n",
       "  'title': 'How to query arXiv for a specific year?'},\n",
       " {'tags': ['latex', 'pandoc'],\n",
       "  'owner': {'account_id': 29444716,\n",
       "   'reputation': 207,\n",
       "   'user_id': 22668573,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/498fd8eac432274a7b4e95ea8106606d?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'olivarb',\n",
       "   'link': 'https://stackoverflow.com/users/22668573/olivarb'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 150,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1696898628,\n",
       "  'creation_date': 1696621301,\n",
       "  'last_edit_date': 1696898628,\n",
       "  'question_id': 77247013,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/77247013/how-to-convert-latex-document-with-multiple-files-to-markdown-using-pandoc',\n",
       "  'title': 'How to convert LaTeX document with multiple files to markdown using pandoc'},\n",
       " {'tags': ['pdf', 'nlp', 'ocr'],\n",
       "  'owner': {'account_id': 447920,\n",
       "   'reputation': 28284,\n",
       "   'user_id': 841830,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 74,\n",
       "   'profile_image': 'https://i.stack.imgur.com/thtU5.jpg?s=256&g=1',\n",
       "   'display_name': 'Darren Cook',\n",
       "   'link': 'https://stackoverflow.com/users/841830/darren-cook'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 433,\n",
       "  'answer_count': 2,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1694881662,\n",
       "  'creation_date': 1691438504,\n",
       "  'last_edit_date': 1694881662,\n",
       "  'question_id': 76854854,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/76854854/how-to-reconstruct-sentences-that-have-been-split-into-lines',\n",
       "  'title': 'How to reconstruct sentences that have been split into lines?'},\n",
       " {'tags': ['machine-learning'],\n",
       "  'owner': {'account_id': 26565680,\n",
       "   'reputation': 71,\n",
       "   'user_id': 20192765,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/50503724ccb871a9aa9b8c56adfa25da?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'neon5480',\n",
       "   'link': 'https://stackoverflow.com/users/20192765/neon5480'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 204,\n",
       "  'accepted_answer_id': 76829850,\n",
       "  'answer_count': 1,\n",
       "  'score': -2,\n",
       "  'last_activity_date': 1691086823,\n",
       "  'creation_date': 1691068959,\n",
       "  'last_edit_date': 1691086823,\n",
       "  'question_id': 76828516,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/76828516/train-one-ml-model-on-predictions-of-another-ml-model',\n",
       "  'title': 'Train one ML model on predictions of another ML model'},\n",
       " {'tags': ['algorithm', 'algebra', 'singular', 'magma'],\n",
       "  'owner': {'account_id': 20643182,\n",
       "   'reputation': 1,\n",
       "   'user_id': 22302729,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2c3f5cdd3c5169136c8bab207bfa2ead?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'drfpslegend',\n",
       "   'link': 'https://stackoverflow.com/users/22302729/drfpslegend'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 48,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1690572092,\n",
       "  'creation_date': 1690572092,\n",
       "  'question_id': 76790537,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/76790537/is-there-an-algorithm-for-finding-every-isolated-singular-point-on-an-algebraic',\n",
       "  'title': 'Is there an algorithm for finding every isolated singular point on an algebraic variety, or a programming language that implements this?'},\n",
       " {'tags': ['python', 'google-scholar'],\n",
       "  'owner': {'account_id': 21084630,\n",
       "   'reputation': 21,\n",
       "   'user_id': 15498059,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh6.googleusercontent.com/--zCV85G5yBU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucn4qJO4DjqARQ-tk-u3lHY6McXtdg/s96-c/photo.jpg?sz=256',\n",
       "   'display_name': 'Wayen',\n",
       "   'link': 'https://stackoverflow.com/users/15498059/wayen'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 371,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1690190178,\n",
       "  'creation_date': 1690081158,\n",
       "  'last_edit_date': 1690098868,\n",
       "  'question_id': 76746505,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/76746505/is-there-an-efficient-way-to-get-all-the-metadata-of-a-paper-using-python',\n",
       "  'title': 'Is there an efficient way to get all the metadata of a paper using Python?'},\n",
       " {'tags': ['mongodb', 'mongodb-query', 'nosql', 'node-mongodb-native'],\n",
       "  'owner': {'account_id': 8651720,\n",
       "   'reputation': 1232,\n",
       "   'user_id': 6477158,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 80,\n",
       "   'profile_image': 'https://i.stack.imgur.com/cLvAu.jpg?s=256&g=1',\n",
       "   'display_name': 'NewScientists',\n",
       "   'link': 'https://stackoverflow.com/users/6477158/newscientists'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1324,\n",
       "  'accepted_answer_id': 60649802,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1689792670,\n",
       "  'creation_date': 1583950413,\n",
       "  'last_edit_date': 1583951031,\n",
       "  'question_id': 60642230,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/60642230/dynamic-from-in-lookup',\n",
       "  'title': 'Dynamic from in $lookup'},\n",
       " {'tags': ['python', 'path', 'tex'],\n",
       "  'owner': {'account_id': 17439986,\n",
       "   'reputation': 276,\n",
       "   'user_id': 12642254,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/b20c32782c7d94e454c1673316c283b9?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'PaulG',\n",
       "   'link': 'https://stackoverflow.com/users/12642254/paulg'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 8,\n",
       "  'closed_date': 1685018972,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1685047351,\n",
       "  'creation_date': 1685018222,\n",
       "  'last_edit_date': 1685047351,\n",
       "  'question_id': 76332339,\n",
       "  'link': 'https://stackoverflow.com/questions/76332339/python-syntax-for-path-in-the-package-arxiv-latex-cleaner',\n",
       "  'closed_reason': 'Duplicate',\n",
       "  'title': 'Python syntax for path in the package arxiv_latex_cleaner?'},\n",
       " {'tags': ['deep-learning',\n",
       "   'pytorch',\n",
       "   'multiple-instances',\n",
       "   'attention-model'],\n",
       "  'owner': {'account_id': 27809242,\n",
       "   'reputation': 23,\n",
       "   'user_id': 21231946,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/e466ec42aeaeaed2486d631d687e362b?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'kodhoi',\n",
       "   'link': 'https://stackoverflow.com/users/21231946/kodhoi'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 217,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1684219478,\n",
       "  'creation_date': 1684219478,\n",
       "  'question_id': 76260048,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/76260048/batch-size-for-attention-based-multiple-instance-learning',\n",
       "  'title': 'Batch size for Attention-based Multiple Instance Learning'},\n",
       " {'tags': ['python',\n",
       "   'amazon-web-services',\n",
       "   'amazon-s3',\n",
       "   'download',\n",
       "   'google-cloud-storage'],\n",
       "  'owner': {'account_id': 13820989,\n",
       "   'reputation': 477,\n",
       "   'user_id': 11141816,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/sCksl.jpg?s=256&g=1',\n",
       "   'display_name': 'ShoutOutAndCalculate',\n",
       "   'link': 'https://stackoverflow.com/users/11141816/shoutoutandcalculate'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 776,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1684119442,\n",
       "  'creation_date': 1684119442,\n",
       "  'question_id': 76250624,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/76250624/how-to-download-bulk-pdf-of-arxiv-from-amazon-s3',\n",
       "  'title': 'How to download Bulk PDF of Arxiv from Amazon S3'},\n",
       " {'tags': ['python', 'machine-learning', 'naivebayes'],\n",
       "  'owner': {'account_id': 27817029,\n",
       "   'reputation': 1,\n",
       "   'user_id': 21238204,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/a/AEdFTp4ePYTrRZdVe4ffUF9pn74vS2_98p69qZM8_to4=k-s256',\n",
       "   'display_name': 'Rijil Varghese',\n",
       "   'link': 'https://stackoverflow.com/users/21238204/rijil-varghese'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 104,\n",
       "  'answer_count': 1,\n",
       "  'score': -1,\n",
       "  'last_activity_date': 1680207203,\n",
       "  'creation_date': 1680198157,\n",
       "  'last_edit_date': 1680198263,\n",
       "  'question_id': 75891391,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/75891391/how-can-i-remove-certain-categories-from-my-dataset',\n",
       "  'title': 'how can I remove certain categories from my dataset'},\n",
       " {'tags': ['swift', 'pdf', 'ios-pdfkit', 'apple-pdfkit'],\n",
       "  'owner': {'account_id': 16322974,\n",
       "   'reputation': 2418,\n",
       "   'user_id': 11788268,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://graph.facebook.com/1118973608300175/picture?type=large',\n",
       "   'display_name': 'Khắc Hào',\n",
       "   'link': 'https://stackoverflow.com/users/11788268/kh%e1%ba%afc-h%c3%a0o'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 120,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1679937858,\n",
       "  'creation_date': 1678982516,\n",
       "  'last_edit_date': 1678982912,\n",
       "  'question_id': 75758708,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/75758708/pdfdocument-write-in-swift-causes-content-corruption',\n",
       "  'title': 'PDFDocument.write in Swift causes content corruption'},\n",
       " {'tags': ['r', 'cran'],\n",
       "  'owner': {'account_id': 2622798,\n",
       "   'reputation': 46576,\n",
       "   'user_id': 2270475,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 75,\n",
       "   'profile_image': 'https://i.stack.imgur.com/ajhT1.jpg?s=256&g=1',\n",
       "   'display_name': 'moodymudskipper',\n",
       "   'link': 'https://stackoverflow.com/users/2270475/moodymudskipper'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 831,\n",
       "  'accepted_answer_id': 75810147,\n",
       "  'answer_count': 2,\n",
       "  'score': 9,\n",
       "  'last_activity_date': 1679479016,\n",
       "  'creation_date': 1573659370,\n",
       "  'last_edit_date': 1573660536,\n",
       "  'question_id': 58840531,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/58840531/cran-rejection-based-on-references-describing-the-methods-in-your-package',\n",
       "  'title': 'CRAN rejection based on "references describing the methods in your package"'},\n",
       " {'tags': ['machine-learning', 'reinforcement-learning'],\n",
       "  'owner': {'account_id': 3389813,\n",
       "   'reputation': 2150,\n",
       "   'user_id': 2844907,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 44,\n",
       "   'profile_image': 'https://graph.facebook.com/100003180301954/picture?type=large',\n",
       "   'display_name': 'Alexander Cyberman',\n",
       "   'link': 'https://stackoverflow.com/users/2844907/alexander-cyberman'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 37658,\n",
       "  'accepted_answer_id': 50663200,\n",
       "  'answer_count': 4,\n",
       "  'score': 57,\n",
       "  'last_activity_date': 1678624046,\n",
       "  'creation_date': 1506418602,\n",
       "  'question_id': 46422845,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/46422845/what-is-the-way-to-understand-proximal-policy-optimization-algorithm-in-rl',\n",
       "  'title': 'What is the way to understand Proximal Policy Optimization Algorithm in RL?'},\n",
       " {'tags': ['python', 'algorithm', 'sorting'],\n",
       "  'owner': {'account_id': 22573228,\n",
       "   'reputation': 7370,\n",
       "   'user_id': 16759116,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/n2u4t.png?s=256&g=1',\n",
       "   'display_name': 'no comment',\n",
       "   'link': 'https://stackoverflow.com/users/16759116/no-comment'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 10554,\n",
       "  'accepted_answer_id': 69438471,\n",
       "  'answer_count': 5,\n",
       "  'score': 103,\n",
       "  'last_activity_date': 1675152158,\n",
       "  'creation_date': 1633356862,\n",
       "  'last_edit_date': 1675152158,\n",
       "  'question_id': 69437526,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/69437526/what-is-this-odd-sorting-algorithm',\n",
       "  'title': 'What is this odd sorting algorithm?'},\n",
       " {'tags': ['deep-learning', 'neural-network', 'object-detection', 'mnist'],\n",
       "  'owner': {'account_id': 16932342,\n",
       "   'reputation': 11,\n",
       "   'user_id': 13625270,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/d529cf0c651abe64aa094f876aeeb9e9?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Hustler885',\n",
       "   'link': 'https://stackoverflow.com/users/13625270/hustler885'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 34,\n",
       "  'accepted_answer_id': 75170807,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1674123877,\n",
       "  'creation_date': 1674056808,\n",
       "  'last_edit_date': 1674123106,\n",
       "  'question_id': 75161801,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/75161801/unclear-architecture-of-mnist-neural-network',\n",
       "  'title': 'Unclear Architecture of MNIST Neural Network'},\n",
       " {'tags': ['python', 'api'],\n",
       "  'owner': {'account_id': 26335236,\n",
       "   'reputation': 21,\n",
       "   'user_id': 19995186,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/37148d3e41be867849448c7f1752117b?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'sazan',\n",
       "   'link': 'https://stackoverflow.com/users/19995186/sazan'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 465,\n",
       "  'accepted_answer_id': 74914492,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1672129401,\n",
       "  'creation_date': 1671880098,\n",
       "  'last_edit_date': 1671880123,\n",
       "  'question_id': 74907220,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/74907220/is-there-a-way-to-retrieve-the-number-of-citations-per-year-of-an-article-using',\n",
       "  'title': 'Is there a way to retrieve the number of citations per year of an article using the inspirehep website?'},\n",
       " {'tags': ['r', 'cran'],\n",
       "  'owner': {'account_id': 13379059,\n",
       "   'reputation': 439,\n",
       "   'user_id': 9654952,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://graph.facebook.com/1446477232095723/picture?type=large',\n",
       "   'display_name': 'Igor Cobelo',\n",
       "   'link': 'https://stackoverflow.com/users/9654952/igor-cobelo'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 467,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1670978903,\n",
       "  'creation_date': 1593729616,\n",
       "  'question_id': 62706019,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/62706019/how-add-reference-authors-in-description-in-an-r-package',\n",
       "  'title': 'How add reference authors in DESCRIPTION, in an R package?'},\n",
       " {'tags': ['algorithm', 'quaternions'],\n",
       "  'owner': {'account_id': 8890635,\n",
       "   'reputation': 111,\n",
       "   'user_id': 6637334,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/kX2QS.jpg?s=256&g=1',\n",
       "   'display_name': 'Ahmad',\n",
       "   'link': 'https://stackoverflow.com/users/6637334/ahmad'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 99,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1667851202,\n",
       "  'creation_date': 1667753649,\n",
       "  'question_id': 74337896,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/74337896/quaternionhurwitz-integers-gcrd-algorithm',\n",
       "  'title': 'Quaternion(Hurwitz Integers) gcrd algorithm'},\n",
       " {'tags': ['stylegan'],\n",
       "  'owner': {'account_id': 16494569,\n",
       "   'reputation': 11,\n",
       "   'user_id': 11917460,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-rBiIpc_NYVU/AAAAAAAAAAI/AAAAAAAAAkQ/y69YkyMgyjE/photo.jpg?sz=256',\n",
       "   'display_name': 'Vijay Mishra',\n",
       "   'link': 'https://stackoverflow.com/users/11917460/vijay-mishra'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 3314,\n",
       "  'answer_count': 4,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1664377666,\n",
       "  'creation_date': 1629802293,\n",
       "  'question_id': 68906225,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/68906225/trying-to-run-stylegan-in-jyputer-notebook-it-says-tensorflow-has-no-attribut',\n",
       "  'title': 'trying to run styleGAN in jyputer notebook, it says "tensorflow' has no attribute 'Dimension"'},\n",
       " {'tags': ['machine-learning', 'keras', 'conv-neural-network'],\n",
       "  'owner': {'account_id': 2504705,\n",
       "   'reputation': 506,\n",
       "   'user_id': 2178774,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/3e4602db46f40e794ac57290a1e41952?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'There',\n",
       "   'link': 'https://stackoverflow.com/users/2178774/there'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 47,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1658959208,\n",
       "  'creation_date': 1658927785,\n",
       "  'last_edit_date': 1658959208,\n",
       "  'question_id': 73138654,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/73138654/confusion-about-domain-adaptaion-method-encoder-versus-prediction-head',\n",
       "  'title': 'Confusion about domain adaptaion method: "Encoder" versus "prediction head"'},\n",
       " {'tags': ['pdf', 'latex', 'pdf-annotations'],\n",
       "  'owner': {'account_id': 17747240,\n",
       "   'reputation': 55,\n",
       "   'user_id': 13304568,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/99119cadd6edfe02af266ec5817f4ff1?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'lmms',\n",
       "   'link': 'https://stackoverflow.com/users/13304568/lmms'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1392,\n",
       "  'accepted_answer_id': 72988502,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1658503215,\n",
       "  'creation_date': 1587293277,\n",
       "  'last_edit_date': 1587457070,\n",
       "  'question_id': 61303067,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/61303067/write-latex-comments-on-any-pdf-file-with-option-to-toggle-comments-on-and-off',\n",
       "  'title': 'Write latex comments on any pdf file with option to toggle comments on and off'},\n",
       " {'tags': ['json', 'xml', 'flask', 'datatable', 'atom-feed'],\n",
       "  'owner': {'account_id': 351997,\n",
       "   'reputation': 2225,\n",
       "   'user_id': 688830,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 75,\n",
       "   'profile_image': 'https://i.stack.imgur.com/kyEMu.jpg?s=256&g=1',\n",
       "   'display_name': 'jsky',\n",
       "   'link': 'https://stackoverflow.com/users/688830/jsky'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 134,\n",
       "  'accepted_answer_id': 72619211,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1655218706,\n",
       "  'creation_date': 1655182318,\n",
       "  'question_id': 72611683,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/72611683/how-to-output-response-of-type-atom-xml-feed-into-jquery-datatable',\n",
       "  'title': 'How to output response of type atom/xml feed into Jquery DataTable?'},\n",
       " {'tags': ['android', 'bluetooth', 'android-bluetooth'],\n",
       "  'owner': {'account_id': 9243640,\n",
       "   'reputation': 11,\n",
       "   'user_id': 6866215,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/e5cdb5fc7f2ffc726ce289ac80383168?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'sunilkumar godi',\n",
       "   'link': 'https://stackoverflow.com/users/6866215/sunilkumar-godi'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 625,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1652452196,\n",
       "  'creation_date': 1587364150,\n",
       "  'question_id': 61316333,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/61316333/android-bluetooth-getting-null-for-uuid-of-bluetooth-discovered-devices',\n",
       "  'title': 'Android Bluetooth - Getting NULL for UUID of bluetooth discovered devices'},\n",
       " {'tags': ['optimization', 'reinforcement-learning'],\n",
       "  'owner': {'account_id': 7388938,\n",
       "   'reputation': 47,\n",
       "   'user_id': 5623016,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/12ae20a57f79f01a81325e3d66bb93ca?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'kmf',\n",
       "   'link': 'https://stackoverflow.com/users/5623016/kmf'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 301,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1652223178,\n",
       "  'creation_date': 1652184567,\n",
       "  'last_edit_date': 1652223178,\n",
       "  'question_id': 72186067,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/72186067/how-do-i-interpret-a-quickly-converging-q-loss-value-function-loss-in-actor-crit',\n",
       "  'title': 'How do I interpret a quickly converging Q loss/value function loss in actor-critic?'},\n",
       " {'tags': ['pytorch', 'conv-neural-network'],\n",
       "  'owner': {'account_id': 18705049,\n",
       "   'reputation': 3161,\n",
       "   'user_id': 13636407,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/CX03F.jpg?s=256&g=1',\n",
       "   'display_name': 'paime',\n",
       "   'link': 'https://stackoverflow.com/users/13636407/paime'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1589,\n",
       "  'answer_count': 0,\n",
       "  'score': 8,\n",
       "  'last_activity_date': 1651327137,\n",
       "  'creation_date': 1651327137,\n",
       "  'question_id': 72069125,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/72069125/is-convolution-pixelshuffle-the-same-as-subpixel-convolution',\n",
       "  'title': 'Is (Convolution + PixelShuffle) the same as SubPixel convolution?'},\n",
       " {'tags': ['python', 'xml', 'dataframe', 'api', 'loops'],\n",
       "  'owner': {'account_id': 22951407,\n",
       "   'reputation': 1,\n",
       "   'user_id': 18955151,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/c5da98c6026407e585e13d2988c1f538?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'th9',\n",
       "   'link': 'https://stackoverflow.com/users/18955151/th9'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 53,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1650998775,\n",
       "  'creation_date': 1650990968,\n",
       "  'last_edit_date': 1650998775,\n",
       "  'question_id': 72017539,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/72017539/get-all-authors-per-article-with-for-loop',\n",
       "  'title': 'Get all authors per article with for loop'},\n",
       " {'tags': ['matplotlib', 'legend'],\n",
       "  'owner': {'account_id': 4012883,\n",
       "   'reputation': 185,\n",
       "   'user_id': 7106957,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/06df1d50e83ace636cafbc1dd3a087aa?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'arash',\n",
       "   'link': 'https://stackoverflow.com/users/7106957/arash'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 614,\n",
       "  'accepted_answer_id': 71489631,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1647382414,\n",
       "  'creation_date': 1647256848,\n",
       "  'last_edit_date': 1647376482,\n",
       "  'question_id': 71466921,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/71466921/how-to-group-legend-handles-in-matplotlib',\n",
       "  'title': 'How to group legend handles in matplotlib?'},\n",
       " {'tags': ['apache-spark', 'pyspark', 'pyarrow'],\n",
       "  'owner': {'account_id': 4130282,\n",
       "   'reputation': 51,\n",
       "   'user_id': 3388394,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/d67a7d4122f86b3bceb4d0bde3a332fc?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Jakub Kaplan',\n",
       "   'link': 'https://stackoverflow.com/users/3388394/jakub-kaplan'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 135,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1647029371,\n",
       "  'creation_date': 1647029371,\n",
       "  'question_id': 71444141,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/71444141/is-it-possible-to-load-data-on-spark-workers-directly-into-apache-arrow-in-memor',\n",
       "  'title': 'Is it possible to load data on Spark workers directly into Apache Arrow in-memory format without first loading it into Spark's in-memory format?'},\n",
       " {'tags': ['python-requests', 'latex', 'pandoc'],\n",
       "  'owner': {'account_id': 8844831,\n",
       "   'reputation': 909,\n",
       "   'user_id': 6605966,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/3ead1d33ae1a945fe53d1f2d2d1d7d4f?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Jacques Thibodeau',\n",
       "   'link': 'https://stackoverflow.com/users/6605966/jacques-thibodeau'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 808,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1643899471,\n",
       "  'creation_date': 1643899471,\n",
       "  'question_id': 70973295,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/70973295/how-do-i-download-and-extract-a-list-of-papers-in-latex-format-from-arxiv',\n",
       "  'title': 'How do I download and extract a list of papers in LaTeX format from arXiv?'},\n",
       " {'tags': ['random', 'entropy'],\n",
       "  'owner': {'account_id': 8873135,\n",
       "   'reputation': 1473,\n",
       "   'user_id': 9988487,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/eb0ed6543d507e9bc67e4516ded567ad?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Adomas Baliuka',\n",
       "   'link': 'https://stackoverflow.com/users/9988487/adomas-baliuka'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 57,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1642860027,\n",
       "  'creation_date': 1642860027,\n",
       "  'question_id': 70813532,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/70813532/exploit-batching-drawing-many-samples-at-once-for-random-sampling',\n",
       "  'title': 'Exploit batching (drawing many samples at once) for random sampling'},\n",
       " {'tags': ['r', 'algorithm', 'k-means', 'centroid'],\n",
       "  'owner': {'account_id': 16208491,\n",
       "   'reputation': 21,\n",
       "   'user_id': 11703127,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/da2ea879b117c25cb10d46a8b7c5f001?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Katharina',\n",
       "   'link': 'https://stackoverflow.com/users/11703127/katharina'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 90,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1642025551,\n",
       "  'creation_date': 1561552176,\n",
       "  'last_edit_date': 1642025551,\n",
       "  'question_id': 56772864,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/56772864/how-can-i-compute-the-initial-k-means-centers-with-a-robust-seed-selection-algor',\n",
       "  'title': 'How can I compute the initial k-means centers with a robust seed selection algorithm in R?'},\n",
       " {'tags': ['python', 'deep-learning', 'pytorch', 'deeplab'],\n",
       "  'owner': {'account_id': 15640002,\n",
       "   'reputation': 70,\n",
       "   'user_id': 11283661,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/3fa5c461d66b65779af100836365ba96?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Muhammad Bilal',\n",
       "   'link': 'https://stackoverflow.com/users/11283661/muhammad-bilal'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 4968,\n",
       "  'closed_date': 1600175174,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1637593977,\n",
       "  'creation_date': 1600118731,\n",
       "  'last_edit_date': 1637593977,\n",
       "  'question_id': 63892031,\n",
       "  'link': 'https://stackoverflow.com/questions/63892031/how-to-train-deeplabv3-on-custom-dataset-on-pytorch',\n",
       "  'closed_reason': 'Needs details or clarity',\n",
       "  'title': 'How to train deeplabv3 on custom dataset on pytorch?'},\n",
       " {'tags': ['python-3.x', 'regex'],\n",
       "  'owner': {'account_id': 4447256,\n",
       "   'reputation': 372,\n",
       "   'user_id': 3620216,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 100,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/ee696f0a34f51a6a1b3cba35684a9d0c?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Haris',\n",
       "   'link': 'https://stackoverflow.com/users/3620216/haris'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 197,\n",
       "  'accepted_answer_id': 69986446,\n",
       "  'answer_count': 2,\n",
       "  'score': -1,\n",
       "  'last_activity_date': 1637054151,\n",
       "  'creation_date': 1637050249,\n",
       "  'last_edit_date': 1637050998,\n",
       "  'question_id': 69985696,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/69985696/matching-arxiv-regular-expression-in-python',\n",
       "  'title': 'Matching arxiv regular expression in Python'},\n",
       " {'tags': ['python',\n",
       "   'deep-learning',\n",
       "   'time-series',\n",
       "   'amazon-sagemaker',\n",
       "   'deepar'],\n",
       "  'owner': {'account_id': 1801314,\n",
       "   'reputation': 13056,\n",
       "   'user_id': 1639594,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 53,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/81743cdfed553ba8ef2524664481c36b?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Cybernetic',\n",
       "   'link': 'https://stackoverflow.com/users/1639594/cybernetic'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 456,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1636759172,\n",
       "  'creation_date': 1636742617,\n",
       "  'last_edit_date': 1636759172,\n",
       "  'question_id': 69947700,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/69947700/training-a-deepar-time-series-model-with-monthly-data-can-only-train-on-daily',\n",
       "  'title': 'Training a DeepAR time series model with monthly data. Can only train on Daily'},\n",
       " {'tags': ['tensorflow', 'keras', 'generative-adversarial-network'],\n",
       "  'owner': {'account_id': 4579931,\n",
       "   'reputation': 534,\n",
       "   'user_id': 3741667,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 72,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/9abd0260ad9b09bd2a7489d520094dda?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Jonas',\n",
       "   'link': 'https://stackoverflow.com/users/3741667/jonas'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 98,\n",
       "  'accepted_answer_id': 69539506,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1635811300,\n",
       "  'creation_date': 1633542230,\n",
       "  'last_edit_date': 1635811300,\n",
       "  'question_id': 69470379,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/69470379/implementing-custom-loss-that-makes-use-of-training-batch-data-with-keras',\n",
       "  'title': 'Implementing custom loss that makes use of training batch data with Keras'},\n",
       " {'tags': ['hyperlink',\n",
       "   'python-sphinx',\n",
       "   'restructuredtext',\n",
       "   'docutils',\n",
       "   'doi'],\n",
       "  'owner': {'account_id': 17094711,\n",
       "   'reputation': 484,\n",
       "   'user_id': 12369959,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh6.googleusercontent.com/--jAXn2uhUm0/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rf5K0bskOACmqP3bMuN4eEPwVzI5Q/photo.jpg?sz=256',\n",
       "   'display_name': 'puhuk',\n",
       "   'link': 'https://stackoverflow.com/users/12369959/puhuk'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 50,\n",
       "  'accepted_answer_id': 69468274,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1633533038,\n",
       "  'creation_date': 1633501867,\n",
       "  'last_edit_date': 1633533038,\n",
       "  'question_id': 69460847,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/69460847/link-directives-in-rst-grammar',\n",
       "  'title': 'Link directives in Rst grammar'},\n",
       " {'tags': ['python', 'multithreading', 'r', 'parallel-processing', 'julia'],\n",
       "  'owner': {'account_id': 106330,\n",
       "   'reputation': 93968,\n",
       "   'user_id': 283296,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 77,\n",
       "   'profile_image': 'https://i.stack.imgur.com/ilsZ4.jpg?s=256&g=1',\n",
       "   'display_name': 'Amelio Vazquez-Reina',\n",
       "   'link': 'https://stackoverflow.com/users/283296/amelio-vazquez-reina'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 9874,\n",
       "  'accepted_answer_id': 16423573,\n",
       "  'answer_count': 1,\n",
       "  'score': 61,\n",
       "  'last_activity_date': 1631303023,\n",
       "  'creation_date': 1367934632,\n",
       "  'last_edit_date': 1631303023,\n",
       "  'question_id': 16420792,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/16420792/parallelism-in-julia-native-threading-support',\n",
       "  'title': 'Parallelism in Julia: Native Threading Support'},\n",
       " {'tags': ['deep-learning', 'pytorch', 'recommendation-engine'],\n",
       "  'owner': {'account_id': 21607715,\n",
       "   'reputation': 13,\n",
       "   'user_id': 15934856,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/a/AATXAJxjrI8reKUdgXWtydIQ2l4oRMctqgfGiNCw-7Kh=k-s256',\n",
       "   'display_name': 'Võ Hoàng Long',\n",
       "   'link': 'https://stackoverflow.com/users/15934856/v%c3%b5-ho%c3%a0ng-long'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 146,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1625501075,\n",
       "  'creation_date': 1625498181,\n",
       "  'last_edit_date': 1625501075,\n",
       "  'question_id': 68258476,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/68258476/higher-loss-while-training-a-matrix-factorization-problem-using-larger-batch-siz',\n",
       "  'title': 'Higher loss while training a matrix factorization problem using larger batch size'},\n",
       " {'tags': ['python', 'data-mining'],\n",
       "  'owner': {'account_id': 16405477,\n",
       "   'reputation': 311,\n",
       "   'user_id': 11850171,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/1ae13bc644881c4f88cc8d3d85b04f7a?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'TinaTz',\n",
       "   'link': 'https://stackoverflow.com/users/11850171/tinatz'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 31,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1622629469,\n",
       "  'creation_date': 1622629469,\n",
       "  'question_id': 67803305,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/67803305/how-to-create-occurrence-matrix-from-text',\n",
       "  'title': 'How to create occurrence matrix from text?'},\n",
       " {'tags': ['python', 'pdf', 'pdfminer'],\n",
       "  'owner': {'account_id': 11315014,\n",
       "   'reputation': 33,\n",
       "   'user_id': 8297016,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/85b14b1c20f5778b4f9d4a99db336bf1?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'lf16',\n",
       "   'link': 'https://stackoverflow.com/users/8297016/lf16'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 960,\n",
       "  'answer_count': 0,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1620906933,\n",
       "  'creation_date': 1507934588,\n",
       "  'question_id': 46738961,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/46738961/getting-bounding-boxes-of-characters-from-pdf',\n",
       "  'title': 'Getting bounding boxes of characters from PDF'},\n",
       " {'tags': ['python-2.7', 'opencv', 'eye-tracking'],\n",
       "  'owner': {'account_id': 4284134,\n",
       "   'reputation': 123,\n",
       "   'user_id': 3502541,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/618b6229a2b3bf882f4ab56e3d60a675?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user3502541',\n",
       "   'link': 'https://stackoverflow.com/users/3502541/user3502541'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 15010,\n",
       "  'accepted_answer_id': 45790628,\n",
       "  'answer_count': 2,\n",
       "  'score': 10,\n",
       "  'last_activity_date': 1618767898,\n",
       "  'creation_date': 1503291456,\n",
       "  'question_id': 45789549,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/45789549/track-eye-pupil-position-with-webcam-opencv-and-python',\n",
       "  'title': 'Track Eye Pupil Position with Webcam, OpenCV, and Python'},\n",
       " {'tags': ['nlp',\n",
       "   'huggingface-transformers',\n",
       "   'transformer-model',\n",
       "   'summarization',\n",
       "   'huggingface-tokenizers'],\n",
       "  'owner': {'account_id': 13654132,\n",
       "   'reputation': 641,\n",
       "   'user_id': 9851155,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/4d53443c6d71797f404ca840347cf207?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'calveeen',\n",
       "   'link': 'https://stackoverflow.com/users/9851155/calveeen'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 242,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1617092457,\n",
       "  'creation_date': 1617092457,\n",
       "  'question_id': 66867213,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/66867213/pegasus-pre-training-for-summarisation-tasks',\n",
       "  'title': 'PEGASUS pre-training for summarisation tasks'},\n",
       " {'tags': ['amazon-web-services', 'amazon-s3'],\n",
       "  'owner': {'account_id': 4101520,\n",
       "   'reputation': 5089,\n",
       "   'user_id': 3413239,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 67,\n",
       "   'profile_image': 'https://i.stack.imgur.com/hM6rq.jpg?s=256&g=1',\n",
       "   'display_name': 'pg2455',\n",
       "   'link': 'https://stackoverflow.com/users/3413239/pg2455'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 7047,\n",
       "  'accepted_answer_id': 33019940,\n",
       "  'answer_count': 5,\n",
       "  'score': 14,\n",
       "  'last_activity_date': 1617072633,\n",
       "  'creation_date': 1425143678,\n",
       "  'last_edit_date': 1444650050,\n",
       "  'question_id': 28784528,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/28784528/how-to-download-data-from-amazons-requester-pay-buckets',\n",
       "  'title': 'How to download data from Amazon's requester pay buckets?'},\n",
       " {'tags': ['python', 'python-2.7', 'github', 'scrapy'],\n",
       "  'owner': {'account_id': 20758634,\n",
       "   'reputation': 11,\n",
       "   'user_id': 15244418,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/a-/AOh14Ggai2Rbgdh6afroPXHbitNZlLFVs1tE-z9cU4rz=k-s256',\n",
       "   'display_name': 'Kyle',\n",
       "   'link': 'https://stackoverflow.com/users/15244418/kyle'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 31,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1613756342,\n",
       "  'creation_date': 1613756342,\n",
       "  'question_id': 66282414,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/66282414/broken-github-scrapy-repo',\n",
       "  'title': 'Broken github scrapy repo?'},\n",
       " {'tags': ['python', 'optimization', 'deep-learning', 'pytorch', 'freeze'],\n",
       "  'owner': {'account_id': 19887036,\n",
       "   'reputation': 13,\n",
       "   'user_id': 14569842,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/92677ddd78ef9c475d0618cde9c22bdb?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'jungwook',\n",
       "   'link': 'https://stackoverflow.com/users/14569842/jungwook'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 862,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1612777628,\n",
       "  'creation_date': 1612763351,\n",
       "  'question_id': 66096478,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/66096478/how-train-the-pytorch-model-with-another-freeze-model',\n",
       "  'title': 'How train the pytorch model with another freeze model?'},\n",
       " {'tags': ['machine-learning',\n",
       "   'deep-learning',\n",
       "   'computer-vision',\n",
       "   'pytorch',\n",
       "   'object-detection'],\n",
       "  'owner': {'account_id': 13355903,\n",
       "   'reputation': 35,\n",
       "   'user_id': 9639451,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/P2PXR.jpg?s=256&g=1',\n",
       "   'display_name': 'martian1231',\n",
       "   'link': 'https://stackoverflow.com/users/9639451/martian1231'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 320,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1612358115,\n",
       "  'creation_date': 1611253711,\n",
       "  'question_id': 65833638,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/65833638/what-is-switchable-atrous-convolution-and-why-we-use-it',\n",
       "  'title': 'What is switchable atrous convolution and why we use it?'},\n",
       " {'tags': ['python', 'web-crawler'],\n",
       "  'owner': {'account_id': 10566788,\n",
       "   'reputation': 349,\n",
       "   'user_id': 7784797,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/4a5d1325b733f77b47ddc5930974b803?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Mr.Robot',\n",
       "   'link': 'https://stackoverflow.com/users/7784797/mr-robot'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 31,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1610119610,\n",
       "  'creation_date': 1610119610,\n",
       "  'question_id': 65631834,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/65631834/automatically-restart-crawler-after-it-is-terminated-by-server',\n",
       "  'title': 'Automatically restart crawler after it is terminated by server'},\n",
       " {'tags': ['caching', 'cuda', 'nvidia', 'bandwidth'],\n",
       "  'owner': {'account_id': 19151570,\n",
       "   'reputation': 19,\n",
       "   'user_id': 13989363,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-U2WG_D7rm1c/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8el-xNEKn4qrNkScTJP7tG_6HVg/photo.jpg?sz=256',\n",
       "   'display_name': 'Jesse Lu',\n",
       "   'link': 'https://stackoverflow.com/users/13989363/jesse-lu'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 300,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1607809506,\n",
       "  'creation_date': 1596832339,\n",
       "  'last_edit_date': 1607809506,\n",
       "  'question_id': 63308786,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/63308786/what-l2-write-bandwidth-should-i-expect-from-a-nvidia-turing-t4-gpu',\n",
       "  'title': 'What L2-write bandwidth should I expect from a Nvidia Turing T4 GPU?'},\n",
       " {'tags': ['rss', 'rss-reader'],\n",
       "  'owner': {'account_id': 2821443,\n",
       "   'reputation': 1316,\n",
       "   'user_id': 2837887,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 35,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/1d4d33b270677f268b2e025301a0bf26?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'atapaka',\n",
       "   'link': 'https://stackoverflow.com/users/2837887/atapaka'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1868,\n",
       "  'answer_count': 4,\n",
       "  'score': 5,\n",
       "  'last_activity_date': 1607483377,\n",
       "  'creation_date': 1460689523,\n",
       "  'question_id': 36637572,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/36637572/rss-feed-reader-compatible-with-arxiv',\n",
       "  'title': 'RSS feed reader compatible with arxiv'},\n",
       " {'tags': ['python', 'tensorflow', 'keras', 'google-colaboratory'],\n",
       "  'owner': {'account_id': 13000487,\n",
       "   'reputation': 11,\n",
       "   'user_id': 12286872,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/07bca712c102ab570df2e52834b51d85?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'jpviguen',\n",
       "   'link': 'https://stackoverflow.com/users/12286872/jpviguen'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 993,\n",
       "  'answer_count': 2,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1606922068,\n",
       "  'creation_date': 1572282965,\n",
       "  'last_edit_date': 1572458418,\n",
       "  'question_id': 58595506,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/58595506/flipping-and-rotating-a-tensor-within-a-u-net-in-tensorflow-2-0-exhaust-the-me',\n",
       "  'title': 'Flipping and rotating a tensor (within a U-net) in Tensorflow 2.0 exhaust the memory. How to do it properly?'},\n",
       " {'tags': ['tensorflow',\n",
       "   'machine-learning',\n",
       "   'conv-neural-network',\n",
       "   'transfer-learning'],\n",
       "  'owner': {'account_id': 11848323,\n",
       "   'reputation': 1,\n",
       "   'user_id': 14166147,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/505925a08dcfd3120a7e8b6e05d37f47?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Bunlong Lay',\n",
       "   'link': 'https://stackoverflow.com/users/14166147/bunlong-lay'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 342,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1606105944,\n",
       "  'creation_date': 1605877877,\n",
       "  'last_edit_date': 1606075686,\n",
       "  'question_id': 64930088,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/64930088/constant-loss-values-with-normal-cnns-and-transfer-learning',\n",
       "  'title': 'constant loss values with normal CNNs and transfer learning'},\n",
       " {'tags': ['python', 'scikit-learn', 'nlp', 'kaggle', 'keyerror'],\n",
       "  'owner': {'account_id': 17439198,\n",
       "   'reputation': 84,\n",
       "   'user_id': 12641628,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/a-/AAuE7mDEzUmCldVEPjLLCTZIMVCOCVBmOF8Eg-PzaARTJg=k-s256',\n",
       "   'display_name': 'amin jahani',\n",
       "   'link': 'https://stackoverflow.com/users/12641628/amin-jahani'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 267,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1604729340,\n",
       "  'creation_date': 1604725002,\n",
       "  'question_id': 64724592,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/64724592/python-traceback-keyerror-code-for-training-model-on-kaggle-text-dataset',\n",
       "  'title': 'python traceback keyerror code for training model on kaggle text dataset'},\n",
       " {'tags': ['r', 'probability', 'mle', 'expectation-maximization'],\n",
       "  'owner': {'account_id': 15168595,\n",
       "   'reputation': 1276,\n",
       "   'user_id': 10945401,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-zXIPTJBAICI/AAAAAAAAAAI/AAAAAAAAAAA/ACevoQPfERmMqkoqFIugcm9n9L4WU7kHKQ/mo/photo.jpg?sz=256',\n",
       "   'display_name': 'Tou Mou',\n",
       "   'link': 'https://stackoverflow.com/users/10945401/tou-mou'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 162,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1603282823,\n",
       "  'creation_date': 1603282823,\n",
       "  'question_id': 64463390,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/64463390/how-to-check-correctness-of-implemented-expectation-maximization-algorithm-in-r',\n",
       "  'title': 'How to check correctness of implemented expectation-maximization algorithm in r?'},\n",
       " {'tags': ['r', 'json', 'file', 'import', 'kaggle'],\n",
       "  'owner': {'account_id': 13643952,\n",
       "   'reputation': 368,\n",
       "   'user_id': 10794986,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/da692d8fb250a3d4f78cd31372410565?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'caproki',\n",
       "   'link': 'https://stackoverflow.com/users/10794986/caproki'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1068,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1600458033,\n",
       "  'creation_date': 1600458033,\n",
       "  'question_id': 63961872,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/63961872/how-to-read-this-json-file-with-jsonlite-in-r',\n",
       "  'title': 'How to read this JSON file with jsonlite in R?'},\n",
       " {'tags': ['android', 'xml', 'kotlin', 'retrofit', 'retrofit2'],\n",
       "  'owner': {'account_id': 18920722,\n",
       "   'reputation': 51,\n",
       "   'user_id': 13804838,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/1b1dbe680918dbf0f42db43ce9b26abc?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'kaunj2020',\n",
       "   'link': 'https://stackoverflow.com/users/13804838/kaunj2020'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1984,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1598469482,\n",
       "  'creation_date': 1598469482,\n",
       "  'question_id': 63604353,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/63604353/convert-xml-to-kotlin-data-class',\n",
       "  'title': 'Convert XML to Kotlin Data Class'},\n",
       " {'tags': ['python',\n",
       "   'tensorflow',\n",
       "   'keras',\n",
       "   'deep-learning',\n",
       "   'eager-execution'],\n",
       "  'owner': {'account_id': 472347,\n",
       "   'reputation': 5170,\n",
       "   'user_id': 880783,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 57,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a54c9dd0e5321a64fb06b61c83ac2f1f?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'bers',\n",
       "   'link': 'https://stackoverflow.com/users/880783/bers'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 15346,\n",
       "  'accepted_answer_id': 57707690,\n",
       "  'answer_count': 3,\n",
       "  'score': 18,\n",
       "  'last_activity_date': 1597075139,\n",
       "  'creation_date': 1567062342,\n",
       "  'last_edit_date': 1567065227,\n",
       "  'question_id': 57704771,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/57704771/inputs-to-eager-execution-function-cannot-be-keras-symbolic-tensors',\n",
       "  'title': 'Inputs to eager execution function cannot be Keras symbolic tensors'},\n",
       " {'tags': ['api', 'web-scraping', 'web-crawler', 'screen-scraping'],\n",
       "  'owner': {'account_id': 16122554,\n",
       "   'reputation': 31,\n",
       "   'user_id': 11638171,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-v8gYPFgpST4/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rekdTrnjfoDoFe-3dMePYTpJd-lmQ/mo/photo.jpg?sz=256',\n",
       "   'display_name': 'Akshay Subramanian',\n",
       "   'link': 'https://stackoverflow.com/users/11638171/akshay-subramanian'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 536,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1592113763,\n",
       "  'creation_date': 1592113313,\n",
       "  'last_edit_date': 1592113763,\n",
       "  'question_id': 62368794,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/62368794/search-results-from-arxiv-api-different-from-arxiv-advanced-search',\n",
       "  'title': 'Search Results from Arxiv API different from Arxiv Advanced search'},\n",
       " {'tags': ['python', 'tensorflow', 'keras', 'deep-learning', 'neural-network'],\n",
       "  'owner': {'account_id': 18666174,\n",
       "   'reputation': 51,\n",
       "   'user_id': 13606076,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/58b5749aa81731dbf9e7f77b1dd1977e?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Satantango',\n",
       "   'link': 'https://stackoverflow.com/users/13606076/satantango'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 284,\n",
       "  'answer_count': 1,\n",
       "  'score': 5,\n",
       "  'last_activity_date': 1590331084,\n",
       "  'creation_date': 1590307009,\n",
       "  'last_edit_date': 1590321178,\n",
       "  'question_id': 61983131,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/61983131/error-with-the-dimension-of-1dconv-input-when-using-tf-data-and-mode-fit',\n",
       "  'title': 'Error with the dimension of 1DConv input when using tf.data and mode.fit'},\n",
       " {'tags': ['perl', 'atom-feed', 'bibtex'],\n",
       "  'owner': {'account_id': 4668495,\n",
       "   'reputation': 1723,\n",
       "   'user_id': 3780931,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 69,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/44e120dc6e30e90b9d67d9af783b850c?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Bob',\n",
       "   'link': 'https://stackoverflow.com/users/3780931/bob'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 287,\n",
       "  'accepted_answer_id': 61977005,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1590293622,\n",
       "  'creation_date': 1590253568,\n",
       "  'question_id': 61975686,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/61975686/from-arxiv-id-to-bibtex-entry',\n",
       "  'title': 'from arXiv ID to BibTeX entry'},\n",
       " {'tags': ['matplotlib', 'visualization', 'cartography', 'cartogram'],\n",
       "  'owner': {'account_id': 205058,\n",
       "   'reputation': 11278,\n",
       "   'user_id': 453616,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 88,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/f5c35ad8a6275273c50d1274fd549d84?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'gspr',\n",
       "   'link': 'https://stackoverflow.com/users/453616/gspr'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 5410,\n",
       "  'accepted_answer_id': 4242411,\n",
       "  'answer_count': 5,\n",
       "  'score': 18,\n",
       "  'last_activity_date': 1589958313,\n",
       "  'creation_date': 1290098512,\n",
       "  'last_edit_date': 1441656457,\n",
       "  'question_id': 4217304,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/4217304/drawing-cartograms-with-matplotlib',\n",
       "  'title': 'Drawing cartograms with Matplotlib?'},\n",
       " {'tags': ['agda', 'derivative', 'dependent-type', 'termination', 'zipper'],\n",
       "  'owner': {'account_id': 13588140,\n",
       "   'reputation': 169,\n",
       "   'user_id': 9802282,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/948610c7bab3e912c07f742a9ff91186?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'N. Brett',\n",
       "   'link': 'https://stackoverflow.com/users/9802282/n-brett'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 331,\n",
       "  'accepted_answer_id': 61238838,\n",
       "  'answer_count': 1,\n",
       "  'score': 10,\n",
       "  'last_activity_date': 1586987575,\n",
       "  'creation_date': 1586967677,\n",
       "  'question_id': 61233632,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/61233632/derivatives-of-data-structures-in-agda',\n",
       "  'title': 'Derivatives of data structures in Agda'},\n",
       " {'tags': ['cygwin', 'emulation', 'wget', 'bulkloader'],\n",
       "  'owner': {'account_id': 17396480,\n",
       "   'reputation': 37,\n",
       "   'user_id': 12606112,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/aacf35ef514157747e161c3d73e8b345?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'MyDoom',\n",
       "   'link': 'https://stackoverflow.com/users/12606112/mydoom'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 2504,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1585303312,\n",
       "  'creation_date': 1585303312,\n",
       "  'last_edit_date': 1592644375,\n",
       "  'question_id': 60883741,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/60883741/how-to-bulk-download-files-from-the-internet-archive-review',\n",
       "  'title': 'How to bulk download files from the internet archive [REVIEW]'},\n",
       " {'tags': ['omnet++', 'hierarchical-clustering', 'adhoc', 'inet', 'topology'],\n",
       "  'owner': {'account_id': 18012638,\n",
       "   'reputation': 1,\n",
       "   'user_id': 13091871,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh4.googleusercontent.com/-jXe008BAKX4/AAAAAAAAAAI/AAAAAAAAAAA/AKF05nDuV58nqY6L6PCb4O3wrB6soa2NNg/photo.jpg?sz=256',\n",
       "   'display_name': 'v100 dolin',\n",
       "   'link': 'https://stackoverflow.com/users/13091871/v100-dolin'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 67,\n",
       "  'answer_count': 1,\n",
       "  'score': -2,\n",
       "  'last_activity_date': 1584697707,\n",
       "  'creation_date': 1584666951,\n",
       "  'question_id': 60767279,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/60767279/topology-change-star-to-hierachical',\n",
       "  'title': 'Topology change: star to hierachical?'},\n",
       " {'tags': ['node.js', 'database', 'mongodb', 'nosql', 'node-mongodb-native'],\n",
       "  'owner': {'account_id': 8651720,\n",
       "   'reputation': 1232,\n",
       "   'user_id': 6477158,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 80,\n",
       "   'profile_image': 'https://i.stack.imgur.com/cLvAu.jpg?s=256&g=1',\n",
       "   'display_name': 'NewScientists',\n",
       "   'link': 'https://stackoverflow.com/users/6477158/newscientists'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 206,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1583845078,\n",
       "  'creation_date': 1583842535,\n",
       "  'last_edit_date': 1583845078,\n",
       "  'question_id': 60617459,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/60617459/retrieve-data-from-three-different-unrelated-collections-in-a-single-query',\n",
       "  'title': 'Retrieve data from three different unrelated collections in a single query'},\n",
       " {'tags': ['python', 'tensorflow', 'rgb', 'one-hot-encoding'],\n",
       "  'owner': {'account_id': 8641638,\n",
       "   'reputation': 849,\n",
       "   'user_id': 6470174,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=256',\n",
       "   'display_name': 'Gabriele',\n",
       "   'link': 'https://stackoverflow.com/users/6470174/gabriele'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 327,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1582585221,\n",
       "  'creation_date': 1582561717,\n",
       "  'last_edit_date': 1582585221,\n",
       "  'question_id': 60380146,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/60380146/how-to-decode-rgb-segmentation-in-one-hot-tensor',\n",
       "  'title': 'How to decode RGB segmentation in one-hot tensor?'},\n",
       " {'tags': ['python', 'tensorflow'],\n",
       "  'owner': {'account_id': 10525414,\n",
       "   'reputation': 91,\n",
       "   'user_id': 7756587,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/rm8r1.png?s=256&g=1',\n",
       "   'display_name': 'Hendrik',\n",
       "   'link': 'https://stackoverflow.com/users/7756587/hendrik'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1053,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1582291061,\n",
       "  'creation_date': 1582283081,\n",
       "  'last_edit_date': 1582291061,\n",
       "  'question_id': 60337342,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/60337342/calculation-of-gradient-penalty-for-wgan-gp-fails-on-tensorflow-gpu-2-0',\n",
       "  'title': 'Calculation of Gradient Penalty for WGAN-GP fails on tensorflow-gpu 2.0'},\n",
       " {'tags': ['tensorflow',\n",
       "   'pytorch',\n",
       "   'theano',\n",
       "   'backpropagation',\n",
       "   'automatic-differentiation'],\n",
       "  'owner': {'account_id': 45260,\n",
       "   'reputation': 66692,\n",
       "   'user_id': 133374,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 79,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/8337eb6c24313a1e0e81ecae24f20406?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Albert',\n",
       "   'link': 'https://stackoverflow.com/users/133374/albert'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 627,\n",
       "  'accepted_answer_id': 59927150,\n",
       "  'answer_count': 1,\n",
       "  'score': 4,\n",
       "  'last_activity_date': 1580112511,\n",
       "  'creation_date': 1556283386,\n",
       "  'last_edit_date': 1556285444,\n",
       "  'question_id': 55868135,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/55868135/computational-graph-vs-computer-algebra-symbolic-expression',\n",
       "  'title': 'Computational graph vs (computer algebra) symbolic expression'},\n",
       " {'tags': ['tensorflow',\n",
       "   'machine-learning',\n",
       "   'deep-learning',\n",
       "   'computer-vision',\n",
       "   'object-detection'],\n",
       "  'owner': {'account_id': 16366350,\n",
       "   'reputation': 64,\n",
       "   'user_id': 11820733,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-4XOuAnWa-EU/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3recg-E279MaxMFCTUMwymNEKjw1dA/photo.jpg?sz=256',\n",
       "   'display_name': 'DRL DRL',\n",
       "   'link': 'https://stackoverflow.com/users/11820733/drl-drl'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 427,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1578755083,\n",
       "  'creation_date': 1578695930,\n",
       "  'question_id': 59689877,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/59689877/object-detection-model-stuck-at-low-map',\n",
       "  'title': 'Object Detection model stuck at low mAP'},\n",
       " {'tags': ['java', 'android', 'bluetooth'],\n",
       "  'owner': {'account_id': 12140899,\n",
       "   'reputation': 11,\n",
       "   'user_id': 8864745,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh3.googleusercontent.com/-XfNgCWxcLtk/AAAAAAAAAAI/AAAAAAAAAAc/eEGh3_7XTw4/photo.jpg?sz=256',\n",
       "   'display_name': 'DEDIPYAMAN DAS',\n",
       "   'link': 'https://stackoverflow.com/users/8864745/dedipyaman-das'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 50,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1576644827,\n",
       "  'creation_date': 1576642000,\n",
       "  'question_id': 59385321,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/59385321/communicating-with-bluetooth-on-android-without-pairing',\n",
       "  'title': 'Communicating with bluetooth on Android without pairing'},\n",
       " {'tags': ['python', 'numpy', 'scipy'],\n",
       "  'owner': {'account_id': 10106390,\n",
       "   'reputation': 101,\n",
       "   'user_id': 7468830,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/f3ae6d34081da2606f5bc754615baf44?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Iyán',\n",
       "   'link': 'https://stackoverflow.com/users/7468830/iy%c3%a1n'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 276,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1576625103,\n",
       "  'creation_date': 1576592725,\n",
       "  'last_edit_date': 1576625103,\n",
       "  'question_id': 59376329,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/59376329/improve-precision-in-solution-for-sylvester-equation-with-python-scipy',\n",
       "  'title': 'Improve precision in solution for Sylvester equation with python (scipy)'},\n",
       " {'tags': ['numpy', 'kalman-filter'],\n",
       "  'owner': {'account_id': 12143091,\n",
       "   'reputation': 53,\n",
       "   'user_id': 8866236,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/7645bf74548cac1d1529248c5e2084f2?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'bombdruid',\n",
       "   'link': 'https://stackoverflow.com/users/8866236/bombdruid'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 265,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1576561584,\n",
       "  'creation_date': 1576561584,\n",
       "  'question_id': 59368213,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/59368213/dynamic-nelson-siegel-calibration-using-kalman-filter-not-converging',\n",
       "  'title': 'Dynamic Nelson Siegel calibration using Kalman filter not converging'},\n",
       " {'tags': ['python', 'tensorflow', 'keras'],\n",
       "  'owner': {'account_id': 17212415,\n",
       "   'reputation': 21,\n",
       "   'user_id': 12461361,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-iiKEmcB65o8/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rd36p3lXHv0j4nk1HR52dFQYaTS_w/photo.jpg?sz=256',\n",
       "   'display_name': 'John',\n",
       "   'link': 'https://stackoverflow.com/users/12461361/john'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 675,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1575479204,\n",
       "  'creation_date': 1575147937,\n",
       "  'last_edit_date': 1575479204,\n",
       "  'question_id': 59120270,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/59120270/tensorflow-gradients-do-not-exist-for-bias-in-custom-layer',\n",
       "  'title': 'Tensorflow gradients do not exist for bias in custom layer'},\n",
       " {'tags': ['python', 'convolution', 'torch'],\n",
       "  'owner': {'account_id': 8945610,\n",
       "   'reputation': 223,\n",
       "   'user_id': 6673201,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/8c6c16a849aa565d72b26080efa09b5a?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Daniel Wehner',\n",
       "   'link': 'https://stackoverflow.com/users/6673201/daniel-wehner'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1844,\n",
       "  'accepted_answer_id': 58938834,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1574181219,\n",
       "  'creation_date': 1574180345,\n",
       "  'question_id': 58938555,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/58938555/pytorch-convolution-why-four-dimensions',\n",
       "  'title': 'PyTorch Convolution - Why four dimensions?'},\n",
       " {'tags': ['python', 'tensorflow', 'neural-network', 'deep-learning'],\n",
       "  'owner': {'account_id': 1749925,\n",
       "   'reputation': 405,\n",
       "   'user_id': 1599247,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/c660aca117e13a6834b099d69b360b13?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'hartikainen',\n",
       "   'link': 'https://stackoverflow.com/users/1599247/hartikainen'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 2721,\n",
       "  'answer_count': 1,\n",
       "  'score': 7,\n",
       "  'last_activity_date': 1573740636,\n",
       "  'creation_date': 1531679067,\n",
       "  'last_edit_date': 1531680369,\n",
       "  'question_id': 51351004,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/51351004/implementing-weight-normalization-using-tensorflow-layers-kernel-constraint',\n",
       "  'title': 'Implementing weight normalization using TensorFlow layers' `kernel_constraint`'},\n",
       " {'tags': ['python', 'tensorflow'],\n",
       "  'owner': {'account_id': 9149204,\n",
       "   'reputation': 111,\n",
       "   'user_id': 6804341,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://graph.facebook.com/10210658565644563/picture?type=large',\n",
       "   'display_name': 'Jong Chan Park',\n",
       "   'link': 'https://stackoverflow.com/users/6804341/jong-chan-park'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 3908,\n",
       "  'answer_count': 2,\n",
       "  'score': 11,\n",
       "  'last_activity_date': 1571131249,\n",
       "  'creation_date': 1473246786,\n",
       "  'last_edit_date': 1473247893,\n",
       "  'question_id': 39368367,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/39368367/tf-nn-depthwise-conv2d-is-too-slow-is-it-normal',\n",
       "  'title': 'tf.nn.depthwise_conv2d is too slow. is it normal?'},\n",
       " {'tags': ['python', 'tensorflow', 'tensorflow-datasets'],\n",
       "  'owner': {'account_id': 128768,\n",
       "   'reputation': 36864,\n",
       "   'user_id': 326849,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 81,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a7d9c6fbccb7dfb47cd81f17bf0bd5cc?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'jul',\n",
       "   'link': 'https://stackoverflow.com/users/326849/jul'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 509,\n",
       "  'accepted_answer_id': 58204855,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1570030732,\n",
       "  'creation_date': 1570027659,\n",
       "  'question_id': 58203947,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/58203947/how-to-do-the-element-wise-sum-of-two-tf-data-datasets-both-iterating-indefinit',\n",
       "  'title': 'How to do the element-wise sum of two tf.data.Datasets, both iterating indefinitely, with tf.data.Dataset.map?'},\n",
       " {'tags': ['pytorch'],\n",
       "  'owner': {'user_type': 'does_not_exist', 'display_name': 'user9105277'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 173,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1569618876,\n",
       "  'creation_date': 1569618876,\n",
       "  'question_id': 58141405,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/58141405/turn-list-of-tuples-into-binary-tensors',\n",
       "  'title': 'Turn list of tuples into binary tensors?'},\n",
       " {'tags': ['tensorflow',\n",
       "   'machine-learning',\n",
       "   'deep-learning',\n",
       "   'convolution',\n",
       "   'deconvolution'],\n",
       "  'owner': {'account_id': 4623325,\n",
       "   'reputation': 5878,\n",
       "   'user_id': 3747801,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 65,\n",
       "   'profile_image': 'https://i.stack.imgur.com/kHyXk.png?s=256&g=1',\n",
       "   'display_name': 'Toke Faurby',\n",
       "   'link': 'https://stackoverflow.com/users/3747801/toke-faurby'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 5713,\n",
       "  'answer_count': 3,\n",
       "  'score': 4,\n",
       "  'last_activity_date': 1566384103,\n",
       "  'creation_date': 1517295293,\n",
       "  'last_edit_date': 1566384103,\n",
       "  'question_id': 48515581,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/48515581/how-to-visualize-and-understand-transposed-convolutions',\n",
       "  'title': 'How to visualize (and understand) transposed convolutions?'},\n",
       " {'tags': ['node.js', 'pdf', 'npm'],\n",
       "  'owner': {'account_id': 3392167,\n",
       "   'reputation': 858,\n",
       "   'user_id': 2846777,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 75,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a5d366a7abc3be590833dbddb3e1607d?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Yuan Ma',\n",
       "   'link': 'https://stackoverflow.com/users/2846777/yuan-ma'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 3707,\n",
       "  'answer_count': 2,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1561844916,\n",
       "  'creation_date': 1487219198,\n",
       "  'question_id': 42264950,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/42264950/want-to-find-the-way-to-generate-the-thumbnail-image-for-a-given-pdf-file',\n",
       "  'title': 'Want to find the way to generate the thumbnail image for a given pdf file'},\n",
       " {'tags': ['amazon-s3', 'computer-science'],\n",
       "  'owner': {'account_id': 1170179,\n",
       "   'reputation': 173,\n",
       "   'user_id': 1147537,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/febd0fe4492a4f4afe126e86968e97a8?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Gabis',\n",
       "   'link': 'https://stackoverflow.com/users/1147537/gabis'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 328,\n",
       "  'answer_count': 0,\n",
       "  'score': 5,\n",
       "  'last_activity_date': 1560468999,\n",
       "  'creation_date': 1560468999,\n",
       "  'question_id': 56589748,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/56589748/how-to-bulk-download-from-arxiv-api-only-for-a-specific-field',\n",
       "  'title': 'How to bulk download from arXiv api only for a specific field?'},\n",
       " {'tags': ['pdf', 'latex', 'postscript', 'mathml'],\n",
       "  'owner': {'account_id': 6334164,\n",
       "   'reputation': 209,\n",
       "   'user_id': 5120709,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/9bad6067c6c4c4b8507324f3efd2dca1?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Ying Zhou',\n",
       "   'link': 'https://stackoverflow.com/users/5120709/ying-zhou'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 527,\n",
       "  'answer_count': 1,\n",
       "  'score': -2,\n",
       "  'last_activity_date': 1560379661,\n",
       "  'creation_date': 1542686672,\n",
       "  'last_edit_date': 1560379661,\n",
       "  'question_id': 53386054,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/53386054/how-to-successfully-convert-math-papers-to-plain-text',\n",
       "  'title': 'How to successfully convert math papers to plain text'},\n",
       " {'tags': ['python'],\n",
       "  'owner': {'account_id': 12081060,\n",
       "   'reputation': 189,\n",
       "   'user_id': 8832782,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/c22131f751b4e3923f40a9206650f6ab?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'reshadshuvo123',\n",
       "   'link': 'https://stackoverflow.com/users/8832782/reshadshuvo123'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 803,\n",
       "  'accepted_answer_id': 56389213,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1559281664,\n",
       "  'creation_date': 1559280724,\n",
       "  'question_id': 56389171,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/56389171/arxiv-api-not-taking-the-whole-query-terms',\n",
       "  'title': 'Arxiv API not taking the whole query terms'},\n",
       " {'tags': ['python', 'keras', 'deep-learning', 'activation-function'],\n",
       "  'owner': {'account_id': 15737672,\n",
       "   'reputation': 19,\n",
       "   'user_id': 11356127,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-bhN0OpDtswk/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfmaEISHA9Q6l924zLyQKnZGvfUrw/mo/photo.jpg?sz=256',\n",
       "   'display_name': 'Anirudh M',\n",
       "   'link': 'https://stackoverflow.com/users/11356127/anirudh-m'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1092,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1555306914,\n",
       "  'creation_date': 1555167105,\n",
       "  'last_edit_date': 1555306914,\n",
       "  'question_id': 55666777,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/55666777/randomized-relu-in-keras',\n",
       "  'title': 'Randomized ReLU in Keras'},\n",
       " {'tags': ['python', 'beautifulsoup'],\n",
       "  'owner': {'account_id': 12081060,\n",
       "   'reputation': 189,\n",
       "   'user_id': 8832782,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/c22131f751b4e3923f40a9206650f6ab?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'reshadshuvo123',\n",
       "   'link': 'https://stackoverflow.com/users/8832782/reshadshuvo123'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 77,\n",
       "  'accepted_answer_id': 55656709,\n",
       "  'answer_count': 2,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1555097433,\n",
       "  'creation_date': 1555089386,\n",
       "  'question_id': 55656692,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/55656692/parsing-using-beautifulsoup-to-get-exact-word',\n",
       "  'title': 'Parsing using beautifulsoup to get exact word'},\n",
       " {'tags': ['c++', 'sdf', 'rdkit'],\n",
       "  'owner': {'account_id': 14274579,\n",
       "   'reputation': 2054,\n",
       "   'user_id': 10311144,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/YcyEv.jpg?s=256&g=1',\n",
       "   'display_name': 'AMGMNPLK',\n",
       "   'link': 'https://stackoverflow.com/users/10311144/amgmnplk'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 4308,\n",
       "  'answer_count': 1,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1554893979,\n",
       "  'creation_date': 1554684869,\n",
       "  'question_id': 55564995,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/55564995/how-can-i-fix-an-oserror-file-error-bad-input-file-in-rdkit-with-sdf-file',\n",
       "  'title': 'How can I fix an `OSError: file error: bad input file` in RDkit with .sdf file?'},\n",
       " {'tags': ['python', 'graph-tool'],\n",
       "  'owner': {'account_id': 11142662,\n",
       "   'reputation': 49,\n",
       "   'user_id': 8178628,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/uLg28.jpg?s=256&g=1',\n",
       "   'display_name': 'Traphix',\n",
       "   'link': 'https://stackoverflow.com/users/8178628/traphix'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 317,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1551359194,\n",
       "  'creation_date': 1551352019,\n",
       "  'last_edit_date': 1551359194,\n",
       "  'question_id': 54924264,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/54924264/how-to-generate-a-scale-free-network-with-a-desired-power-law-distribution-and-f',\n",
       "  'title': 'How to generate a scale free network with a desired power law distribution and fixed average degrees via graph-tool?'},\n",
       " {'tags': ['python', 'request'],\n",
       "  'owner': {'account_id': 6855760,\n",
       "   'reputation': 1232,\n",
       "   'user_id': 6266776,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 80,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/da3469553c48e372757a4797c26d2394?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Laura',\n",
       "   'link': 'https://stackoverflow.com/users/6266776/laura'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 233,\n",
       "  'accepted_answer_id': 54845522,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1550954076,\n",
       "  'creation_date': 1550950888,\n",
       "  'last_edit_date': 1550954076,\n",
       "  'question_id': 54845476,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/54845476/how-to-fetch-properly-apis-with-retry-after-limitations',\n",
       "  'title': 'How to fetch properly APIs with Retry-After limitations'},\n",
       " {'tags': ['python', 'api', 'oai'],\n",
       "  'owner': {'account_id': 6855760,\n",
       "   'reputation': 1232,\n",
       "   'user_id': 6266776,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 80,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/da3469553c48e372757a4797c26d2394?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Laura',\n",
       "   'link': 'https://stackoverflow.com/users/6266776/laura'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 180,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1550020261,\n",
       "  'creation_date': 1550005486,\n",
       "  'last_edit_date': 1550020261,\n",
       "  'question_id': 54658662,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/54658662/parse-oai2-xml-format',\n",
       "  'title': 'Parse OAI2/ XML format'},\n",
       " {'tags': ['python', 'computer-vision', 'ocr'],\n",
       "  'owner': {'account_id': 1522946,\n",
       "   'reputation': 743,\n",
       "   'user_id': 1422131,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/b510f0800258bdec97f5be904afdc294?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'andre',\n",
       "   'link': 'https://stackoverflow.com/users/1422131/andre'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 2845,\n",
       "  'accepted_answer_id': 53832500,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1545143544,\n",
       "  'creation_date': 1545120629,\n",
       "  'question_id': 53828728,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/53828728/vertical-projection-and-horizontal-projection',\n",
       "  'title': 'Vertical projection and horizontal projection'},\n",
       " {'tags': ['android', 'tensorflow', 'tensorflow-lite', 'hexagon-dsp'],\n",
       "  'owner': {'account_id': 189428,\n",
       "   'reputation': 31207,\n",
       "   'user_id': 4790871,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 99,\n",
       "   'profile_image': 'https://lh4.googleusercontent.com/-7sCm6Bl96nw/AAAAAAAAAAI/AAAAAAAAAH4/0LGbJtwJZd0/photo.jpg?sz=256',\n",
       "   'display_name': 'David Parks',\n",
       "   'link': 'https://stackoverflow.com/users/4790871/david-parks'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1193,\n",
       "  'accepted_answer_id': 53750250,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1544643606,\n",
       "  'creation_date': 1544127949,\n",
       "  'last_edit_date': 1544380753,\n",
       "  'question_id': 53659157,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/53659157/running-tensorflow-lite-demo-models-on-hexagon-dsp',\n",
       "  'title': 'Running Tensorflow Lite demo models on Hexagon DSP'},\n",
       " {'tags': ['python', 'nlp', 'latex', 'extract', 'tex'],\n",
       "  'owner': {'account_id': 5310584,\n",
       "   'reputation': 1464,\n",
       "   'user_id': 4237080,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 75,\n",
       "   'profile_image': 'https://graph.facebook.com/1210377595/picture?type=large',\n",
       "   'display_name': 'brienna',\n",
       "   'link': 'https://stackoverflow.com/users/4237080/brienna'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1442,\n",
       "  'answer_count': 1,\n",
       "  'score': 6,\n",
       "  'last_activity_date': 1544257976,\n",
       "  'creation_date': 1523462909,\n",
       "  'last_edit_date': 1523470794,\n",
       "  'question_id': 49779853,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/49779853/extract-only-body-text-from-arxiv-articles-formatted-as-tex',\n",
       "  'title': 'Extract only body text from arXiv articles formatted as .tex'},\n",
       " {'tags': ['python', 'bash', 'command-line', 'bibtex'],\n",
       "  'owner': {'account_id': 2394320,\n",
       "   'reputation': 8635,\n",
       "   'user_id': 2093469,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 64,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/90188386380f1a215d99e0dbf7a2fe2b?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'sieste',\n",
       "   'link': 'https://stackoverflow.com/users/2093469/sieste'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 311,\n",
       "  'closed_date': 1542303256,\n",
       "  'accepted_answer_id': 53319184,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1542761634,\n",
       "  'creation_date': 1542280979,\n",
       "  'last_edit_date': 1542371361,\n",
       "  'question_id': 53318385,\n",
       "  'link': 'https://stackoverflow.com/questions/53318385/shell-command-to-get-bibtex-entry-from-arxiv-number',\n",
       "  'closed_reason': 'Not suitable for this site',\n",
       "  'title': 'shell command to get bibtex entry from arxiv number'},\n",
       " {'tags': ['quantum-computing'],\n",
       "  'owner': {'account_id': 11401444,\n",
       "   'reputation': 265,\n",
       "   'user_id': 8358281,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/13049288fb72279414e29e8896d3b797?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Arthur-1',\n",
       "   'link': 'https://stackoverflow.com/users/8358281/arthur-1'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 33,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1542691649,\n",
       "  'creation_date': 1542691649,\n",
       "  'question_id': 53386738,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/53386738/pointer-to-related-research-papers',\n",
       "  'title': 'Pointer to related research (papers)'},\n",
       " {'tags': ['python',\n",
       "   'tensorflow',\n",
       "   'neural-network',\n",
       "   'keras',\n",
       "   'conv-neural-network'],\n",
       "  'owner': {'account_id': 6335860,\n",
       "   'reputation': 33,\n",
       "   'user_id': 4919273,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/m22tt.jpg?s=256&g=1',\n",
       "   'display_name': 'maartenpetit',\n",
       "   'link': 'https://stackoverflow.com/users/4919273/maartenpetit'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1023,\n",
       "  'accepted_answer_id': 52806343,\n",
       "  'answer_count': 3,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1541257218,\n",
       "  'creation_date': 1539518122,\n",
       "  'last_edit_date': 1541257218,\n",
       "  'question_id': 52802370,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/52802370/cnn-predicting-the-same-class-for-all-input-data',\n",
       "  'title': 'CNN predicting the same class for all input data'},\n",
       " {'tags': ['python', 'gensim', 'lda', 'topic-modeling'],\n",
       "  'owner': {'account_id': 14075417,\n",
       "   'reputation': 68,\n",
       "   'user_id': 10167851,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://lh5.googleusercontent.com/-ZE1zvDN-1yw/AAAAAAAAAAI/AAAAAAAAABc/gZinhP-OgoM/photo.jpg?sz=256',\n",
       "   'display_name': 'Omar A',\n",
       "   'link': 'https://stackoverflow.com/users/10167851/omar-a'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 833,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1539659694,\n",
       "  'creation_date': 1539659694,\n",
       "  'question_id': 52827465,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/52827465/how-to-limit-lda-topics-to-terms-that-are-distinct',\n",
       "  'title': 'How to limit LDA topics to terms that are distinct?'},\n",
       " {'tags': ['pdf'],\n",
       "  'owner': {'account_id': 6334164,\n",
       "   'reputation': 209,\n",
       "   'user_id': 5120709,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/9bad6067c6c4c4b8507324f3efd2dca1?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Ying Zhou',\n",
       "   'link': 'https://stackoverflow.com/users/5120709/ying-zhou'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 32,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1538969375,\n",
       "  'creation_date': 1538969375,\n",
       "  'question_id': 52695026,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/52695026/how-to-obtain-information-from-tex-generated-and-ps-generated-pdfs',\n",
       "  'title': 'How to obtain information from tex-generated and ps-generated PDFs?'},\n",
       " {'tags': ['python', 'tensorflow'],\n",
       "  'owner': {'account_id': 11608756,\n",
       "   'reputation': 119,\n",
       "   'user_id': 8503559,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://graph.facebook.com/1411129602335119/picture?type=large',\n",
       "   'display_name': 'Seongkyun  Han',\n",
       "   'link': 'https://stackoverflow.com/users/8503559/seongkyun-han'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 12129,\n",
       "  'answer_count': 2,\n",
       "  'score': 6,\n",
       "  'last_activity_date': 1536918625,\n",
       "  'creation_date': 1528093448,\n",
       "  'last_edit_date': 1536918625,\n",
       "  'question_id': 50674448,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/50674448/what-is-the-different-between-ssd-and-ssd-lite-tensorflow',\n",
       "  'title': 'What is the different between SSD and SSD Lite ??(Tensorflow)'},\n",
       " {'tags': ['hyperledger-fabric', 'hyperledger', 'blockchain'],\n",
       "  'owner': {'account_id': 6885987,\n",
       "   'reputation': 367,\n",
       "   'user_id': 6484585,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://i.stack.imgur.com/AzLm2.png?s=256&g=1',\n",
       "   'display_name': 'K_inverse',\n",
       "   'link': 'https://stackoverflow.com/users/6484585/k-inverse'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 506,\n",
       "  'accepted_answer_id': 52143717,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1535953303,\n",
       "  'creation_date': 1535952472,\n",
       "  'question_id': 52143586,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/52143586/understanding-hyperledger-fabric-setting',\n",
       "  'title': 'Understanding Hyperledger Fabric Setting'},\n",
       " {'tags': ['image-processing',\n",
       "   'computer-vision',\n",
       "   'object-detection',\n",
       "   'image-segmentation',\n",
       "   'semantic-segmentation'],\n",
       "  'owner': {'account_id': 271958,\n",
       "   'reputation': 130854,\n",
       "   'user_id': 562769,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 61,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/e86681e49622d52817b36fd2a4c936b7?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Martin Thoma',\n",
       "   'link': 'https://stackoverflow.com/users/562769/martin-thoma'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 52987,\n",
       "  'accepted_answer_id': 33953195,\n",
       "  'answer_count': 3,\n",
       "  'score': 105,\n",
       "  'last_activity_date': 1530686144,\n",
       "  'creation_date': 1448576737,\n",
       "  'last_edit_date': 1530686144,\n",
       "  'question_id': 33947823,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/33947823/what-is-semantic-segmentation-compared-to-segmentation-and-scene-labeling',\n",
       "  'title': 'What is "semantic segmentation" compared to "segmentation" and "scene labeling"?'},\n",
       " {'tags': ['python', 'python-3.x', 'download'],\n",
       "  'owner': {'account_id': 2711267,\n",
       "   'reputation': 2388,\n",
       "   'user_id': 4949315,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 75,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/3f047a5b040542f9109df507800500fe?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Inspired_Blue',\n",
       "   'link': 'https://stackoverflow.com/users/4949315/inspired-blue'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 2469,\n",
       "  'accepted_answer_id': 31100873,\n",
       "  'answer_count': 2,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1530212593,\n",
       "  'creation_date': 1435497041,\n",
       "  'last_edit_date': 1435500638,\n",
       "  'question_id': 31100186,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/31100186/python-3-3-code-to-download-a-file-to-a-location-and-save-as-a-given-file-name',\n",
       "  'title': 'Python 3.3 Code to Download a file to a location and save as a given file name'},\n",
       " {'tags': ['python-3.x', 'tensorflow', 'graph', 'word2vec', 'gensim'],\n",
       "  'owner': {'account_id': 9117940,\n",
       "   'reputation': 348,\n",
       "   'user_id': 6784445,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a8f9dee74b26375a2432971ff74c25b8?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'hm6',\n",
       "   'link': 'https://stackoverflow.com/users/6784445/hm6'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1792,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1526465885,\n",
       "  'creation_date': 1517603144,\n",
       "  'last_edit_date': 1517603949,\n",
       "  'question_id': 48590383,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/48590383/graph2vec-input-data-format',\n",
       "  'title': '"graph2vec" input data format'},\n",
       " {'tags': ['machine-learning', 'lstm', 'recurrent-neural-network'],\n",
       "  'owner': {'account_id': 1720655,\n",
       "   'reputation': 942,\n",
       "   'user_id': 1757224,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 85,\n",
       "   'profile_image': 'https://i.stack.imgur.com/yUXOQ.jpg?s=256&g=1',\n",
       "   'display_name': 'ARAT',\n",
       "   'link': 'https://stackoverflow.com/users/1757224/arat'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 1109,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1526151041,\n",
       "  'creation_date': 1512064276,\n",
       "  'last_edit_date': 1512354615,\n",
       "  'question_id': 47579681,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/47579681/tanh-activation-function-in-output-gate-in-lstm-networks',\n",
       "  'title': 'tanh activation function in output gate in LSTM networks'},\n",
       " {'tags': ['python', 'database', 'csv', 'neo4j', 'probability'],\n",
       "  'owner': {'account_id': 3517562,\n",
       "   'reputation': 23,\n",
       "   'user_id': 2940610,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/3b7bff7c232955bc424f2eefdea9ba55?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Jacek Miecznikowski',\n",
       "   'link': 'https://stackoverflow.com/users/2940610/jacek-miecznikowski'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 190,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1522051348,\n",
       "  'creation_date': 1521974156,\n",
       "  'question_id': 49474871,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/49474871/generating-relationships-with-chance-percentage-in-neo4j',\n",
       "  'title': 'Generating relationships with chance percentage in Neo4j'},\n",
       " {'tags': ['telegram-bot'],\n",
       "  'owner': {'account_id': 13001177,\n",
       "   'reputation': 53,\n",
       "   'user_id': 9397248,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/bc25e34cfef1d647363376c551aee4c9?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'ee_eager',\n",
       "   'link': 'https://stackoverflow.com/users/9397248/ee-eager'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 686,\n",
       "  'accepted_answer_id': 48932000,\n",
       "  'answer_count': 1,\n",
       "  'score': 5,\n",
       "  'last_activity_date': 1519419847,\n",
       "  'creation_date': 1519313975,\n",
       "  'last_edit_date': 1519419847,\n",
       "  'question_id': 48931406,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/48931406/telegram-bot-for-arxiv',\n",
       "  'title': 'Telegram bot for arXiv'},\n",
       " {'tags': ['python', 'tensorflow'],\n",
       "  'owner': {'account_id': 4344863,\n",
       "   'reputation': 1306,\n",
       "   'user_id': 3649801,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 60,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/40e109946b34f2e7b5b8bf28e870b192?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Belval',\n",
       "   'link': 'https://stackoverflow.com/users/3649801/belval'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 714,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1519263085,\n",
       "  'creation_date': 1505788030,\n",
       "  'last_edit_date': 1505801874,\n",
       "  'question_id': 46290884,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/46290884/failedpreconditionerror-sequence-length0-x',\n",
       "  'title': 'FailedPreconditionError: sequence_length(0) <= X'},\n",
       " {'tags': ['python-3.x', 'neural-network', 'tensorflow', 'caffe'],\n",
       "  'owner': {'account_id': 2106763,\n",
       "   'reputation': 231,\n",
       "   'user_id': 1908184,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 60,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2f9b2307e29f1656b250e77c95e29e01?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'user22866',\n",
       "   'link': 'https://stackoverflow.com/users/1908184/user22866'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 299,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1518662173,\n",
       "  'creation_date': 1464271493,\n",
       "  'last_edit_date': 1592644375,\n",
       "  'question_id': 37463181,\n",
       "  'content_license': 'CC BY-SA 4.0',\n",
       "  'link': 'https://stackoverflow.com/questions/37463181/what-is-the-difference-between-using-deconvolution-to-visualize-neural-nets-and',\n",
       "  'title': 'what is the difference between using deconvolution to visualize neural nets and what autoencoders do?'},\n",
       " {'tags': ['python', 'tensorflow', 'neural-network'],\n",
       "  'owner': {'account_id': 10876030,\n",
       "   'reputation': 68,\n",
       "   'user_id': 7996417,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a6bb183394dd3d8b00f43fa06cc262ce?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'cxanter',\n",
       "   'link': 'https://stackoverflow.com/users/7996417/cxanter'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 445,\n",
       "  'answer_count': 0,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1513789165,\n",
       "  'creation_date': 1501488964,\n",
       "  'last_edit_date': 1501578868,\n",
       "  'question_id': 45410604,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/45410604/differences-between-tensorflows-inception-v3-implementation-and-rethinking-inc',\n",
       "  'title': 'Differences between TensorFlow's Inception-V3 implementation and "Rethinking Inception" paper'},\n",
       " {'tags': ['python', 'tensorflow', 'keras', 'lstm', 'variable-length-array'],\n",
       "  'owner': {'account_id': 9224625,\n",
       "   'reputation': 23,\n",
       "   'user_id': 6852809,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/ee9b6ac7f1ab03bae427cfce78bd79b7?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Vitaly',\n",
       "   'link': 'https://stackoverflow.com/users/6852809/vitaly'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 838,\n",
       "  'answer_count': 0,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1512048528,\n",
       "  'creation_date': 1512048528,\n",
       "  'question_id': 47574634,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/47574634/keras-variable-length-input-for-regression',\n",
       "  'title': 'Keras variable length input for regression'},\n",
       " {'tags': ['python-3.x',\n",
       "   'tensorflow',\n",
       "   'neural-network',\n",
       "   'deep-learning',\n",
       "   'conv-neural-network'],\n",
       "  'owner': {'account_id': 9359104,\n",
       "   'reputation': 577,\n",
       "   'user_id': 6946085,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 73,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/5a28374cda16bb61d9ac48b5bfadd19a?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'programmer',\n",
       "   'link': 'https://stackoverflow.com/users/6946085/programmer'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1298,\n",
       "  'accepted_answer_id': 46736222,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1507920154,\n",
       "  'creation_date': 1507912916,\n",
       "  'last_edit_date': 1507918114,\n",
       "  'question_id': 46734468,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/46734468/multi-level-feature-fusion-in-tensorflow',\n",
       "  'title': 'multi-level feature fusion in tensorflow'},\n",
       " {'tags': ['emacs', 'firefox-addon', 'org-mode'],\n",
       "  'owner': {'account_id': 2274351,\n",
       "   'reputation': 10818,\n",
       "   'user_id': 2001017,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 97,\n",
       "   'profile_image': 'https://i.stack.imgur.com/H0Z0x.jpg?s=256&g=1',\n",
       "   'display_name': 'Picaud Vincent',\n",
       "   'link': 'https://stackoverflow.com/users/2001017/picaud-vincent'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1031,\n",
       "  'accepted_answer_id': 46685539,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1507751095,\n",
       "  'creation_date': 1507716730,\n",
       "  'last_edit_date': 1507750996,\n",
       "  'question_id': 46685538,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/46685538/customized-org-capture-template-for-org-capture-extension',\n",
       "  'title': 'Customized org-capture-template for Org Capture Extension'},\n",
       " {'tags': ['tensorflow', 'object-detection'],\n",
       "  'owner': {'account_id': 7272387,\n",
       "   'reputation': 239,\n",
       "   'user_id': 5544931,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/6c1fbf49895a6db6b870470590f0158d?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'Sid M',\n",
       "   'link': 'https://stackoverflow.com/users/5544931/sid-m'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1990,\n",
       "  'answer_count': 1,\n",
       "  'score': 8,\n",
       "  'last_activity_date': 1499287386,\n",
       "  'creation_date': 1499190499,\n",
       "  'question_id': 44911704,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/44911704/selecting-tensorflow-object-detection-api-training-hyper-parameters',\n",
       "  'title': 'Selecting tensorflow object detection API training hyper parameters'},\n",
       " {'tags': ['python', 'lxml'],\n",
       "  'owner': {'account_id': 4457052,\n",
       "   'reputation': 5369,\n",
       "   'user_id': 3626961,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 92,\n",
       "   'profile_image': 'https://graph.facebook.com/100001104558583/picture?type=large',\n",
       "   'display_name': 'titipata',\n",
       "   'link': 'https://stackoverflow.com/users/3626961/titipata'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 258,\n",
       "  'closed_date': 1475079874,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1475024760,\n",
       "  'creation_date': 1475015108,\n",
       "  'last_edit_date': 1475017468,\n",
       "  'question_id': 39735263,\n",
       "  'link': 'https://stackoverflow.com/questions/39735263/use-lxml-find-element-to-parse-arxiv-xml-from-api',\n",
       "  'closed_reason': 'Duplicate',\n",
       "  'title': 'Use lxml find element to parse Arxiv XML from API'},\n",
       " {'tags': ['image', 'matlab', 'image-processing', 'kriging'],\n",
       "  'owner': {'account_id': 4240745,\n",
       "   'reputation': 79,\n",
       "   'user_id': 3470711,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 70,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/7a75188f28b4f12218b668f51c626965?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'cndkrt',\n",
       "   'link': 'https://stackoverflow.com/users/3470711/cndkrt'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1624,\n",
       "  'accepted_answer_id': 36296662,\n",
       "  'answer_count': 2,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1459319204,\n",
       "  'creation_date': 1459155926,\n",
       "  'last_edit_date': 1459193478,\n",
       "  'question_id': 36259154,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/36259154/applying-an-image-as-a-mask-in-matlab',\n",
       "  'title': 'Applying an image as a mask in matlab'},\n",
       " {'tags': ['dht'],\n",
       "  'owner': {'account_id': 175321,\n",
       "   'reputation': 421,\n",
       "   'user_id': 405254,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 29,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/be975edffd34ca8b0eec5c84ab8575aa?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Tim P.',\n",
       "   'link': 'https://stackoverflow.com/users/405254/tim-p'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 213,\n",
       "  'answer_count': 0,\n",
       "  'score': 6,\n",
       "  'last_activity_date': 1448676078,\n",
       "  'creation_date': 1448676078,\n",
       "  'question_id': 33966895,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/33966895/how-utorrent-implements-the-vote-system-over-the-dht',\n",
       "  'title': 'How utorrent implements the "vote" system over the DHT?'},\n",
       " {'tags': ['pdf', 'lua', 'latex', 'syntax-highlighting'],\n",
       "  'owner': {'account_id': 20790,\n",
       "   'reputation': 2626,\n",
       "   'user_id': 49985,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 83,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/29f144484e3c7613c45fd8fb41315688?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Nicholas Leonard',\n",
       "   'link': 'https://stackoverflow.com/users/49985/nicholas-leonard'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1448,\n",
       "  'accepted_answer_id': 33907149,\n",
       "  'answer_count': 2,\n",
       "  'score': 5,\n",
       "  'last_activity_date': 1448415829,\n",
       "  'creation_date': 1448384630,\n",
       "  'question_id': 33899642,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/33899642/lua-syntax-highlighting-latex-for-arxiv',\n",
       "  'title': 'Lua syntax highlighting latex for arXiv'},\n",
       " {'tags': ['javascript', 'php', 'jquery', 'pdf'],\n",
       "  'owner': {'account_id': 4614715,\n",
       "   'reputation': 852,\n",
       "   'user_id': 3741635,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 59,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2b0ad996e46d914405b22c2c25b127ee?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user3741635',\n",
       "   'link': 'https://stackoverflow.com/users/3741635/user3741635'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 2606,\n",
       "  'closed_date': 1443593834,\n",
       "  'accepted_answer_id': 32858973,\n",
       "  'answer_count': 4,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1443593517,\n",
       "  'creation_date': 1443592140,\n",
       "  'last_edit_date': 1495541030,\n",
       "  'question_id': 32858687,\n",
       "  'link': 'https://stackoverflow.com/questions/32858687/how-to-check-whether-pdf-file-exists',\n",
       "  'closed_reason': 'Duplicate',\n",
       "  'title': 'How to check whether pdf file exists?'},\n",
       " {'tags': ['php', 'html', 'file', 'pdf', 'file-get-contents'],\n",
       "  'owner': {'account_id': 4614715,\n",
       "   'reputation': 852,\n",
       "   'user_id': 3741635,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 59,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2b0ad996e46d914405b22c2c25b127ee?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user3741635',\n",
       "   'link': 'https://stackoverflow.com/users/3741635/user3741635'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 879,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1439829026,\n",
       "  'creation_date': 1439827731,\n",
       "  'last_edit_date': 1439829026,\n",
       "  'question_id': 32054966,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/32054966/how-to-check-whether-a-pdf-file-exists-from-url',\n",
       "  'title': 'How to check whether a pdf file exists from url?'},\n",
       " {'tags': ['php', 'string', 'extract'],\n",
       "  'owner': {'account_id': 4614715,\n",
       "   'reputation': 852,\n",
       "   'user_id': 3741635,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 59,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2b0ad996e46d914405b22c2c25b127ee?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user3741635',\n",
       "   'link': 'https://stackoverflow.com/users/3741635/user3741635'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 228,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1439675318,\n",
       "  'creation_date': 1439674432,\n",
       "  'question_id': 32029583,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/32029583/how-to-extract-the-abstract-of-webpage',\n",
       "  'title': 'How to extract the abstract of webpage?'},\n",
       " {'tags': ['php', 'string', 'url', 'meta'],\n",
       "  'owner': {'account_id': 4614715,\n",
       "   'reputation': 852,\n",
       "   'user_id': 3741635,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 59,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/2b0ad996e46d914405b22c2c25b127ee?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user3741635',\n",
       "   'link': 'https://stackoverflow.com/users/3741635/user3741635'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 267,\n",
       "  'accepted_answer_id': 32027013,\n",
       "  'answer_count': 1,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1439657595,\n",
       "  'creation_date': 1439656181,\n",
       "  'question_id': 32026804,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/32026804/extracting-the-title-and-abstract-from-a-webpage',\n",
       "  'title': 'Extracting the title and abstract from a webpage'},\n",
       " {'tags': ['php', 'web', 'trackback'],\n",
       "  'owner': {'account_id': 251652,\n",
       "   'reputation': 1691,\n",
       "   'user_id': 529192,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 80,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a349434ab8d7fa61be8e6f6a13d927f6?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Robert Filter',\n",
       "   'link': 'https://stackoverflow.com/users/529192/robert-filter'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 221,\n",
       "  'answer_count': 2,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1433883015,\n",
       "  'creation_date': 1319973671,\n",
       "  'last_edit_date': 1349460489,\n",
       "  'question_id': 7944602,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/7944602/submit-a-trackback-to-arxiv-user-agent-issues',\n",
       "  'title': 'Submit a trackback to arXiv - User-Agent issues'},\n",
       " {'tags': ['xml', 'xpath'],\n",
       "  'owner': {'account_id': 3848557,\n",
       "   'reputation': 184,\n",
       "   'user_id': 4776631,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/650e6abd1c632b45ae7f477d754a090d?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'jak',\n",
       "   'link': 'https://stackoverflow.com/users/4776631/jak'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 99,\n",
       "  'accepted_answer_id': 29576459,\n",
       "  'answer_count': 3,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1428748917,\n",
       "  'creation_date': 1428744674,\n",
       "  'question_id': 29576273,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/29576273/xpath-returns-always-null-for-arxiv-metadata',\n",
       "  'title': 'Xpath returns always null for arXiv metadata'},\n",
       " {'tags': ['python', 'class'],\n",
       "  'owner': {'account_id': 1082699,\n",
       "   'reputation': 197,\n",
       "   'user_id': 1079234,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 33,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/653623c8ab2aa94f882be46111bb3ae4?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Łukasz Grabowski',\n",
       "   'link': 'https://stackoverflow.com/users/1079234/%c5%81ukasz-grabowski'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 63,\n",
       "  'closed_date': 1422999968,\n",
       "  'accepted_answer_id': 28309360,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1423001559,\n",
       "  'creation_date': 1422999587,\n",
       "  'last_edit_date': 1423001559,\n",
       "  'question_id': 28309279,\n",
       "  'link': 'https://stackoverflow.com/questions/28309279/incomprehensible-behaviour-of-class-variables',\n",
       "  'closed_reason': 'Duplicate',\n",
       "  'title': 'Incomprehensible behaviour of class variables'},\n",
       " {'tags': ['amazon-web-services'],\n",
       "  'owner': {'account_id': 2286149,\n",
       "   'reputation': 730,\n",
       "   'user_id': 2010049,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/5f556e6ab640fd00c0cef1a47017a0c4?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'miniscule',\n",
       "   'link': 'https://stackoverflow.com/users/2010049/miniscule'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 2283,\n",
       "  'answer_count': 2,\n",
       "  'score': 1,\n",
       "  'last_activity_date': 1420102939,\n",
       "  'creation_date': 1420052249,\n",
       "  'last_edit_date': 1420096073,\n",
       "  'question_id': 27725238,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/27725238/accessing-an-aws-requester-pays-bucket-usage-for-arxiv-org',\n",
       "  'title': 'Accessing an AWS requester pays bucket (usage for arxiv.org)'},\n",
       " {'tags': ['graph', 'matlab', 'sna'],\n",
       "  'owner': {'account_id': 3011648,\n",
       "   'reputation': 311,\n",
       "   'user_id': 2555020,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/eceaf1c3129ff73fcdf642f5c0fea2f9?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'Ehsan',\n",
       "   'link': 'https://stackoverflow.com/users/2555020/ehsan'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 445,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1416078977,\n",
       "  'creation_date': 1373058684,\n",
       "  'question_id': 17496919,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/17496919/are-there-any-matlab-toolbox-or-software-to-simulate-diffusion-in-social-network',\n",
       "  'title': 'Are there any matlab toolbox or software to simulate diffusion in social network graph?'},\n",
       " {'tags': ['matlab', 'matrix-inverse'],\n",
       "  'owner': {'account_id': 108369,\n",
       "   'reputation': 4215,\n",
       "   'user_id': 287693,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 84,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/a2b2f6453da084d8538fd521c0a0f264?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'justik',\n",
       "   'link': 'https://stackoverflow.com/users/287693/justik'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 5399,\n",
       "  'accepted_answer_id': 13778853,\n",
       "  'answer_count': 3,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1411755112,\n",
       "  'creation_date': 1352631128,\n",
       "  'last_edit_date': 1352633259,\n",
       "  'question_id': 13330459,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/13330459/matlab-moore-penrose-pseudo-inverse-algorithm-implementation',\n",
       "  'title': 'Matlab: Moore-Penrose pseudo inverse algorithm implementation'},\n",
       " {'tags': ['python', 'scipy'],\n",
       "  'owner': {'account_id': 4285608,\n",
       "   'reputation': 1,\n",
       "   'user_id': 3503523,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/89bf332e0d3a0c8004b18e88004134ed?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'user3503523',\n",
       "   'link': 'https://stackoverflow.com/users/3503523/user3503523'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 749,\n",
       "  'answer_count': 0,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1396788118,\n",
       "  'creation_date': 1396788118,\n",
       "  'question_id': 22894182,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/22894182/python-chi-squared-minimization-problems',\n",
       "  'title': 'Python- Chi Squared Minimization Problems'},\n",
       " {'tags': ['android', 'opencv', 'image-processing', 'signal-processing'],\n",
       "  'owner': {'account_id': 2757932,\n",
       "   'reputation': 7230,\n",
       "   'user_id': 2375474,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 66,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/fe2b848606ff248cb3ab487ef426b3db?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'F1sher',\n",
       "   'link': 'https://stackoverflow.com/users/2375474/f1sher'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 494,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1387499084,\n",
       "  'creation_date': 1386797576,\n",
       "  'last_edit_date': 1387499084,\n",
       "  'question_id': 20530334,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/20530334/treshold-face-images-in-various-light',\n",
       "  'title': 'Treshold face images in various light'},\n",
       " {'tags': ['r', 'ggplot2', 'google-visualization', 'plyr', 'shiny'],\n",
       "  'owner': {'account_id': 3206948,\n",
       "   'reputation': 305,\n",
       "   'user_id': 2707841,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 79,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/cd11aa69528024441cd403c3f97b4b5e?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'conr404',\n",
       "   'link': 'https://stackoverflow.com/users/2707841/conr404'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1015,\n",
       "  'accepted_answer_id': 20023922,\n",
       "  'answer_count': 1,\n",
       "  'score': 2,\n",
       "  'last_activity_date': 1384638766,\n",
       "  'creation_date': 1384634391,\n",
       "  'last_edit_date': 1495535235,\n",
       "  'question_id': 20023606,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/20023606/shiny-efficient-way-to-use-ggplot2boxplot-a-reactive-subset-function',\n",
       "  'title': 'Shiny - Efficient way to use ggplot2(boxplot) & a 'reactive' subset function'},\n",
       " {'tags': ['java',\n",
       "   'image-processing',\n",
       "   'grouping',\n",
       "   'cluster-analysis',\n",
       "   'k-means'],\n",
       "  'owner': {'account_id': 3326606,\n",
       "   'reputation': 1,\n",
       "   'user_id': 2796547,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/20f8e42782b9678420a03c58cc6b6e10?s=256&d=identicon&r=PG&f=y&so-version=2',\n",
       "   'display_name': 'venessa',\n",
       "   'link': 'https://stackoverflow.com/users/2796547/venessa'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 976,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1383569799,\n",
       "  'creation_date': 1383410781,\n",
       "  'last_edit_date': 1383551162,\n",
       "  'question_id': 19744278,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/19744278/grouping-of-images-using-kmean',\n",
       "  'title': 'Grouping of images using KMean'},\n",
       " {'tags': ['typography', 'mathml'],\n",
       "  'owner': {'account_id': 2494244,\n",
       "   'reputation': 1,\n",
       "   'user_id': 2171091,\n",
       "   'user_type': 'registered',\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/24dbc20146794daed909b1e2e9ede26e?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'TOstojich',\n",
       "   'link': 'https://stackoverflow.com/users/2171091/tostojich'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 50,\n",
       "  'answer_count': 1,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1381192484,\n",
       "  'creation_date': 1381097048,\n",
       "  'question_id': 19214512,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/19214512/mathml-typographical-error-on-firefox-17-on-gnu-linux',\n",
       "  'title': 'MathML Typographical Error on Firefox 17 on GNU/Linux'},\n",
       " {'tags': ['r', 'cran'],\n",
       "  'owner': {'account_id': 123956,\n",
       "   'reputation': 32498,\n",
       "   'user_id': 318752,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 88,\n",
       "   'profile_image': 'https://i.stack.imgur.com/v3hRK.jpg?s=256&g=1',\n",
       "   'display_name': 'Jeroen Ooms',\n",
       "   'link': 'https://stackoverflow.com/users/318752/jeroen-ooms'},\n",
       "  'is_answered': False,\n",
       "  'view_count': 4413,\n",
       "  'closed_date': 1326611757,\n",
       "  'answer_count': 0,\n",
       "  'score': 22,\n",
       "  'last_activity_date': 1370373795,\n",
       "  'creation_date': 1326575623,\n",
       "  'last_edit_date': 1370373795,\n",
       "  'question_id': 8865400,\n",
       "  'link': 'https://stackoverflow.com/questions/8865400/security-issues-with-cran-packages',\n",
       "  'closed_reason': 'off topic',\n",
       "  'title': 'Security issues with CRAN packages'},\n",
       " {'tags': ['computer-science'],\n",
       "  'owner': {'account_id': 9167,\n",
       "   'reputation': 16340,\n",
       "   'user_id': 16827,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 72,\n",
       "   'profile_image': 'https://i.stack.imgur.com/xMFTQ.png?s=256&g=1',\n",
       "   'display_name': 'Remo.D',\n",
       "   'link': 'https://stackoverflow.com/users/16827/remo-d'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 1809,\n",
       "  'closed_date': 1351072770,\n",
       "  'accepted_answer_id': 198693,\n",
       "  'answer_count': 8,\n",
       "  'score': 16,\n",
       "  'last_activity_date': 1313207855,\n",
       "  'creation_date': 1223572810,\n",
       "  'last_edit_date': 1306345256,\n",
       "  'question_id': 188276,\n",
       "  'link': 'https://stackoverflow.com/questions/188276/online-computer-science-articles-repository',\n",
       "  'closed_reason': 'not constructive',\n",
       "  'title': 'Online Computer Science articles repository?'},\n",
       " {'tags': ['pdf', 'dataset', 'synchronization'],\n",
       "  'owner': {'account_id': 7791,\n",
       "   'reputation': 1049,\n",
       "   'user_id': 13652,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 71,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/4bab68ac38923868a17473aee9049873?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'sep332',\n",
       "   'link': 'https://stackoverflow.com/users/13652/sep332'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 110,\n",
       "  'accepted_answer_id': 3543780,\n",
       "  'answer_count': 3,\n",
       "  'score': 0,\n",
       "  'last_activity_date': 1282517356,\n",
       "  'creation_date': 1248955472,\n",
       "  'last_edit_date': 1248971868,\n",
       "  'question_id': 1206166,\n",
       "  'content_license': 'CC BY-SA 2.5',\n",
       "  'link': 'https://stackoverflow.com/questions/1206166/arxiv-replication-brainstorming',\n",
       "  'title': 'ArXiv replication brainstorming'},\n",
       " {'tags': ['firefox', 'latex', 'mathematical-typesetting'],\n",
       "  'owner': {'account_id': 2516,\n",
       "   'reputation': 31881,\n",
       "   'user_id': 3508,\n",
       "   'user_type': 'registered',\n",
       "   'accept_rate': 79,\n",
       "   'profile_image': 'https://www.gravatar.com/avatar/4192f0be13a9afca171cdc1ef0919f84?s=256&d=identicon&r=PG',\n",
       "   'display_name': 'A. Rex',\n",
       "   'link': 'https://stackoverflow.com/users/3508/a-rex'},\n",
       "  'is_answered': True,\n",
       "  'view_count': 4877,\n",
       "  'accepted_answer_id': 3032460,\n",
       "  'answer_count': 2,\n",
       "  'score': 3,\n",
       "  'last_activity_date': 1276437160,\n",
       "  'creation_date': 1272055113,\n",
       "  'last_edit_date': 1492088275,\n",
       "  'question_id': 2701841,\n",
       "  'content_license': 'CC BY-SA 3.0',\n",
       "  'link': 'https://stackoverflow.com/questions/2701841/rendering-latex-on-third-party-websites',\n",
       "  'title': 'Rendering LaTeX on third-party websites?'}]"
      ]
     },
     "execution_count": 22,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "results"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Construct dataset\n",
    "\n",
    "We want to find all questions whose answers contain arXiv links."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Saving to /Users/ag2435/repos/stackexchange/stackoverflow\n",
      "page 1: has_more=True, quota_remaining=9931/10000\n",
      "page 2: has_more=False, quota_remaining=9930/10000\n",
      "/Users/ag2435/repos/stackexchange/stackoverflow/val.json\n"
     ]
    }
   ],
   "source": [
    "with Session() as session:\n",
    "\n",
    "    for site in ['stackoverflow',]:\n",
    "        params = {\n",
    "            'order': 'desc',\n",
    "            'sort': 'activity',\n",
    "            'body': 'arxiv',\n",
    "            'site': site,\n",
    "        }\n",
    "\n",
    "        save_path = os.path.join(dest_dir, site)\n",
    "        os.makedirs(save_path, exist_ok=True)\n",
    "        print(f\"Saving to {save_path}\")\n",
    "        \n",
    "        results = list(get_search_advanced(session, **params))\n",
    "        # save results to json\n",
    "        file_path = os.path.join(save_path, 'val.json')\n",
    "        print(file_path)\n",
    "        with open(file_path, 'w') as f:\n",
    "            json.dump(results, f, indent=2)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "arxiv-agent",
   "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.0"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}