hillstrom
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
このデータセットには、12 か月以内に最後に購入した 64,000 人の顧客が含まれています。顧客は電子メールのテストに参加しました。
- 3 分の 1 が無作為に選ばれ、メンズ商品をフィーチャーした電子メール キャンペーンを受け取ります。
- 3 分の 1 が無作為に選ばれ、レディース商品をフィーチャーした電子メール キャンペーンを受け取ります。
- 1/3 は電子メール キャンペーンを受信しないように無作為に選択されました。
電子メール キャンペーンの 2 週間後、結果が追跡されました。タスクは、男性または女性の電子メール キャンペーンが成功したかどうかを世界に伝えることです。
FeaturesDict({
'channel': Text(shape=(), dtype=string),
'conversion': int64,
'history': float32,
'history_segment': Text(shape=(), dtype=string),
'mens': int64,
'newbie': int64,
'recency': int64,
'segment': Text(shape=(), dtype=string),
'spend': float32,
'visit': int64,
'womens': int64,
'zip_code': Text(shape=(), dtype=string),
})
特徴 | クラス | 形 | Dtype | 説明 |
---|
| 特徴辞書 | | | |
チャネル | 文章 | | ストリング | |
変換 | テンソル | | int64 | |
歴史 | テンソル | | float32 | |
history_segment | 文章 | | ストリング | |
男性用 | テンソル | | int64 | |
初心者 | テンソル | | int64 | |
最新性 | テンソル | | int64 | |
セグメント | 文章 | | ストリング | |
費やす | テンソル | | float32 | |
訪問 | テンソル | | int64 | |
婦人向け | テンソル | | int64 | |
郵便番号 | 文章 | | ストリング | |
監視キー( as_supervised
docを参照): ({'channel': 'channel', 'history': 'history', 'mens': 'mens', 'newbie': 'newbie', 'recency': 'recency', 'segment': 'segment', 'womens': 'womens', 'zip_code': 'zip_code'}, 'visit')
図( tfds.show_examples ): サポートされていません。
例( tfds.as_dataframe ):
@article{entryhillstrom,
title={Hillstrom’s MineThatData Email Analytics Challenge},
author={ENTRY, WINNING}
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2022-12-06 UTC。
[null,null,["最終更新日 2022-12-06 UTC。"],[],[],null,["# hillstrom\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThis dataset contains 64,000 customers who last purchased within twelve months.\nThe customers were involved in an e-mail test.\n\n1. 1/3 were randomly chosen to receive an e-mail campaign featuring Mens merchandise.\n2. 1/3 were randomly chosen to receive an e-mail campaign featuring Womens merchandise.\n3. 1/3 were randomly chosen to not receive an e-mail campaign.\n\nDuring a period of two weeks following the e-mail campaign, results were\ntracked. The task is to tell the world if the Mens or Womens e-mail campaign was\nsuccessful.\n\n- **Homepage** :\n \u003chttps://blog.minethatdata.com/2008/03/minethatdata-e-mail-analytics-and-data.html\u003e\n\n- **Source code** :\n [`tfds.recommendation.hillstrom.Hillstrom`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/recommendation/hillstrom/hillstrom.py)\n\n- **Versions**:\n\n - **`1.0.0`** (default): Initial release.\n- **Download size** : `3.78 MiB`\n\n- **Dataset size** : `15.87 MiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n Yes\n\n- **Splits**:\n\n| Split | Examples |\n|-----------|----------|\n| `'train'` | 64,000 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'channel': Text(shape=(), dtype=string),\n 'conversion': int64,\n 'history': float32,\n 'history_segment': Text(shape=(), dtype=string),\n 'mens': int64,\n 'newbie': int64,\n 'recency': int64,\n 'segment': Text(shape=(), dtype=string),\n 'spend': float32,\n 'visit': int64,\n 'womens': int64,\n 'zip_code': Text(shape=(), dtype=string),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|-----------------|--------------|-------|---------|-------------|\n| | FeaturesDict | | | |\n| channel | Text | | string | |\n| conversion | Tensor | | int64 | |\n| history | Tensor | | float32 | |\n| history_segment | Text | | string | |\n| mens | Tensor | | int64 | |\n| newbie | Tensor | | int64 | |\n| recency | Tensor | | int64 | |\n| segment | Text | | string | |\n| spend | Tensor | | float32 | |\n| visit | Tensor | | int64 | |\n| womens | Tensor | | int64 | |\n| zip_code | Text | | string | |\n\n- **Supervised keys** (See\n [`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):\n `({'channel': 'channel', 'history': 'history', 'mens': 'mens', 'newbie':\n 'newbie', 'recency': 'recency', 'segment': 'segment', 'womens': 'womens',\n 'zip_code': 'zip_code'}, 'visit')`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n Not supported.\n\n- **Examples**\n ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples... \n\n- **Citation**:\n\n @article{entryhillstrom,\n title={Hillstrom's MineThatData Email Analytics Challenge},\n author={ENTRY, WINNING}\n }"]]