{ "info": { "author": "Amazon Web Services", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "SageMaker TensorFlow \n===============================\n\n.. role:: python(code)\n :language: python\n\nSageMaker specific extensions to TensorFlow, for Python 2.7, 3.4-3.6 and TensorFlow versions 1.7-1.12. This package includes the :python:`PipeModeDataset` class, that allows SageMaker Pipe Mode channels to be read using TensorFlow Datasets.\n\nInstall\n-------\nYou can build SageMaker TensorFlow into a docker image with the following command:\n\n::\n\n pip install sagemaker-tensorflow\n\n\nYou can also install sagemaker-tensorflow for a specific version of TensorFlow. The following command will install sagemaker-tensorflow for TensorFlow 1.7:\n\n::\n\n pip install \"sagemaker-tensorflow>=1.7,<1.8\"\n\nBuild and install from source\n-----------------------------\nThe SageMaker TensorFlow build depends on the following: \n\n* cmake\n* tensorflow\n* curl-dev\n\nTo install these run:\n\n::\n\n pip install cmake tensorflow\n\nOn Amazon Linux, curl-dev can be installed with:\n\n::\n\n yum install curl-dev\n\nOn Ubuntu, curl-dev can be installed with:\n\n::\n\n apt-get install libcurl4-openssl-dev\n\n\nTo build and install this package, run:\n\n::\n\n pip install .\n\nin this directory. \n\nTo build in a SageMaker docker image, you can use the following RUN command in your Dockerfile:\n\n::\n\n RUN git clone https://github.com/aws/sagemaker-tensorflow-extensions.git && \\\n\tcd sagemaker-tensorflow-extensions && \\\n pip install . && \\\n cd .. && \\\n rm -rf sagemaker-tensorflow-extensions\n\nBuilding for a specific TensorFlow version\n------------------------------------------\nRelease branching is used to track different versions of TensorFlow. To build for a specific release of TensorFlow, checkout the release branch prior to running a pip install. For example, to build for TensorFlow 1.7, you can run the following command in your Dockerfile:\n\n::\n\n RUN git clone https://github.com/aws/sagemaker-tensorflow-extensions.git && \\\n\tcd sagemaker-tensorflow-extensions && \\\n git checkout 1.7 && \\\n pip install . && \\\n cd .. && \\\n rm -rf sagemaker-tensorflow-extensions\n\nRequirements\n------------\nSageMaker TensorFlow extensions builds on Python 2.7, 3.4-3.6 in Linux with a TensorFlow version >= 1.7. Older versions of TensorFlow are not supported. Please make sure to checkout the branch of sagemaker-tensorflow-extensions that matches your TensorFlow version.\n\nSageMaker Pipe Mode\n-------------------\nSageMaker Pipe Mode is a mechanism for providing S3 data to a training job via Linux fifos. Training programs can read from the fifo and get high-throughput data transfer from S3, without managing the S3 access in the program itself. \n\nSageMaker Pipe Mode is enabled when a SageMaker training job is created. Multiple S3 datasets can be mapped to individual fifos, configured in the training request. Pipe Mode is covered in more detail in the SageMaker documentation: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo.html#your-algorithms-training-algo-running-container-inputdataconfig\n\nUsing the PipeModeDataset\n-------------------------\nThe :code:`PipeModeDataset` is a TensorFlow :code:`Dataset` for reading SageMaker Pipe Mode channels. After installing this package, the :code:`PipeModeDataset` can be imported from a moduled named :code:`sagemaker_tensorflow`.\n\nTo construct a :code:`PipeModeDataset` that reads TFRecord encoded records from a \"training\" channel, do the following:\n\n.. code:: python\n\n from sagemaker_tensorflow import PipeModeDataset\n\n ds = PipeModeDataset(channel='training', record_format='TFRecord')\n\nA :python:`PipeModeDataset` should be created for a SageMaker Pipe Mode channel. Each channel corresponds to a single S3 dataset, configured when the training job is created. You can create multiple :python:`PipeModeDataset` instances over different channels to read from multiple S3 datasets in the same training job.\n\nA :python:`PipeModeDataset` can read TFRecord, RecordIO, or text line records, by using the :code:`record_format` constructor argument. The :code:`record_format` keyword argument can be set to either :code:`RecordIO`, :code:`TFRecord`, or :code:`TextLine` to differentiate between the three encodings. :code:`RecordIO` is the default.\n\nA :python:`PipeModeDataset` is a regular TensorFlow :python:`Dataset` and as such can be used in TensorFlow input processing pipelines, and in TensorFlow Estimator :code:`input_fn` definitions. All :python:`Dataset` operations are supported on :python:`PipeModeDataset`. The following code snippet shows how to create a batching and parsing :python:`Dataset` that reads data from a SageMaker Pipe Mode channel:\n\n.. code:: python\n\n\tfeatures = {\n\t 'data': tf.FixedLenFeature([], tf.string),\n\t 'labels': tf.FixedLenFeature([], tf.int64),\n\t}\n\n\tdef parse(record):\n\t parsed = tf.parse_single_example(record, features)\n\t return ({\n\t 'data': tf.decode_raw(parsed['data'], tf.float64)\n\t }, parsed['labels'])\n\n\tds = PipeModeDataset(channel='training', record_format='TFRecord')\n\tnum_epochs = 20\n\tds = ds.repeat(num_epochs)\n\tds = ds.prefetch(10)\n\tds = ds.map(parse, num_parallel_calls=10)\n\tds = ds.batch(64)\n\nUsing the PipeModeDataset with the SageMaker Python SDK\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nThe :code:`sagemaker_tensorflow` module is available for TensorFlow scripts to import when launched on SageMaker via the SageMaker Python SDK. If you are using the SageMaker Python SDK :code:`TensorFlow` Estimator to launch TensorFlow training on SageMaker, note that the default channel name is :code:`training` when just a single S3 URI is passed to :code:`fit`.\n\nUsing the PipeModeDataset with SageMaker Augmented Manifest Files\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nSageMaker Augmented Manifest Files provide a mechanism to associate metdata (such as labels) with binary data (like images) for training. An Augmented Manifest File is a single json-lines file, stored as an object in S3. During training, SageMaker reads the data from an Augmented Manifest File and passes the data to the running training job, through a SageMaker Pipe Mode channel.\n\nTo learn more about preparing and using an Augmented Manifest File, please consult the SageMaker documentation on Augmented Manifest Files `here`__.\n\n.. _SMAMF: https://docs.aws.amazon.com/sagemaker/latest/dg/augmented-manifest.html\n\n__ SMAMF_\n\nYou can use the PipeModeDataset to read data from a Pipe Mode channel that is backed by an Augmented Manifest, by following these guidelines:\n\nFirst, use a Dataset :code:`batch` operation to combine successive records into a single tuple. Each attribute in an Augmented Manifest File record is queued into the Pipe Mode's fifo as a separate record. By batching, you can combine these successive per-attribute records into a single per-record tuple. In general, if your Augmented Manifest File contains n attributes, then you should issue a call to :code:`batch(n)` on your PipeModeDataset and then use a simple combining function applied with a :code:`map` to combine each per-attribute record in the batch into a single tuple. For example, assume your Augmented Manifest File contains 3 attributes, the following code sample will read Augmented Manifest records into a 3-tuple of string Tensors when applied to a PipeModeDataset.\n\n.. code:: python\n\n ds = PipeModeDataset(\"my_channel\")\n\n\tdef combine(records):\n\t return (records[0], records[1], records[2])\n\n\tds = ds.batch(3) # Batch series of three attributes together.\n\tds = ds.map(combine) # Convert each batch of three records into a single tuple with three Tensors.\n\n\t# Perform other operations on the Dataset - e.g. subsequent batching, decoding\n\t...\n\nSecond, pass :code:`\"RecordIO\"` as the value for :code:`RecordWrapperType` when you launch the SageMaker training job with an Augmented Manifest File. Doing this will cause SageMaker to wrap each per-attribute record in a RecordIO wrapper, enabling the PipeModeDataset to separate these records.\n\nThird, ensure your PipeModeDataset splits records using RecordIO decoding in your training script. You can do this by simply constructing the PipeModeDataset with no :code:`record_format` argument, as RecordIO is the default record wrapping type for the PipeModeDataset.\n\nIf you follow these steps then the PipeModeDataset will produce tuples of string Tensors that you can then decode or process further (for example, by doing a jpeg decode if your data are images).\n\nSupport\n-------\nWe're here to help. Have a question? Please open a `GitHub issue`__, we'd love to hear from you.\n\n.. _X: https://github.com/aws/sagemaker-tensorflow-extensions/issues/new\n\n__ X_\n\nLicense\n-------\n\nSageMaker TensorFlow is licensed under the Apache 2.0 License. It is copyright 2018\nAmazon.com, Inc. or its affiliates. All Rights Reserved. The license is available at:\nhttp://aws.amazon.com/apache2.0/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/aws/sagemaker-tensorflow", "keywords": "", "license": "Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "sagemaker-tensorflow", "package_url": "https://pypi.org/project/sagemaker-tensorflow/", "platform": "", "project_url": "https://pypi.org/project/sagemaker-tensorflow/", "project_urls": { "Homepage": "https://github.com/aws/sagemaker-tensorflow" }, "release_url": "https://pypi.org/project/sagemaker-tensorflow/1.14.0.1.0.0/", "requires_dist": [ "tox ; extra == 'test'", "flake8 ; extra == 'test'", "pytest ; extra == 'test'", "pytest-cov ; extra == 'test'", "pytest-xdist ; extra == 'test'", "mock ; extra == 'test'", "sagemaker ; extra == 'test'", "docker ; extra == 'test'", "boto3 ; extra == 'test'" ], "requires_python": "", "summary": "Amazon Sagemaker specific TensorFlow extensions.", "version": "1.14.0.1.0.0" }, "last_serial": 5810122, "releases": { "1.10.0.1.0.0": [ { "comment_text": "", "digests": { "md5": "c6f81567bb4c3fafe928433a031506fc", "sha256": "d425a1e993cd3a8dbf3f7b7f810b59ce94fabfb31c7373be03bab3de637434ef" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c6f81567bb4c3fafe928433a031506fc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 577215, "upload_time": "2018-08-24T20:33:10", "url": "https://files.pythonhosted.org/packages/5c/61/cec06a464ab100b27f4ebd880f3086fed4960bf82ba407c0b353a2226785/sagemaker_tensorflow-1.10.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "432c3e56d68c7e6fd8c6dd0bbade097a", "sha256": "0ef1ed9172cee7e002e32a0887faa5fc75bd2e3f4e756348f11876dd919a5214" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "432c3e56d68c7e6fd8c6dd0bbade097a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 574384, "upload_time": "2018-08-24T20:32:26", "url": "https://files.pythonhosted.org/packages/68/9b/4fffc51925711f511b942cf54003c42f1a47e347d2a1692fa164b1e7c8cc/sagemaker_tensorflow-1.10.0.1.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e080957557589355eb705c9b048ce85d", "sha256": "a730bae7e5ca0eec178f42dbae22b9e281e04beb204ce6dad529d1024be808a9" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e080957557589355eb705c9b048ce85d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 574377, "upload_time": "2018-08-24T20:31:39", "url": "https://files.pythonhosted.org/packages/bd/43/78e350f872359fc49e82649bd90f65f1a5fe4bfc4caf4814b3b50b76ef32/sagemaker_tensorflow-1.10.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6b0bdfdbc548cbb79b6696f0760e721b", "sha256": "3f877ab09b84f1bff6db1aa07f7be0ececc2465f0f5efb4e89ef54da89ccde7a" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "6b0bdfdbc548cbb79b6696f0760e721b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 574367, "upload_time": "2018-08-24T20:30:52", "url": "https://files.pythonhosted.org/packages/e3/cb/2fcbe50eae44ece00df78640b0d6e39938b25d0dd516ab900b3e8edb11d8/sagemaker_tensorflow-1.10.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.10.0.1.0.1": [ { "comment_text": "", "digests": { "md5": "7f502b5cd5a583ec8d56343d9774518c", "sha256": "2561ce36d54555e7972023e5b7c33b50526ed4165129baa3fe8ce98622fb3bd5" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7f502b5cd5a583ec8d56343d9774518c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 577459, "upload_time": "2019-01-22T14:51:01", "url": "https://files.pythonhosted.org/packages/2b/11/00200ed07b2055c86bf8b6b2064adac6ec555410cd96e91103502edd3ca0/sagemaker_tensorflow-1.10.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8aa5cc4a04c70359863351514db4a00a", "sha256": "cb286769a19856dbe6df0f448652c516a03359bdf03a07578cb062b041573f6f" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8aa5cc4a04c70359863351514db4a00a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 574645, "upload_time": "2019-01-22T14:50:17", "url": "https://files.pythonhosted.org/packages/c2/8e/c0e5bc31240899c2f3703d7e4a3459afeeca2ce128d0ac1b769d62e3fdb1/sagemaker_tensorflow-1.10.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "70556d30d11c1c30b4817c6b7403b5e9", "sha256": "483bb143040e71e4db27997759c54c92635df193edddb48aec086edf12682110" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "70556d30d11c1c30b4817c6b7403b5e9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 574612, "upload_time": "2019-01-22T14:49:33", "url": "https://files.pythonhosted.org/packages/21/74/f4dc086ddda9037d8b99b3a7c7bcd71905909f5c73a0bd664a010fef0154/sagemaker_tensorflow-1.10.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6bdf2bdfafe17a5be369229246eecc9d", "sha256": "59e0dfeabfd88788a3141db723d5438cd95dac86c1419516355d13319f44f6ab" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.10.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "6bdf2bdfafe17a5be369229246eecc9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 574606, "upload_time": "2019-01-22T14:48:46", "url": "https://files.pythonhosted.org/packages/dd/3a/97b08626809492447d64317066c9be0a53465b8b847f1356df80d882e438/sagemaker_tensorflow-1.10.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.11.0.1.0.0": [ { "comment_text": "", "digests": { "md5": "a87796016663a24fe6752b973671bb52", "sha256": "0c04a95352282a36e933946c33fcc98b265720c8743c825b753cfe96a669ca08" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "a87796016663a24fe6752b973671bb52", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 568472, "upload_time": "2018-10-25T20:49:44", "url": "https://files.pythonhosted.org/packages/7b/0d/067628c40661f35a243cba210e2e78938a15a688f7338edd2c51a029670d/sagemaker_tensorflow-1.11.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5f37dcc8d59685826609805db47d188a", "sha256": "b778250f27ab6d688cc00cf0ee52dd5b935ce37105d04438199b54f9cc0aea9e" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5f37dcc8d59685826609805db47d188a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 565650, "upload_time": "2018-10-25T20:48:51", "url": "https://files.pythonhosted.org/packages/7b/ba/ba4ec4f76f8f25bf8e4e28a3ac43ec8e00d9fd6bc0dca5bf28427c312606/sagemaker_tensorflow-1.11.0.1.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e2549dc2e237f097ed3472b26a799e88", "sha256": "ecf1c94eb30fb5e4338e42fa330cbe3ec740eddcd451db56d32b6768b671633f" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e2549dc2e237f097ed3472b26a799e88", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 565613, "upload_time": "2018-10-25T20:48:00", "url": "https://files.pythonhosted.org/packages/dd/59/13882c962fa2ae77eff186f4a1a840ba74784194b585ee733aa1293d296e/sagemaker_tensorflow-1.11.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0faa7c44f77584b8a156e874ba39ccc0", "sha256": "6ade547454b4c2406e9a8e9c1d8eec8c35f5c869e904485c9f90e44b2f38aa0e" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0faa7c44f77584b8a156e874ba39ccc0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 565679, "upload_time": "2018-10-25T20:47:11", "url": "https://files.pythonhosted.org/packages/6a/be/7415f3346811a2a5aac78b40f8fd122bcec1df8890401007f49a558f7406/sagemaker_tensorflow-1.11.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.11.0.1.0.1": [ { "comment_text": "", "digests": { "md5": "702f6314f657515dab0cfccb796b2e05", "sha256": "8a57d2318a5fcd17d8d4a4fbafdb9b1a8bcccf13ea0244b1a2eed3ef91addab0" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "702f6314f657515dab0cfccb796b2e05", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 568877, "upload_time": "2019-01-22T14:53:52", "url": "https://files.pythonhosted.org/packages/09/f0/c4d7fc160ceebc3d6d97a1abf7773842f892130e04e0badc65ad85dbac5d/sagemaker_tensorflow-1.11.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9c9427b149830f11ccddb29ff07629af", "sha256": "e57c4238658be8fad041084b91ed055ae18709c809ac3660fbb9daa810a7ded9" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9c9427b149830f11ccddb29ff07629af", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 565980, "upload_time": "2019-01-22T14:53:12", "url": "https://files.pythonhosted.org/packages/7a/b9/96c4acd7a76e4826f1b384a450614ccce3a3c18eedcf9ea97f190bd10557/sagemaker_tensorflow-1.11.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "884186a364c936fe507ef031d321ef49", "sha256": "2265bd44beb50bfb41b17e432311f09467eeee040cbfeb9d50ac806ff6ce6407" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "884186a364c936fe507ef031d321ef49", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 565954, "upload_time": "2019-01-22T14:52:29", "url": "https://files.pythonhosted.org/packages/19/29/dac661b72145c6036e0efdf76e8483e1fe55960cf139c55620b0f59d6133/sagemaker_tensorflow-1.11.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0835931adaa70f7d7cac5364dcf6d829", "sha256": "d8d9c483ced80764976419d970babc1f3b2d876c0806a61cda48c2b7c9c2e955" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.11.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0835931adaa70f7d7cac5364dcf6d829", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 566005, "upload_time": "2019-01-22T14:51:48", "url": "https://files.pythonhosted.org/packages/39/df/ef72e0069e9f075d5eec0c13031af4b20373a28cb353512ef1b3fead0da0/sagemaker_tensorflow-1.11.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.12.0.1.0.0": [ { "comment_text": "", "digests": { "md5": "7c29e7d65e013495163adeb016b6df10", "sha256": "daff348594d52e4ea6368eea86ade550eedc0e9f9fa0caa4c3d5f46a8323c255" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7c29e7d65e013495163adeb016b6df10", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 642384, "upload_time": "2018-12-15T02:51:39", "url": "https://files.pythonhosted.org/packages/f7/38/38ceed9a159672e8f1b4e35fac47974402d49e2ffd9c01150ff11890bfad/sagemaker_tensorflow-1.12.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9b8195d774af8cee4a10ed23b2be5637", "sha256": "264a53c8f9d361c35b86a9bf47fb5edac36e2ec3cbc0fe4d4f5a8a73a6dfc026" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9b8195d774af8cee4a10ed23b2be5637", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 639490, "upload_time": "2018-12-15T02:50:49", "url": "https://files.pythonhosted.org/packages/5d/53/eda4749d7f929d706bc20e286a88642d57054d624735df03c7bfb221fcb8/sagemaker_tensorflow-1.12.0.1.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e9a419a28ccbb0e4667ad2434af979ee", "sha256": "5e2493107917a8da663933b4865b49a64fd2a097d53ef5e974030fb23ecf53fd" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e9a419a28ccbb0e4667ad2434af979ee", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 639538, "upload_time": "2018-12-15T02:49:58", "url": "https://files.pythonhosted.org/packages/f5/37/17992a52a8e0175f9b3cc4eb1391707cde1009d2a8f3591fc295f353e77a/sagemaker_tensorflow-1.12.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "73f55d057b28b1c3a8d72abab808cce8", "sha256": "d6b1bf1dae21e99200cd1214012dc650dcddcfa976ae47c7d1e82fd489b8686f" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "73f55d057b28b1c3a8d72abab808cce8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 639521, "upload_time": "2018-12-15T02:49:08", "url": "https://files.pythonhosted.org/packages/02/77/f911b7090f60a138402cd613435f4f7a55743d1cf27dce5eef53f983fc3d/sagemaker_tensorflow-1.12.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.12.0.1.0.0.post1": [ { "comment_text": "", "digests": { "md5": "8d97b773896623bd353d22b9d9c4202d", "sha256": "c1f1b6b5d946d9fa328ee7a204fc8b60abb978ab99798e163b12115a2afb753b" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8d97b773896623bd353d22b9d9c4202d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 642471, "upload_time": "2018-12-15T04:03:53", "url": "https://files.pythonhosted.org/packages/a3/8b/2dd4c498ebc49a00e78da45ca1fd79e2bdb6fb7e7be10952b1b600c79694/sagemaker_tensorflow-1.12.0.1.0.0.post1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a77b56ddd6182286f195c6d00bc68224", "sha256": "2019e2b28b3d0afb7090ae9f2d3e1639d6170762873dfbc90ffdfcca0e87d925" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "a77b56ddd6182286f195c6d00bc68224", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 639545, "upload_time": "2018-12-15T04:03:25", "url": "https://files.pythonhosted.org/packages/c0/b5/407b54edaa7c9b49b50bc7f26c16b4883edfec3d1ac876590dfa0be190bd/sagemaker_tensorflow-1.12.0.1.0.0.post1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "47e7ef2d031e4e12e6aed149860474f4", "sha256": "0f42775ca91ec9b721f28bdcbbcf9bd2867898a6579e841219d88534153f70e6" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "47e7ef2d031e4e12e6aed149860474f4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 639597, "upload_time": "2018-12-15T04:02:56", "url": "https://files.pythonhosted.org/packages/91/5d/2365ebaea7dc20c3b1d5a45eb5ccf53711c7f5e5ad22c90938e9e9d1d6b6/sagemaker_tensorflow-1.12.0.1.0.0.post1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7ce00919b151e06b41c76333aecdb407", "sha256": "c6ac73655fbb50239674420a89c8dd680b7ee2b23ef53e02e0e0c78781f69eb8" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.0.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7ce00919b151e06b41c76333aecdb407", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 639576, "upload_time": "2018-12-15T04:02:28", "url": "https://files.pythonhosted.org/packages/67/35/1a81ffeaa0a52c2f65c3b4e6b02c96776c0d55c94200aa1ab5b92bfb8249/sagemaker_tensorflow-1.12.0.1.0.0.post1-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.12.0.1.0.1": [ { "comment_text": "", "digests": { "md5": "a8e2ccba6b3af27823bd26cb42fd09c0", "sha256": "5d748af2e3644adefe3ffa440519e3622df3104be87063f03df4b50575682f35" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "a8e2ccba6b3af27823bd26cb42fd09c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 644610, "upload_time": "2019-01-18T23:10:16", "url": "https://files.pythonhosted.org/packages/2b/8b/cadbe1c14eaf2e8c84538abfddf67c0ce68756c97940ae695122cf586d91/sagemaker_tensorflow-1.12.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f66aff4f6a6489a109e9297d4dc646ba", "sha256": "c8c76b13c30a2542ddb921a4b2768cba698cd69d756ca2e3f4ce9a75e9b14e49" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "f66aff4f6a6489a109e9297d4dc646ba", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 640729, "upload_time": "2019-01-18T23:09:46", "url": "https://files.pythonhosted.org/packages/60/21/db98e2fc98740276a7d77fddd50d789705485e04eb2bc614f9c9d4cd24f1/sagemaker_tensorflow-1.12.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4e671896b1e9231560215bb1a123b378", "sha256": "e65d56ddbf5ef1ad2496914ddb36655cd5d021fe562b81e6560f8a74ede98c40" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "4e671896b1e9231560215bb1a123b378", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 640776, "upload_time": "2019-01-18T23:09:15", "url": "https://files.pythonhosted.org/packages/7b/dc/5cc13ed3aab69d04771159dc2d090807379402661cfbc3b91f8c0251bc0a/sagemaker_tensorflow-1.12.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "917d282bee5b6e37b4c7051896816af4", "sha256": "ff476b516ca38b1fc4179105ecf269a96ae6be8832f418e99161f3c47241486a" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.12.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "917d282bee5b6e37b4c7051896816af4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 640752, "upload_time": "2019-01-18T23:08:44", "url": "https://files.pythonhosted.org/packages/c1/44/c4a25f13743abb46107e2d7e6a2776ff656492e811c0b789d3f43619ee67/sagemaker_tensorflow-1.12.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.13.1.1.0.0": [ { "comment_text": "", "digests": { "md5": "e2389175091a72ef1bcc7f38d7078909", "sha256": "a9a2ba9b8f65f54bdba242120c84bb19ab8f5b04ca83eb014427a07b3f156211" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.13.1.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e2389175091a72ef1bcc7f38d7078909", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 669926, "upload_time": "2019-04-25T16:28:08", "url": "https://files.pythonhosted.org/packages/68/b2/081d60bb7bbda30b0d0429ee5f469772990f094290c743d04f7ccb7c8aae/sagemaker_tensorflow-1.13.1.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "248bcdfa8f8b8de474cd0438cd578a3d", "sha256": "bcdab4d19afe3eee0900c671a2322326e39dedae7067af766d0fd9f2bed48a2e" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.13.1.1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "248bcdfa8f8b8de474cd0438cd578a3d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 665991, "upload_time": "2019-04-25T16:27:12", "url": "https://files.pythonhosted.org/packages/90/21/e302f23684f1851f5990b9a534aeafb3a3891b439bf2feed80389efef1f9/sagemaker_tensorflow-1.13.1.1.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5ff2870e9cca37190a90856e1b97e535", "sha256": "bc848b2155003565d30124e397b7d5365bad4e3452becb2ae98c394b9e3932ff" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.13.1.1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5ff2870e9cca37190a90856e1b97e535", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 666029, "upload_time": "2019-04-25T16:26:20", "url": "https://files.pythonhosted.org/packages/cd/94/c82c3af31500adb9ce4863c175110aa38fed47f88d8588e6733634c1c399/sagemaker_tensorflow-1.13.1.1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "679bbc4a2b5847ae80c7ea8302a15912", "sha256": "338df343d759a30c7f2de27f26fe7285ea35ebe6bd7fb60bfd19826631ac1c88" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.13.1.1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "679bbc4a2b5847ae80c7ea8302a15912", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 665954, "upload_time": "2019-04-25T16:25:23", "url": "https://files.pythonhosted.org/packages/e4/a3/52586f5497b1e41c0abc9ba911d2f9e78f35b88ddda89ca8ac3cf225aae6/sagemaker_tensorflow-1.13.1.1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.14.0.1.0.0": [ { "comment_text": "", "digests": { "md5": "353eb3fd68c59e982abeff003a5643dc", "sha256": "f0fce142f6310da1a0d4c012cbb3321f7d1e6d00e8f062d6ba006a423fa33031" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.14.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "353eb3fd68c59e982abeff003a5643dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 778895, "upload_time": "2019-09-10T17:02:20", "url": "https://files.pythonhosted.org/packages/82/81/2300b31fddfffa3e81d3ca5938ce430237498d12d296da42e7b118c15f78/sagemaker_tensorflow-1.14.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d19bbe26ce5f3d712e116507801e3775", "sha256": "7163c6691e89093f32241d6728fafbc1189ee9b72c0582559345294092db80f8" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.14.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d19bbe26ce5f3d712e116507801e3775", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 776131, "upload_time": "2019-07-17T01:29:41", "url": "https://files.pythonhosted.org/packages/03/cf/294ddd04ef7d60d316614ffee52351a955c975c5c5ed80587c8e3091b229/sagemaker_tensorflow-1.14.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9ae1e60692c0ca526969cc22b7496ba0", "sha256": "cb2df7885e8c212778324e48302d5475daf7764e3d0356a7c17d1528f0078873" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.14.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9ae1e60692c0ca526969cc22b7496ba0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 776123, "upload_time": "2019-07-17T01:28:26", "url": "https://files.pythonhosted.org/packages/cd/85/0a5a2ec6ac6214042688ba0dd996ad0ba95fa88b78d578733d9db0b6460d/sagemaker_tensorflow-1.14.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.7.0.1.0.0": [ { "comment_text": "", "digests": { "md5": "3132daa0395daf871c5daa150ac460e3", "sha256": "aa357a652aebc4b1c4b29002a274675487acc8e2d87031d693dd65ad032403ee" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "3132daa0395daf871c5daa150ac460e3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 561406, "upload_time": "2018-07-25T01:43:03", "url": "https://files.pythonhosted.org/packages/1e/56/eadf860827759ea226e33af651d8e127349ee67db4601e2e7648e27f719a/sagemaker_tensorflow-1.7.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" } ], "1.7.0.1.0.1": [ { "comment_text": "", "digests": { "md5": "c888c30334d7187a4b1593b5c9ed5a47", "sha256": "639e502bae18f221b3d34926d5d934da5b5c0a31a954c5920fde7521f58a4246" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c888c30334d7187a4b1593b5c9ed5a47", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 561521, "upload_time": "2018-08-05T22:17:39", "url": "https://files.pythonhosted.org/packages/6f/c5/107092a67b7954523732f0d19fb5b81acdda87fd57c8a671f437beed46dc/sagemaker_tensorflow-1.7.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "332b8a96e8032caf3d0da1e9724ac11f", "sha256": "b7a19c45ca1aa367d758b1e4e2d726896d45a3224dea1342458d0c7ee77c6364" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "332b8a96e8032caf3d0da1e9724ac11f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 558614, "upload_time": "2018-08-05T22:17:03", "url": "https://files.pythonhosted.org/packages/f8/8d/1f72bb7471069811114962318328f43793d81271bc3c38c815cae1e6fb74/sagemaker_tensorflow-1.7.0.1.0.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dc2c038ba765b7545fd228fa6f7f19f9", "sha256": "ceffb0998b3a33598f800a9b349ca2f564a7f2adf49b63c188142743a0aa0354" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "dc2c038ba765b7545fd228fa6f7f19f9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 558656, "upload_time": "2018-08-05T22:16:27", "url": "https://files.pythonhosted.org/packages/a6/03/72e1d77b7c738f25e88ce0be97108c09c064aa97f78c5d4b01a730e75e15/sagemaker_tensorflow-1.7.0.1.0.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9d691c931b1c1c0239f350ede4be9fd6", "sha256": "9662f4a738f1a167b95a4e4ab8ecef81c88687d7d2462947758df3713d524fb2" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9d691c931b1c1c0239f350ede4be9fd6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 558638, "upload_time": "2018-08-05T22:15:51", "url": "https://files.pythonhosted.org/packages/4d/15/9e229aac7ae9f14ba0e1c759f7e1553530269575d50b9e6258de027719cb/sagemaker_tensorflow-1.7.0.1.0.1-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.7.0.1.0.2": [ { "comment_text": "", "digests": { "md5": "f1e524977e1b5bc3187094f52662b475", "sha256": "cd1a6221ac2673956693dbfeaa1f79971cd2c8441c651b78ddc855b174fd066a" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "f1e524977e1b5bc3187094f52662b475", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 561333, "upload_time": "2018-08-09T20:51:53", "url": "https://files.pythonhosted.org/packages/be/82/2398796ea36c21facb643da272ead19a3d60afcb4a6d0c6caebfe64e3252/sagemaker_tensorflow-1.7.0.1.0.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "39634e144780fbe1ed1596a97fee2572", "sha256": "333ed7417507d8603f292b124f714a95ae0c86009f261882be1745e9de199d33" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "39634e144780fbe1ed1596a97fee2572", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 558428, "upload_time": "2018-08-09T20:51:10", "url": "https://files.pythonhosted.org/packages/dc/2a/4b4bb9d87b5f38d5287cb731b39ea179d705ff66d0c2a0eac765c0442a0a/sagemaker_tensorflow-1.7.0.1.0.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1a991c1116eeff4f57398563dde0182e", "sha256": "083bb29cedbd5338b6d2bff11b26f0967c678432f4756ce6727845b37bcbb8bd" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1a991c1116eeff4f57398563dde0182e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 558481, "upload_time": "2018-08-09T20:50:24", "url": "https://files.pythonhosted.org/packages/e0/44/ae29281d04d0c6663505fea90cc4cd4dc4c2740ba736020445b6a463d9d7/sagemaker_tensorflow-1.7.0.1.0.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5dc4b38206872ae8d79728ed81fbafce", "sha256": "8ff85d9763fecf3e265b88b4710db65935ff0c17321398f6d18a8562d5c771ee" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5dc4b38206872ae8d79728ed81fbafce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 558448, "upload_time": "2018-08-09T20:49:38", "url": "https://files.pythonhosted.org/packages/5e/dd/8d62fc0646a791b0196aaf0228b2e9459a6e4d67776e05f9c69b3117d60e/sagemaker_tensorflow-1.7.0.1.0.2-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.7.0.1.0.4": [ { "comment_text": "", "digests": { "md5": "e5cb2f200825a4dcb34a8a44aafbe37f", "sha256": "b1c683646eb1b2cf8badf0f0380ab03c9befa22cc06c0109851c32254fe5345b" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e5cb2f200825a4dcb34a8a44aafbe37f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 561520, "upload_time": "2019-01-22T14:42:11", "url": "https://files.pythonhosted.org/packages/18/d5/c60c3450ae8c9e91b859241f4abfdbfd63c23fec54829a508cb40d1ff3e1/sagemaker_tensorflow-1.7.0.1.0.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "06e6b98f368bfbd57a4af19b9a9e7efc", "sha256": "80c044920a76fbe05b2297982748537d8b93ebb90622576fde66d463f9375de7" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "06e6b98f368bfbd57a4af19b9a9e7efc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 558693, "upload_time": "2019-01-22T14:41:30", "url": "https://files.pythonhosted.org/packages/56/af/42239d5f176fea6654f2518663c1cbbd54ae05c31c2050012ceee01fcd79/sagemaker_tensorflow-1.7.0.1.0.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "59894ba9389da9bdaaf51fd08e3ee9a6", "sha256": "a58e08a8302005a3848a8c200169496a5e09bf58a6ada6edbee6eb989c52d03b" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "59894ba9389da9bdaaf51fd08e3ee9a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 558731, "upload_time": "2019-01-22T14:40:45", "url": "https://files.pythonhosted.org/packages/e7/4d/7b209b6568873286b6cfdeb8f859e5dfdaa6e7b6bf82330371d5ada49e80/sagemaker_tensorflow-1.7.0.1.0.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f226e23e3568daa488b00332c29d7b6", "sha256": "0995c6c56ed682fcabb065b43c125524f6097abb7037b6e279139c87cc5c8778" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.7.0.1.0.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0f226e23e3568daa488b00332c29d7b6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 558700, "upload_time": "2019-01-22T14:40:03", "url": "https://files.pythonhosted.org/packages/b4/b5/4d25eef43dd794c334d95b58f2c18e81cce2aaaeea2742c4e6bf4c5a665f/sagemaker_tensorflow-1.7.0.1.0.4-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.8.0.1.0.0": [ { "comment_text": "", "digests": { "md5": "87f71e28a78e099bc53acbd9e84725ce", "sha256": "3da464ca8ca988b6a50cafff86a7942fdf5995a82b99c02639729b5cd41803ac" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "87f71e28a78e099bc53acbd9e84725ce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 570477, "upload_time": "2018-07-25T01:30:09", "url": "https://files.pythonhosted.org/packages/48/00/e780b421cfae0a70652b0a3ea3bbf878837034b25e40ca987751dd6992bc/sagemaker_tensorflow-1.8.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" } ], "1.8.0.1.0.2": [ { "comment_text": "", "digests": { "md5": "8e13c1f82c7fbfce70c0d607a628f9b7", "sha256": "8bcc6e1a8c45e0ec892edef8a958e8a036a5a6962e59a0652505c19595844835" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8e13c1f82c7fbfce70c0d607a628f9b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 570430, "upload_time": "2018-08-09T20:47:01", "url": "https://files.pythonhosted.org/packages/dd/5e/c9c57c74710eb713ed0ce3a1762cdca3e8709ab03750f32873d66e8ebb59/sagemaker_tensorflow-1.8.0.1.0.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2e3a463293b6c101a15befb3168527ed", "sha256": "7b9f5578fdcee961abd27aa4a59787b4848ea00affc732dc5271c46cad356532" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2e3a463293b6c101a15befb3168527ed", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 567574, "upload_time": "2018-08-09T20:46:21", "url": "https://files.pythonhosted.org/packages/b5/ff/f7625ad3e3d751d1e27b833b6028c3d4dc293899108bf288fed87292d368/sagemaker_tensorflow-1.8.0.1.0.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7a3fafa37734b3df15e894dfb348d88c", "sha256": "232dab1677eec99174c803ebf9c583ebf8c5cfea5cfa09196d3095ad46b910e5" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7a3fafa37734b3df15e894dfb348d88c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 567574, "upload_time": "2018-08-09T20:45:37", "url": "https://files.pythonhosted.org/packages/ba/84/56bdd00a09725dbb8bffb6cbe9a7fb539a0c9a0ef82f8af3d41afd70d142/sagemaker_tensorflow-1.8.0.1.0.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f668a5a4e316a3ac8d9bf9873feb2eb2", "sha256": "972523ffc098cd1896b8b785387c9bb3980c1c43c07f3593feafe56fb1a459b0" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "f668a5a4e316a3ac8d9bf9873feb2eb2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 567555, "upload_time": "2018-08-09T20:44:49", "url": "https://files.pythonhosted.org/packages/dc/d4/7c6cbf3c964dbd24e8a1c8f028eca94aeda12c0490de94e5091c19e51c3d/sagemaker_tensorflow-1.8.0.1.0.2-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.8.0.1.0.3": [ { "comment_text": "", "digests": { "md5": "fa8a5b294741f389229ca776e829af60", "sha256": "8092abf78b316e7d4c76c2abf9578f477a8809cd7bc0ec6fac4ea2e965fae56f" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "fa8a5b294741f389229ca776e829af60", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 570487, "upload_time": "2019-01-22T14:45:07", "url": "https://files.pythonhosted.org/packages/42/0f/d3cfe5a7a66f60c358427b4101429c5449d2b30a86d1de7f325833eb2cf6/sagemaker_tensorflow-1.8.0.1.0.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d36cca17e069314db592bf764fec9ee2", "sha256": "c1707d93cc131752a38670c6d38dd39b1565b61d5a595f01bedb5a4599fd619b" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d36cca17e069314db592bf764fec9ee2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 567669, "upload_time": "2019-01-22T14:44:28", "url": "https://files.pythonhosted.org/packages/bb/1f/54fed7986b5dd3ad82f01ccdc3a5c3214d0a01c6958064db7814861a9780/sagemaker_tensorflow-1.8.0.1.0.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e2c032cc7fd9e0739e73579638af80e5", "sha256": "b3a845658b1933600d56451a9ff361fd3a13c4d0a14367a86b00122e7002174a" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e2c032cc7fd9e0739e73579638af80e5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 567657, "upload_time": "2019-01-22T14:43:46", "url": "https://files.pythonhosted.org/packages/40/44/654143c36de4433a937264b0026336254f136ccadfa7304581f03cc1e5e7/sagemaker_tensorflow-1.8.0.1.0.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3b7c158c7afbe164b107664636e42e6d", "sha256": "4ca80b87cce78c2e5029e8ee1c33ffc933e81379c17b46deae55b2264b290171" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.8.0.1.0.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "3b7c158c7afbe164b107664636e42e6d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 567648, "upload_time": "2019-01-22T14:43:04", "url": "https://files.pythonhosted.org/packages/02/b4/fb2ba3c94042f80382426318b8789a3807aae420e0b06030af94d77e06a9/sagemaker_tensorflow-1.8.0.1.0.3-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.9.0.1.0.1": [ { "comment_text": "", "digests": { "md5": "472c2fb74b318311b92f92a6e27cf6ab", "sha256": "70edeb700ead6375eca5396701e044a9ea19b787420357bcea49c427a8b49d44" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "472c2fb74b318311b92f92a6e27cf6ab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 489371, "upload_time": "2018-07-24T18:51:57", "url": "https://files.pythonhosted.org/packages/07/a9/08b75c02e59f4d332971e87e7d67f69daf0d78f29b8a4523ba94a62bc2cd/sagemaker_tensorflow-1.9.0.1.0.1-cp27-cp27mu-manylinux1_x86_64.whl" } ], "1.9.0.1.0.2": [ { "comment_text": "", "digests": { "md5": "9b85d8cd21ff610442e29dd403842fe7", "sha256": "b22e89df49455136f60126a3bf9402130d4d061c12ce821a923ae9585edeed48" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9b85d8cd21ff610442e29dd403842fe7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 553190, "upload_time": "2018-07-25T00:58:57", "url": "https://files.pythonhosted.org/packages/fb/0a/279cbf60616d29841549135edeb7dd47922daa997de70050f05d21413416/sagemaker_tensorflow-1.9.0.1.0.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d5d68657b60bb9dc9e7f65c3aa800d53", "sha256": "99aac0e7e499f1b7a0eed38fbade02b589bd5ed23d2474a428403487f8d5c6eb" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d5d68657b60bb9dc9e7f65c3aa800d53", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 550419, "upload_time": "2018-08-03T03:07:14", "url": "https://files.pythonhosted.org/packages/3e/36/522bed2671041aab2dfda638ed50095c908763ed8637c08f69ef01c9b673/sagemaker_tensorflow-1.9.0.1.0.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b045ad6a4ab2ebacc470b9198e57f9d6", "sha256": "67f2860f123513b3e83f2ceee1d1a9e5e9e93558d8977854d1d89542cb4810ad" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b045ad6a4ab2ebacc470b9198e57f9d6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 550516, "upload_time": "2018-08-03T03:21:35", "url": "https://files.pythonhosted.org/packages/f1/57/8348a8a0cde3944181f50c79f391850272575a771be63bc831641f024a55/sagemaker_tensorflow-1.9.0.1.0.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2e18fb13f25e49fb20c1274c79d34c0", "sha256": "5736b3fbe7264ce63779f02073529a27726c76f14833cc3b67a62b62f7c6d084" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b2e18fb13f25e49fb20c1274c79d34c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 550431, "upload_time": "2018-08-03T03:21:13", "url": "https://files.pythonhosted.org/packages/d6/a1/64e3d144d903d0c38ecd51edb6a8eea4be843efaac3a48a621a1f731fa76/sagemaker_tensorflow-1.9.0.1.0.2-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.9.0.1.0.3": [ { "comment_text": "", "digests": { "md5": "d60c8a3878b106d22d8aec577446ddd9", "sha256": "56278757393da4e16ac1f37d536bd1b6908d928f53e7af9a72e1f482e83da0d2" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d60c8a3878b106d22d8aec577446ddd9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 553239, "upload_time": "2018-08-05T22:10:16", "url": "https://files.pythonhosted.org/packages/60/ae/8f9e9ee75f9cbfb74a7fa61379855b4baebd0294812fdfc3916db1d22359/sagemaker_tensorflow-1.9.0.1.0.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "57856287397d3c6c4f24b0fba82fd9d4", "sha256": "7297b6e8c3b2579fed595c0d01997d9b7d6db158b322cedf8bf0220dfce336bd" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "57856287397d3c6c4f24b0fba82fd9d4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 550442, "upload_time": "2018-08-05T22:09:54", "url": "https://files.pythonhosted.org/packages/31/75/97206c309d52f804cc947059b2af8dc168178b68a883b7df30e4680b365e/sagemaker_tensorflow-1.9.0.1.0.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88cef84d8e0928f2219a37d03c42dd40", "sha256": "ff2de2acd9212925d4e835d7e1ad8d256a477a3a8932245e3accae619bec2538" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "88cef84d8e0928f2219a37d03c42dd40", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 550536, "upload_time": "2018-08-05T22:09:33", "url": "https://files.pythonhosted.org/packages/94/fd/d7ac2f22d2c61701dbe7c1b8612ece74c10ccc98d7535752dea6e01df4bb/sagemaker_tensorflow-1.9.0.1.0.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4af5b7dc38b3fe0fc40d35af88597410", "sha256": "4cbeb42f186d2c019d565b2edcb95de7a59870e859aac3b377ff85b0df058508" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "4af5b7dc38b3fe0fc40d35af88597410", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 550452, "upload_time": "2018-08-05T21:59:30", "url": "https://files.pythonhosted.org/packages/f4/a6/c6d91f068c7c6b1984565359a202af6e33adef61d78b1d4a57d87c958d73/sagemaker_tensorflow-1.9.0.1.0.3-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.9.0.1.0.4": [ { "comment_text": "", "digests": { "md5": "6f01983ae524c9f0199526cae985047a", "sha256": "ab47a005ef6d588444a04a1260640e0d69e978441ecfbedd3f6aba4c9220950a" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "6f01983ae524c9f0199526cae985047a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 553091, "upload_time": "2018-08-09T19:22:11", "url": "https://files.pythonhosted.org/packages/0a/f6/1bd2c5bdb9a5db5d94cfe180e098ccecf6f1d063dd8c90131957ac36de0b/sagemaker_tensorflow-1.9.0.1.0.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f3498d9b5d81335702d7f1cb9850987", "sha256": "535aff80deeeaa959579541c9956c0e6dbf4bd25c801589063f5eb69437f8f94" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8f3498d9b5d81335702d7f1cb9850987", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 550270, "upload_time": "2018-08-09T19:21:43", "url": "https://files.pythonhosted.org/packages/ff/14/6ad1a384e103c1d16568ba57917a604b9911ca927b7a6fae157a2d8a813c/sagemaker_tensorflow-1.9.0.1.0.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3611d56a8718d730868653cb8a783627", "sha256": "741fa2ba2c806a3228548817630f8439e57fa51c50a423f8b1231ab2f1c2c93e" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "3611d56a8718d730868653cb8a783627", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 550377, "upload_time": "2018-08-09T19:21:14", "url": "https://files.pythonhosted.org/packages/0d/08/0bfd1cee56d81f6ecdad79afde311900258295dde4f1cf80f3acd9553c0c/sagemaker_tensorflow-1.9.0.1.0.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1925fc59f5d600dea7e2c484288199b0", "sha256": "ab61d0416ddb7d240c7f2b0ce632599460850bec362a941c5e38279f22828521" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1925fc59f5d600dea7e2c484288199b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 550281, "upload_time": "2018-08-09T19:20:45", "url": "https://files.pythonhosted.org/packages/25/97/4c2f8196280f5cc97190272b69b79beee1b99f3d4abc5a11e34e66a373f1/sagemaker_tensorflow-1.9.0.1.0.4-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.9.0.1.0.5": [ { "comment_text": "", "digests": { "md5": "34a657949931846b8a9833a8510e00d2", "sha256": "c4c7b38f3904d1e8f7c8d44658c5570cc0c2e415d626eb301820c4c1a4ed5a8c" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "34a657949931846b8a9833a8510e00d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 553071, "upload_time": "2018-08-24T20:23:56", "url": "https://files.pythonhosted.org/packages/62/eb/5bdcc635593bda82e248873e54fe76d27e73f1deca812b13585028bf81cc/sagemaker_tensorflow-1.9.0.1.0.5-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "95a7e9b36555108d8bf616c55c0d43ae", "sha256": "a71b9cca11e42ecfc1ac5e24faaa0c5e4ee72950c8c5fc54847ea7520a9b955d" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "95a7e9b36555108d8bf616c55c0d43ae", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 550274, "upload_time": "2018-08-24T20:23:17", "url": "https://files.pythonhosted.org/packages/7b/15/bb63b32dea5d8678ec3b073cd832d40585bb276430bd8a32e14576dde5f5/sagemaker_tensorflow-1.9.0.1.0.5-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "73c8f49d86497f904ab077ce7a7b7b13", "sha256": "a3f64839b585ef89259aa75545ca848d618ddc3b7d7360f6009a2f21666eaed1" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "73c8f49d86497f904ab077ce7a7b7b13", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 550375, "upload_time": "2018-08-24T20:22:35", "url": "https://files.pythonhosted.org/packages/5e/62/4466e20834fd80b0246b2f554b429b75fe02c868fe7a5dd7f1065c8945ca/sagemaker_tensorflow-1.9.0.1.0.5-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a0ffaff55eb5ab88c671d12daf56661", "sha256": "213cb1763c2c4d67afdf7ac0350cfb474bb2213d90f36e559f1839e7e9d94441" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9a0ffaff55eb5ab88c671d12daf56661", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 550278, "upload_time": "2018-08-24T20:21:55", "url": "https://files.pythonhosted.org/packages/d2/ca/4344cfda362d90b308ccf7527a4ecdb0d0a7e4ed0ec892039ccdc34f725d/sagemaker_tensorflow-1.9.0.1.0.5-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.9.0.1.0.6": [ { "comment_text": "", "digests": { "md5": "598380ddbc605f2dc7361c5b191ea4fb", "sha256": "5812cf48568f363b16f067dbcbd5abc26b40aa3934f5773b190d79b014cbbd1e" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "598380ddbc605f2dc7361c5b191ea4fb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 553312, "upload_time": "2019-01-22T14:47:54", "url": "https://files.pythonhosted.org/packages/ae/98/ac09c6e9dd31ec260706e17858cc96bec576176922440e3a139fbf307800/sagemaker_tensorflow-1.9.0.1.0.6-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7c8f34decd60eb5b53a11aab0d3af48e", "sha256": "ff63af03f975014fe674b4da29060ded3b062ff376cee70b397e9ab6ca976e4a" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7c8f34decd60eb5b53a11aab0d3af48e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 550520, "upload_time": "2019-01-22T14:47:15", "url": "https://files.pythonhosted.org/packages/b2/79/e035180e2208b8f04e320bf51b98d1a2e0c85275570d7aeb0de23da73529/sagemaker_tensorflow-1.9.0.1.0.6-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8ec2b7a233f5d780218135eaccc3ee87", "sha256": "5b089ef974d44c0596c50f3589fa7c49d6ec7687f8e6c922db8ff25bbe320fd0" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8ec2b7a233f5d780218135eaccc3ee87", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 550626, "upload_time": "2019-01-22T14:46:32", "url": "https://files.pythonhosted.org/packages/27/10/1b7568a5c92b468dddaade83d28817946d259259362c5db35381bd829ead/sagemaker_tensorflow-1.9.0.1.0.6-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "18cafc9f944b9bd5e6840ad89d4db8f4", "sha256": "124b00c9f49403864a193c87adb165a88273fb3b1fd1c7b3f9ac2eb49fc023d3" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.9.0.1.0.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "18cafc9f944b9bd5e6840ad89d4db8f4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 550528, "upload_time": "2019-01-22T14:45:53", "url": "https://files.pythonhosted.org/packages/96/82/1e7fc484eaac56c1f552b8c0deea787f83bd028adf7d61e4687d0cc6a326/sagemaker_tensorflow-1.9.0.1.0.6-cp36-cp36m-manylinux1_x86_64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "353eb3fd68c59e982abeff003a5643dc", "sha256": "f0fce142f6310da1a0d4c012cbb3321f7d1e6d00e8f062d6ba006a423fa33031" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.14.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "353eb3fd68c59e982abeff003a5643dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 778895, "upload_time": "2019-09-10T17:02:20", "url": "https://files.pythonhosted.org/packages/82/81/2300b31fddfffa3e81d3ca5938ce430237498d12d296da42e7b118c15f78/sagemaker_tensorflow-1.14.0.1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d19bbe26ce5f3d712e116507801e3775", "sha256": "7163c6691e89093f32241d6728fafbc1189ee9b72c0582559345294092db80f8" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.14.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d19bbe26ce5f3d712e116507801e3775", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 776131, "upload_time": "2019-07-17T01:29:41", "url": "https://files.pythonhosted.org/packages/03/cf/294ddd04ef7d60d316614ffee52351a955c975c5c5ed80587c8e3091b229/sagemaker_tensorflow-1.14.0.1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9ae1e60692c0ca526969cc22b7496ba0", "sha256": "cb2df7885e8c212778324e48302d5475daf7764e3d0356a7c17d1528f0078873" }, "downloads": -1, "filename": "sagemaker_tensorflow-1.14.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9ae1e60692c0ca526969cc22b7496ba0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 776123, "upload_time": "2019-07-17T01:28:26", "url": "https://files.pythonhosted.org/packages/cd/85/0a5a2ec6ac6214042688ba0dd996ad0ba95fa88b78d578733d9db0b6460d/sagemaker_tensorflow-1.14.0.1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ] }