├── .gitignore ├── LICENSE ├── README.rst ├── pandas_tfrecords ├── __init__.py ├── from_tfrecords.py └── to_tfrecords.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/README.rst -------------------------------------------------------------------------------- /pandas_tfrecords/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/pandas_tfrecords/__init__.py -------------------------------------------------------------------------------- /pandas_tfrecords/from_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/pandas_tfrecords/from_tfrecords.py -------------------------------------------------------------------------------- /pandas_tfrecords/to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/pandas_tfrecords/to_tfrecords.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schipiga/pandas-tfrecords/HEAD/setup.py --------------------------------------------------------------------------------