diff --git a/.gitattributes b/.gitattributes index dd5b4138e996fc7d828110578f645fa3950cd7ba..9933022190dfd2b3f95bb9059173c9d5159116e0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -845,3 +845,7 @@ videochat2/lib/python3.10/site-packages/tensorflow/python/framework/__pycache__/ videochat2/lib/python3.10/site-packages/tensorflow/python/platform/_pywrap_stacktrace_handler.so filter=lfs diff=lfs merge=lfs -text videochat2/lib/python3.10/site-packages/tensorflow/python/feature_column/__pycache__/feature_column_v2.cpython-310.pyc filter=lfs diff=lfs merge=lfs -text xverse/lib/python3.10/site-packages/tensorflow_io_gcs_filesystem/core/python/ops/libtensorflow_io_gcs_filesystem.so filter=lfs diff=lfs merge=lfs -text +videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_events_writer.so filter=lfs diff=lfs merge=lfs -text +videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_debug_events_writer.so filter=lfs diff=lfs merge=lfs -text +videochat2/lib/python3.10/site-packages/tensorflow/python/feature_column/__pycache__/feature_column.cpython-310.pyc filter=lfs diff=lfs merge=lfs -text +videochat2/lib/python3.10/site-packages/tensorflow/python/platform/_pywrap_tf2.so filter=lfs diff=lfs merge=lfs -text diff --git a/llava_next/share/terminfo/v/vi300-old b/llava_next/share/terminfo/v/vi300-old new file mode 100644 index 0000000000000000000000000000000000000000..10b3cdb0ed3af83413d4e5d918dbbfa8654cbaac Binary files /dev/null and b/llava_next/share/terminfo/v/vi300-old differ diff --git a/llava_next/share/terminfo/v/viewdata b/llava_next/share/terminfo/v/viewdata new file mode 100644 index 0000000000000000000000000000000000000000..d0197a44591bfa4bac80d26872a397e8d3e3e624 Binary files /dev/null and b/llava_next/share/terminfo/v/viewdata differ diff --git a/llava_next/share/terminfo/v/vs100-x10 b/llava_next/share/terminfo/v/vs100-x10 new file mode 100644 index 0000000000000000000000000000000000000000..92abb2fec268db7a38d1d36e608a8ed0d59ee8f0 Binary files /dev/null and b/llava_next/share/terminfo/v/vs100-x10 differ diff --git a/llava_next/share/terminfo/v/vt102-w b/llava_next/share/terminfo/v/vt102-w new file mode 100644 index 0000000000000000000000000000000000000000..18d8d1bff6232cbec8d147b0f20e76fcc51a514a Binary files /dev/null and b/llava_next/share/terminfo/v/vt102-w differ diff --git a/parrot/lib/python3.10/site-packages/torch/ao/quantization/pt2e/export_utils.py b/parrot/lib/python3.10/site-packages/torch/ao/quantization/pt2e/export_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..78c69b718d7d8869233283df587bb33c178c86d5 --- /dev/null +++ b/parrot/lib/python3.10/site-packages/torch/ao/quantization/pt2e/export_utils.py @@ -0,0 +1,223 @@ +# mypy: allow-untyped-defs +import types + +import torch +import torch.nn.functional as F + +from torch.ao.quantization.utils import _assert_and_get_unique_device + + +__all__ = [ + "model_is_exported", +] + + +class _WrapperModule(torch.nn.Module): + """Class to wrap a callable in an :class:`torch.nn.Module`. Use this if you + are trying to export a callable. + """ + + def __init__(self, fn): + super().__init__() + self.fn = fn + + def forward(self, *args, **kwargs): + """Simple forward that just calls the ``fn`` provided to :meth:`WrapperModule.__init__`.""" + return self.fn(*args, **kwargs) + + +def model_is_exported(m: torch.nn.Module) -> bool: + """ + Return True if the `torch.nn.Module` was exported, False otherwise + (e.g. if the model was FX symbolically traced or not traced at all). + """ + return isinstance(m, torch.fx.GraphModule) and any( + "val" in n.meta for n in m.graph.nodes + ) + + +def _replace_dropout(m: torch.fx.GraphModule, train_to_eval: bool): + """ + Switch dropout patterns in the model between train and eval modes. + + Dropout has different behavior in train vs eval mode. For exported models, + however, calling `model.train()` or `model.eval()` does not automatically switch + the dropout behavior between the two modes, so here we need to rewrite the aten + dropout patterns manually to achieve the same effect. + + See https://github.com/pytorch/pytorch/issues/103681. + """ + # Avoid circular dependencies + from .utils import _get_aten_graph_module_for_pattern + + # Needed to ensure subgraph matches are self-contained + m.graph.eliminate_dead_code() + m.recompile() + + for inplace in [False, True]: + + def dropout_train(x): + return F.dropout(x, p=0.5, training=True, inplace=inplace) + + def dropout_eval(x): + return F.dropout(x, p=0.5, training=False, inplace=inplace) + + example_inputs = (torch.randn(1),) + if train_to_eval: + match_pattern = _get_aten_graph_module_for_pattern( + _WrapperModule(dropout_train), example_inputs + ) + replacement_pattern = _get_aten_graph_module_for_pattern( + _WrapperModule(dropout_eval), example_inputs + ) + else: + match_pattern = _get_aten_graph_module_for_pattern( + _WrapperModule(dropout_eval), example_inputs + ) + replacement_pattern = _get_aten_graph_module_for_pattern( + _WrapperModule(dropout_train), example_inputs + ) + + from torch.fx.subgraph_rewriter import replace_pattern_with_filters + + replace_pattern_with_filters( + m, + match_pattern, + replacement_pattern, + match_filters=[], + ignore_literals=True, + ) + m.recompile() + + +def _replace_batchnorm(m: torch.fx.GraphModule, train_to_eval: bool): + """ + Switch batchnorm patterns in the model between train and eval modes. + + Batchnorm has different behavior in train vs eval mode. For exported models, + however, calling `model.train()` or `model.eval()` does not automatically switch + the batchnorm behavior between the two modes, so here we need to rewrite the aten + batchnorm patterns manually to achieve the same effect. + """ + # TODO(Leslie): This function still fails to support custom momentum and eps value. + # Enable this support in future updates. + + # Avoid circular dependencies + from .utils import _get_aten_graph_module_for_pattern + + # Needed to ensure subgraph matches are self-contained + m.graph.eliminate_dead_code() + m.recompile() + + def bn_train( + x: torch.Tensor, + bn_weight: torch.Tensor, + bn_bias: torch.Tensor, + bn_running_mean: torch.Tensor, + bn_running_var: torch.Tensor, + ): + return F.batch_norm( + x, bn_running_mean, bn_running_var, bn_weight, bn_bias, training=True + ) + + def bn_eval( + x: torch.Tensor, + bn_weight: torch.Tensor, + bn_bias: torch.Tensor, + bn_running_mean: torch.Tensor, + bn_running_var: torch.Tensor, + ): + return F.batch_norm( + x, bn_running_mean, bn_running_var, bn_weight, bn_bias, training=False + ) + + example_inputs = ( + torch.randn(1, 1, 3, 3), # x + torch.randn(1), # bn_weight + torch.randn(1), # bn_bias + torch.randn(1), # bn_running_mean + torch.randn(1), # bn_running_var + ) + + device = _assert_and_get_unique_device(m) + is_cuda = device is not None and device.type == "cuda" + bn_train_aten = _get_aten_graph_module_for_pattern( + _WrapperModule(bn_train), + example_inputs, + is_cuda, + ) + bn_eval_aten = _get_aten_graph_module_for_pattern( + _WrapperModule(bn_eval), + example_inputs, + is_cuda, + ) + + if train_to_eval: + match_pattern = bn_train_aten + replacement_pattern = bn_eval_aten + else: + match_pattern = bn_eval_aten + replacement_pattern = bn_train_aten + + from torch.fx.subgraph_rewriter import replace_pattern_with_filters + + replace_pattern_with_filters( + m, + match_pattern, + replacement_pattern, + match_filters=[], + ignore_literals=True, + ) + m.recompile() + + +# TODO: expose these under this namespace? +def _move_exported_model_to_eval(model: torch.fx.GraphModule): + """ + Move an exported GraphModule to eval mode. + + This is equivalent to model.eval() but only for certain special ops like dropout, batchnorm. + QAT users should call this before performing inference on the model. + """ + _replace_dropout(model, train_to_eval=True) + _replace_batchnorm(model, train_to_eval=True) + return model + + +def _move_exported_model_to_train(model: torch.fx.GraphModule): + """ + Move an exported GraphModule to train mode. + + This is equivalent to model.train() but only for certain special ops like dropout, batchnorm. + QAT users should call this before performing training on the model. + """ + _replace_dropout(model, train_to_eval=False) + _replace_batchnorm(model, train_to_eval=False) + return model + + +def _allow_exported_model_train_eval(model: torch.fx.GraphModule): + """ + Allow users to call `model.train()` and `model.eval()` on an exported model, + but with the effect of changing behavior between the two modes limited to special + ops only, which are currently dropout and batchnorm. + + Note: This does not achieve the same effect as what `model.train()` and `model.eval()` + does in eager models, but only provides an approximation. In particular, user code + branching on `training` flag will not function correctly in general because the branch + is already specialized at export time. Additionally, other ops beyond dropout and batchnorm + that have different train/eval behavior will also not be converted properly. + """ + + def _train(self, mode: bool = True): + if mode: + _move_exported_model_to_train(self) + else: + _move_exported_model_to_eval(self) + + def _eval(self): + _move_exported_model_to_eval(self) + + model.train = types.MethodType(_train, model) # type: ignore[method-assign] + model.eval = types.MethodType(_eval, model) # type: ignore[method-assign] + return model diff --git a/parrot/lib/python3.10/site-packages/torch/ao/quantization/quantize_pt2e.py b/parrot/lib/python3.10/site-packages/torch/ao/quantization/quantize_pt2e.py new file mode 100644 index 0000000000000000000000000000000000000000..b312d89911a57b1daca27eb5c33c1cc7d68e5e86 --- /dev/null +++ b/parrot/lib/python3.10/site-packages/torch/ao/quantization/quantize_pt2e.py @@ -0,0 +1,250 @@ +import torch +from torch.fx import GraphModule +from torch.fx import Node + +from .pt2e.prepare import prepare +from .pt2e.qat_utils import ( + _fuse_conv_bn_qat, + _fold_conv_bn_qat, +) +from .pt2e.utils import ( + _get_node_name_to_scope, + _fuse_conv_bn_, + _disallow_eval_train, +) +from .pt2e.representation import reference_representation_rewrite +from .quantize_fx import _convert_to_reference_decomposed_fx +from torch.ao.quantization.quantizer import ( # noqa: F401 + Quantizer, + QuantizationSpecBase, + QuantizationSpec, + FixedQParamsQuantizationSpec, + SharedQuantizationSpec, + DerivedQuantizationSpec, + QuantizationAnnotation, +) +from torch.fx.passes.infra.pass_manager import PassManager +from torch.ao.quantization.pt2e.duplicate_dq_pass import DuplicateDQPass +from torch.ao.quantization.pt2e.port_metadata_pass import PortNodeMetaForQDQ +from torch._export.passes.constant_folding import constant_fold + +__all__ = [ + "prepare_pt2e", + "prepare_qat_pt2e", + "convert_pt2e", +] + + +def prepare_pt2e( + model: GraphModule, + quantizer: Quantizer, +) -> GraphModule: + """Prepare a model for post training quantization + + Args: + * `model` (torch.fx.GraphModule): a model captured by `torch.export` API + in the short term we are using `torch._export.capture_pre_autograd_graph`, + in the long term we'll migrate to some `torch.export` API + * `quantizer`: A backend specific quantizer that conveys how user want the + model to be quantized. Tutorial for how to write a quantizer can be found here: + https://pytorch.org/tutorials/prototype/pt2e_quantizer.html + + Return: + A GraphModule with observer (based on quantizer annotation), ready for calibration + + Example:: + + import torch + from torch.ao.quantization.quantize_pt2e import prepare_pt2e + from torch._export import capture_pre_autograd_graph + from torch.ao.quantization.quantizer import ( + XNNPACKQuantizer, + get_symmetric_quantization_config, + ) + + class M(torch.nn.Module): + def __init__(self): + super().__init__() + self.linear = torch.nn.Linear(5, 10) + + def forward(self, x): + return self.linear(x) + + # initialize a floating point model + float_model = M().eval() + + # define calibration function + def calibrate(model, data_loader): + model.eval() + with torch.no_grad(): + for image, target in data_loader: + model(image) + + # Step 1. program capture + # NOTE: this API will be updated to torch.export API in the future, but the captured + # result shoud mostly stay the same + m = capture_pre_autograd_graph(m, *example_inputs) + # we get a model with aten ops + + # Step 2. quantization + # backend developer will write their own Quantizer and expose methods to allow + # users to express how they + # want the model to be quantized + quantizer = XNNPACKQuantizer().set_global(get_symmetric_quantization_config()) + m = prepare_pt2e(m, quantizer) + + # run calibration + # calibrate(m, sample_inference_data) + """ + torch._C._log_api_usage_once("quantization_api.quantize_pt2e.prepare_pt2e") + original_graph_meta = model.meta + node_name_to_scope = _get_node_name_to_scope(model) + # TODO: check qconfig_mapping to make sure conv and bn are both configured + # to be quantized before fusion + # TODO: (maybe) rewrite this with subgraph_rewriter + _fuse_conv_bn_(model) + quantizer.transform_for_annotation(model) + quantizer.annotate(model) + quantizer.validate(model) + model = prepare(model, node_name_to_scope, is_qat=False) + model.meta.update(original_graph_meta) + model = _disallow_eval_train(model) + return model + +def prepare_qat_pt2e( + model: GraphModule, + quantizer: Quantizer, +) -> GraphModule: + """Prepare a model for quantization aware training + + Args: + * `model` (torch.fx.GraphModule): see :func:`~torch.ao.quantization.quantize_pt2e.prepare_pt2e` + * `quantizer`: see :func:`~torch.ao.quantization.quantize_pt2e.prepare_pt2e` + + Return: + A GraphModule with fake quant modules (based on quantizer annotation), ready for + quantization aware training + + Example:: + import torch + from torch.ao.quantization.quantize_pt2e import prepare_qat_pt2e + from torch._export import capture_pre_autograd_graph + from torch.ao.quantization.quantizer import ( + XNNPACKQuantizer, + get_symmetric_quantization_config, + ) + + class M(torch.nn.Module): + def __init__(self): + super().__init__() + self.linear = torch.nn.Linear(5, 10) + + def forward(self, x): + return self.linear(x) + + # initialize a floating point model + float_model = M().eval() + + # define the training loop for quantization aware training + def train_loop(model, train_data): + model.train() + for image, target in data_loader: + ... + + # Step 1. program capture + # NOTE: this API will be updated to torch.export API in the future, but the captured + # result shoud mostly stay the same + m = capture_pre_autograd_graph(m, *example_inputs) + # we get a model with aten ops + + # Step 2. quantization + # backend developer will write their own Quantizer and expose methods to allow + # users to express how they + # want the model to be quantized + quantizer = XNNPACKQuantizer().set_global(get_symmetric_quantization_config()) + m = prepare_qat_pt2e(m, quantizer) + + # run quantization aware training + train_loop(prepared_model, train_loop) + + """ + torch._C._log_api_usage_once("quantization_api.quantize_pt2e.prepare_qat_pt2e") + original_graph_meta = model.meta + node_name_to_scope = _get_node_name_to_scope(model) + quantizer.transform_for_annotation(model) + quantizer.annotate(model) + quantizer.validate(model) + # Perform fusion after annotate to avoid quantizing ops in the new + # subgraph that don't need to be quantized + # TODO: only fuse if conv and bn are both configured to be quantized + _fuse_conv_bn_qat(model) + model = prepare(model, node_name_to_scope, is_qat=True) + model.meta.update(original_graph_meta) + model = _disallow_eval_train(model) + return model + +_QUANT_OPS = [ + torch.ops.quantized_decomposed.quantize_per_tensor.default, + torch.ops.quantized_decomposed.quantize_per_tensor.tensor, + torch.ops.quantized_decomposed.quantize_per_channel.default, +] +def _quant_node_constraint(n: Node) -> bool: + """If there is any pure ops between get_attr and quantize op they will be const propagated + e.g. get_attr(weight) -> transpose -> quantize -> dequantize* + (Note: dequantize op is not going to be constant propagated) + + This filter is added because we don't want to constant fold the things that are not + related to quantization + """ + return n.op == "call_function" and n.target in _QUANT_OPS + +def convert_pt2e( + model: GraphModule, + use_reference_representation: bool = False, + fold_quantize: bool = True, +) -> GraphModule: + """Convert a calibrated/trained model to a quantized model + + Args: + * `model` (torch.fx.GraphModule): calibrated/trained model + * `use_reference_representation` (bool): boolean flag to indicate whether to produce referece representation or not + * `fold_quantize` (bool): boolean flag for whether fold the quantize op or not + + Returns: + quantized model, either in q/dq representation or reference representation + + Example:: + + # prepared_model: the model produced by `prepare_pt2e`/`prepare_qat_pt2e` and calibration/training + # `convert_pt2e` produces a quantized model that represents quantized computation with + # quantize dequantize ops and fp32 ops by default. + # Please refer to + # https://pytorch.org/tutorials/prototype/pt2e_quant_ptq_static.html#convert-the-calibrated-model-to-a-quantized-model + # for detailed explanation of output quantized model + quantized_model = convert_pt2e(prepared_model) + + """ # flake8: noqa + torch._C._log_api_usage_once("quantization_api.quantize_pt2e.convert_pt2e") + if not isinstance(use_reference_representation, bool): + raise ValueError( + "Unexpected argument type for `use_reference_representation`, " + f"please make sure you intend to pass argument {use_reference_representation} to convert_pt2e") + original_graph_meta = model.meta + model = _convert_to_reference_decomposed_fx(model) + model = _fold_conv_bn_qat(model) + + pm = PassManager([DuplicateDQPass()]) + model = pm(model).graph_module + + pm = PassManager([PortNodeMetaForQDQ()]) + model = pm(model).graph_module + + if fold_quantize: + constant_fold(model, _quant_node_constraint) + + if use_reference_representation: + model = reference_representation_rewrite(model) + + model.meta.update(original_graph_meta) + model = _disallow_eval_train(model) + return model diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_debug_events_writer.so b/videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_debug_events_writer.so new file mode 100644 index 0000000000000000000000000000000000000000..63f428ea95daeed2ab70f4bae3e6002754b03e09 --- /dev/null +++ b/videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_debug_events_writer.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6410e02866ba376eecc5a71442d6d4f5b8138ee98c33c2f370db6ca19608b949 +size 286768 diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_events_writer.so b/videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_events_writer.so new file mode 100644 index 0000000000000000000000000000000000000000..784ed3fd06e22c041f129f5f82598ea2154e7a7c --- /dev/null +++ b/videochat2/lib/python3.10/site-packages/tensorflow/python/client/_pywrap_events_writer.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e0638d05108349baaab8ac9d1fedf0c28fb688690a788da263e5f5c6f6e106 +size 304856 diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/feature_column/__pycache__/feature_column.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/feature_column/__pycache__/feature_column.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e17df7dfe1f6e3be48ceeabbf2627219c0cef0f --- /dev/null +++ b/videochat2/lib/python3.10/site-packages/tensorflow/python/feature_column/__pycache__/feature_column.cpython-310.pyc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e60574028e290d83dc8dc2b13c49f11c3535713c4c492e44424b5d462eb883 +size 100200 diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/autograph_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/autograph_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1e2bb852298a776c46e8e8b68debdee94e92d64 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/autograph_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/batch_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/batch_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b4f5db4e1b07a12fcf957fdb8fd860d5a5170a5 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/batch_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/bitwise_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/bitwise_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b5edb71dcfd02512596ce7d6e34890264641881 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/bitwise_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/check_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/check_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfe0e077d1d9c5b453cd8f824b03ce54ea2b95ee Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/check_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/cond.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/cond.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3efd7d98be71f5a64243897f0845c166a9ed3455 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/cond.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/control_flow_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/control_flow_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f276e2df73d9bb3408edc8ec56953f1abb2d82b2 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/control_flow_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/control_flow_v2_func_graphs.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/control_flow_v2_func_graphs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f81cb6137fd1b21ad11d272adc5f1cd4a1bf84e0 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/control_flow_v2_func_graphs.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/critical_section_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/critical_section_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f63453500f3839ce710ef6de04dd38bdeacd3e4 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/critical_section_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/cudnn_rnn_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/cudnn_rnn_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a79f2587590f388a2de0061d7f7873b2d3ddc525 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/cudnn_rnn_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/data_flow_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/data_flow_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d5aea17d42d07298a6de623ac4e99c9f1042306 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/data_flow_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/default_gradient.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/default_gradient.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d48caf75f045ca203bb9f4ffa6d394881a25b412 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/default_gradient.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/embedding_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/embedding_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7a981108280f3e11667882b173d4f1dc90ed6d1 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/embedding_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_batch_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_batch_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebabcc5e0a4fe57bfc6e27dfcf5b8c602bc2e4de Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_batch_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_clustering_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_clustering_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..194a64e3d2525d99525e9aa78c4d7175f356205c Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_clustering_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_composite_tensor_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_composite_tensor_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..896c1ce092f39a0c6a46e52145f644cf042ffbef Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_composite_tensor_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ctc_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ctc_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f5a2d542ffc7b4fed5a9474e5ac2e9af1c71daee Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ctc_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_filesystem_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_filesystem_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5b912758c43f521f6b4add882fdd2a132923171 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_filesystem_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_functional_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_functional_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdb531f3e20865a6eb4f8fb4891b6571eb29da8b Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_functional_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_linalg_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_linalg_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38ad9a95f536ce83e59e87f8e49433465389cb65 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_linalg_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_parsing_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_parsing_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33a2f552520aa8ac3fd771501e9e204fb2aff8a2 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_parsing_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ragged_conversion_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ragged_conversion_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ae30fd3928839e77296e5045efee505bb95221c Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ragged_conversion_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ragged_math_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ragged_math_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edb3d7a1fe1523392cc7b57e1240657dd29252b5 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_ragged_math_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_sendrecv_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_sendrecv_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2cb4be9b481c41bd3e63d0672717f8ab1a4e616 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_sendrecv_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_sync_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_sync_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..960bc2ee75806a27b81dcfbdb88beb4ee8feb801 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gen_sync_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gradient_checker_v2.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gradient_checker_v2.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ed9dd93b73239e6a634476a82ec883d8dabe854 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gradient_checker_v2.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gradients.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gradients.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2a0f2e93b6428e0b218d196b3604738e08e6d7bb Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/gradients.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/handle_data_util.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/handle_data_util.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b05c367c0261f16a0c5be6d81a729917512c3ab Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/handle_data_util.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/histogram_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/histogram_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2436fe1a24eec4873ca29adc8155fd7f810f8270 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/histogram_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/init_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/init_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1af72028166797c4d5ea0d22ac48d1bedca4452 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/init_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/initializers_ns.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/initializers_ns.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d38da26f141df39d45053b97676a2fed983a6930 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/initializers_ns.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/inplace_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/inplace_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c160f770a76cf3510428cda65d572df532041e3a Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/inplace_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/io_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/io_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f664cfcda59981c13c77622474159e0ce825eaf Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/io_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/linalg_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/linalg_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f61097cc6e2798c7d4d9529f908b90d50046283d Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/linalg_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/list_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/list_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..035d812912432bbd94bbc88b9225c8bf25fe09ea Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/list_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/lookup_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/lookup_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a57e45a9b87cbc4fc13ecfc125733762967ce93 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/lookup_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/manip_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/manip_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9586d45af76b38f9e10bb88e490cc8b30fd184ed Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/manip_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/nn_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/nn_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73a83f4a5adef1b20bb98ea3074e12c9da67142e Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/nn_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/nn_impl.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/nn_impl.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3e6c2031d5d5afcb9c8df8cfed1d1c13f38a042 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/nn_impl.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_config.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_config.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..23cfaf2f572ceed6019281ba12327d964a0708ce Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_config.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..373e4c510ad99f8452a7d76e26d0b770128ea846 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f446f44802ce6df0ec0a12578b42b76cb1172b44 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/parsing_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/proto_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/proto_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ecd8cb9f8f8ad258932d5b5af4ee8b12b0beb2d Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/proto_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/rnn_cell.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/rnn_cell.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..43a15cbbbd6e5d56a1bd2c422deff3805f12d5ff Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/rnn_cell.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/sdca_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/sdca_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1930b5ce78fe41693228ef1e54fbef6a23b381cd Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/sdca_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/state_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/state_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e36a387e8e57121ec8f63d35db432c7f6736258 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/state_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_array_grad.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_array_grad.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a02f5bc51ae4cec7348d8bb26a84a75f8b0afa96 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_array_grad.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_getitem_override.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_getitem_override.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f01414c66e903175634100cbf700ac828dd5c0ed Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_getitem_override.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_math_operator_overrides.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_math_operator_overrides.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5ea7c2a608f4a8a68cbcf173c90026ba496162c Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/tensor_math_operator_overrides.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/variables.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/variables.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7758dc80b37f1d52be1acfc103f394bf709ceb5c Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/variables.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/weak_tensor_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/weak_tensor_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7aee47ab3dad258e82295d0dad1a1c25a9c30211 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/weak_tensor_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/weights_broadcast_ops.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/weights_broadcast_ops.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edf7c989f42484fdd67f2fc7e7db0d34cbf6ceb2 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/__pycache__/weights_broadcast_ops.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/__init__.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12bf52e29c40849e9b096eeeadcdeae8f6498fd9 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/__init__.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linalg.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linalg.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..087aa1ad8f31dc894db0abc6716b59cafd57deb6 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linalg.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_addition.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_addition.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..623ec28e3d402dafa316876ebe4a27fdab22446f Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_addition.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_adjoint.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_adjoint.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..241a2c837179166a3d884e65fe45b4e54d210182 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_adjoint.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_block_diag.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_block_diag.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0df546c017a3b540cb486a640d701319469099fb Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_block_diag.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_circulant.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_circulant.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d769cc7569f1d6d863bf2175a0789b92b0ff5b08 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_circulant.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_composition.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_composition.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf8515b2182327899d544f9e4eb79ff160bc7228 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_composition.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_diag.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_diag.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78f76324ad97bd16361d33436ba28a0db881df0f Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_diag.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_householder.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_householder.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8137ab06227c8111dced999f2c2a0a918a5384b Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_householder.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_identity.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_identity.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aad9737fcc178b9e744f36eff0a40024da9c785c Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_identity.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_low_rank_update.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_low_rank_update.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..978cc5736e6989b2abe8adc2fa631ad8bbaa77e4 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_low_rank_update.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_lower_triangular.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_lower_triangular.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d7a5548e60cb0a9877b9a583ffbdc3d595d8568 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_lower_triangular.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_permutation.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_permutation.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc273aff613aee5f09b62a411400cb8ca482f9d4 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_permutation.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_test_util.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_test_util.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbcef9c29f1ff305354e92de0d634c251412714e Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_test_util.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_toeplitz.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_toeplitz.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85e04249dd4809ec801a8e63bcfe43fc982b7049 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_toeplitz.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_tridiag.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_tridiag.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e368e82d897e71ac8a4ce9bf7f330023cce49f41 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_tridiag.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_util.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_util.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a000a5e9c7c6ced233536aebf4d7d6d01863d78 Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/linear_operator_util.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/slicing.cpython-310.pyc b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/slicing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dcdc1b77a2e7cc230f2190a572c39ee5fd333d7b Binary files /dev/null and b/videochat2/lib/python3.10/site-packages/tensorflow/python/ops/linalg/__pycache__/slicing.cpython-310.pyc differ diff --git a/videochat2/lib/python3.10/site-packages/tensorflow/python/platform/_pywrap_tf2.so b/videochat2/lib/python3.10/site-packages/tensorflow/python/platform/_pywrap_tf2.so new file mode 100644 index 0000000000000000000000000000000000000000..dce43aecc9b74648dc7f70095ee007c9b3228e87 --- /dev/null +++ b/videochat2/lib/python3.10/site-packages/tensorflow/python/platform/_pywrap_tf2.so @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a192e88b663718577479fb183dcb86b7cc129fb981873f727ad5f20bababfd73 +size 2606880