blob: 1131c8f2e7e4b0f4b5240aef8edab7ecc0f6e7db [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import functools
import operator
import os
from copy import copy
import numpy as np
import pytest
import tensorflow as tf
from petastorm.ngram import NGram
from petastorm.predicates import in_lambda
from pycarbon.core.carbon_reader import make_carbon_reader, make_batch_carbon_reader
from pycarbon.core.carbon_tf_utils import make_pycarbon_dataset
from pycarbon.tests.conftest import _ROWS_COUNT
from pycarbon.tests.core.test_carbon_common import TestSchema
import jnius_config
jnius_config.set_classpath(pytest.config.getoption("--carbon-sdk-path"))
if pytest.config.getoption("--pyspark-python") is not None and \
pytest.config.getoption("--pyspark-driver-python") is not None:
os.environ['PYSPARK_PYTHON'] = pytest.config.getoption("--pyspark-python")
os.environ['PYSPARK_DRIVER_PYTHON'] = pytest.config.getoption("--pyspark-driver-python")
elif 'PYSPARK_PYTHON' in os.environ.keys() and 'PYSPARK_DRIVER_PYTHON' in os.environ.keys():
pass
else:
raise ValueError("please set PYSPARK_PYTHON and PYSPARK_DRIVER_PYTHON variables, "
"using cmd line "
"--pyspark-python=PYSPARK_PYTHON_PATH --pyspark-driver-python=PYSPARK_DRIVER_PYTHON_PATH "
"or set PYSPARK_PYTHON and PYSPARK_DRIVER_PYTHON in system env")
_EXCLUDE_FIELDS = set(TestSchema.fields.values()) - {TestSchema.decimal}
ALL_READER_FLAVOR_FACTORIES = [
lambda url, **kwargs: make_carbon_reader(url, **_merge_params({'reader_pool_type': 'thread', 'workers_count': 1,
'schema_fields': _EXCLUDE_FIELDS}, kwargs)),
]
def _merge_params(base, overwrite):
"""Merges two dictionaries when values from ``overwrite`` takes precedence over values of ``base`` dictionary.
Both input parameters are not modified.
:param base: A dictionary
:param overwrite: A dictionary. If a value with the same key exists in ``base``, it is overwritten by the value from
this dictionary.
:return: A combined dictionary
"""
# Create a shallow copy of base
combined = copy(base)
combined.update(overwrite)
return combined
@pytest.mark.forked
@pytest.mark.parametrize('reader_factory', ALL_READER_FLAVOR_FACTORIES)
def test_with_one_shot_iterator(carbon_synthetic_dataset, reader_factory):
"""Just a bunch of read and compares of all values to the expected values"""
with reader_factory(carbon_synthetic_dataset.url) as reader:
dataset = make_pycarbon_dataset(reader)
iterator = dataset.make_one_shot_iterator()
# Make sure we have static shape info for all fields
for shape in dataset.output_shapes:
# TODO(yevgeni): check that the shapes are actually correct, not just not None
assert shape.dims is not None
# Read a bunch of entries from the dataset and compare the data to reference
with tf.Session() as sess:
iterator = iterator.get_next()
for _, _ in enumerate(carbon_synthetic_dataset.data):
actual = sess.run(iterator)._asdict()
expected = next(d for d in carbon_synthetic_dataset.data if d['id'] == actual['id'])
for key in actual.keys():
if isinstance(expected[key], str):
# Tensorflow returns all strings as bytes in python3. So we will need to decode it
actual_value = actual[key].decode()
elif isinstance(expected[key], np.ndarray) and expected[key].dtype.type == np.unicode_:
actual_value = np.array([item.decode() for item in actual[key]])
else:
actual_value = actual[key]
np.testing.assert_equal(actual_value, expected[key])
# Exhausted one full epoch. Fetching next value should trigger OutOfRangeError
with pytest.raises(tf.errors.OutOfRangeError):
sess.run(iterator)
@pytest.mark.forked
@pytest.mark.parametrize('reader_factory', ALL_READER_FLAVOR_FACTORIES)
def test_with_dataset_repeat(carbon_synthetic_dataset, reader_factory):
"""``tf.data.Dataset``'s ``repeat`` should not be used on ``make_pycarbon_dataset`` due to high costs of
``Reader initialization``. A user should use ``Reader`` built-in epochs support. Check that we raise an
error to alert of misuse."""
with reader_factory(carbon_synthetic_dataset.url) as reader:
dataset = make_pycarbon_dataset(reader)
dataset = dataset.repeat(2)
iterator = dataset.make_one_shot_iterator()
# Read a bunch of entries from the dataset and compare the data to reference
with tf.Session() as sess:
iterator = iterator.get_next()
for _, _ in enumerate(carbon_synthetic_dataset.data):
sess.run(iterator)
with pytest.raises(tf.errors.UnknownError, match=r'.*Multiple iterations.*'):
sess.run(iterator)
@pytest.mark.forked
@pytest.mark.parametrize('reader_factory', ALL_READER_FLAVOR_FACTORIES)
def test_some_processing_functions(carbon_synthetic_dataset, reader_factory):
"""Try several ``tf.data.Dataset`` dataset operations on make_pycarbon_dataset"""
# reader1 will have a single row with id=1, reader2: a single row with id=2
# Using functools.partial(_eq, 1)) which is equivalent to lambda x: x==1 because standard python pickle
# can not pickle this lambda
with reader_factory(carbon_synthetic_dataset.url,
predicate=in_lambda(['id'], functools.partial(operator.eq, 1))) as reader1:
with reader_factory(carbon_synthetic_dataset.url,
predicate=in_lambda(['id'], functools.partial(operator.eq, 2))) as reader2:
dataset = make_pycarbon_dataset(reader1) \
.prefetch(10) \
.concatenate(make_pycarbon_dataset(reader2)) \
.map(lambda x: x.id) \
.batch(2)
next_sample = dataset.make_one_shot_iterator().get_next()
with tf.Session() as sess:
# 'actual' is expected to be content of id column of a concatenated dataset
actual = sess.run(next_sample)
np.testing.assert_array_equal(actual, [1, 2])
@pytest.mark.parametrize('reader_factory', ALL_READER_FLAVOR_FACTORIES)
def test_dataset_on_ngram_not_supported(carbon_synthetic_dataset, reader_factory):
ngram = NGram({0: list(_EXCLUDE_FIELDS), 1: [TestSchema.id]}, 100, TestSchema.id)
with reader_factory(carbon_synthetic_dataset.url, schema_fields=ngram) as reader:
with pytest.raises(NotImplementedError):
make_pycarbon_dataset(reader)
@pytest.mark.forked
def test_non_unischema_with_many_colums_with_one_shot_iterator(carbon_many_columns_non_unischema_dataset):
"""Just a bunch of read and compares of all values to the expected values"""
with make_batch_carbon_reader(carbon_many_columns_non_unischema_dataset.url, workers_count=1) as reader:
dataset = make_pycarbon_dataset(reader)
iterator = dataset.make_one_shot_iterator()
# Make sure we have static shape info for all fields
for shape in dataset.output_shapes:
# TODO(yevgeni): check that the shapes are actually correct, not just not None
assert shape.dims is not None
# Read a bunch of entries from the dataset and compare the data to reference
with tf.Session() as sess:
iterator = iterator.get_next()
sample = sess.run(iterator)._asdict()
assert set(sample.keys()) == set(carbon_many_columns_non_unischema_dataset.data[0].keys())
@pytest.mark.forked
def test_dataset_carbon_reader(carbon_synthetic_dataset):
with make_carbon_reader(carbon_synthetic_dataset.url, num_epochs=1) as reader:
dataset = make_pycarbon_dataset(reader) \
.batch(batch_size=1)
iterator = dataset.make_one_shot_iterator()
tensor = iterator.get_next()
with tf.Session() as sess:
sess.run([
tf.local_variables_initializer(),
tf.global_variables_initializer(),
])
i = 0
try:
while True:
sess.run(tensor)
i += 1
except tf.errors.OutOfRangeError:
print("Finish! the number is " + str(i))
assert i == _ROWS_COUNT
@pytest.mark.forked
def test_dataset_batch_carbon_reader(carbon_scalar_dataset):
with make_batch_carbon_reader(carbon_scalar_dataset.url, num_epochs=1) as reader:
dataset = make_pycarbon_dataset(reader) \
.apply(tf.data.experimental.unbatch()) \
.batch(batch_size=1)
iterator = dataset.make_one_shot_iterator()
tensor = iterator.get_next()
with tf.Session() as sess:
sess.run([
tf.local_variables_initializer(),
tf.global_variables_initializer(),
])
i = 0
try:
while True:
sess.run(tensor)
i += 1
except tf.errors.OutOfRangeError:
print("Finish! the number is " + str(i))
assert i == _ROWS_COUNT
@pytest.mark.forked
def test_dynamic_batch_size_of_carbon_reader(carbon_synthetic_dataset):
with make_carbon_reader(carbon_synthetic_dataset.url, num_epochs=None) as reader:
batch_size = tf.data.Dataset.range(1, 10).make_one_shot_iterator().get_next()
dataset = make_pycarbon_dataset(reader) \
.batch(batch_size=batch_size)
iterator = dataset.make_initializable_iterator()
init_op = iterator.initializer
tensor = iterator.get_next()
with tf.train.MonitoredTrainingSession() as sess:
sess.run(init_op)
sample = sess.run(tensor)
assert 1 == len(sample.id)
sess.run(init_op)
sample = sess.run(tensor)
assert 2 == len(sample.id)
@pytest.mark.forked
def test_dynamic_batch_size_of_batch_carbon_reader(carbon_scalar_dataset):
with make_batch_carbon_reader(carbon_scalar_dataset.url, num_epochs=None) as reader:
batch_size = tf.data.Dataset.range(1, 10).make_one_shot_iterator().get_next()
dataset = make_pycarbon_dataset(reader) \
.apply(tf.data.experimental.unbatch()) \
.batch(batch_size=batch_size)
iterator = dataset.make_initializable_iterator()
init_op = iterator.initializer
tensor = iterator.get_next()
with tf.train.MonitoredTrainingSession() as sess:
sess.run(init_op)
sample = sess.run(tensor)
assert 1 == len(sample.id)
sess.run(init_op)
sample = sess.run(tensor)
assert 2 == len(sample.id)