Jake Schmidt
Jake Schmidt
As far as I can tell, this flavor of the "duplicate dcc.Location callback" issue (#883) hasn't been documented yet. When I run a multipage app, reloading the page fires the...
I think it would be nice to have a top-level function to check for anomalies in serving data. It could be integrated into `serving_input_receiver_fn`. It doesn't make sense to have...
Would be nice to extend the idea of `executions_per_trial` to CV folds, reporting the average eval metric to the tuner.
Converting a `schema` to a `feature_spec = {feature.name: tf.io.FixedLenFeature(...) for feature in schema.feature}` is a very common task. There is a utility to do this already in [tensorfow transform](https://github.com/tensorflow/transform/blob/50aed730f4225f32e3a59407a4cb2552cbd08150/tensorflow_transform/tf_metadata/schema_utils.py#L201-L260), but...
We use TFMD schemas to construct `feature_spec`s to parse TFRecords. Some records may have missing entries for certain features, and in such cases we may want to allow a default...
### System information - **Have I written custom code (as opposed to using a stock example script provided in TensorFlow Model Analysis)**: Yes - **OS Platform and Distribution (e.g., Linux...
System information - **Have I written custom code (as opposed to using a stock example script provided in TensorFlow Model Analysis)**: Yes - **OS Platform and Distribution (e.g., Linux Ubuntu...
A `CONTRIBUTING.md` will give a clear expectation and starting point for new developers of `gflownet`. I've found that the [tensorflow-addons CONTRIBUTING.md](https://github.com/tensorflow/addons/blob/master/CONTRIBUTING.md) is a great template for a project like this.
When running a PyTorch trial on the [latest Nvidia Pytorch base image](https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel_22-04.html#rel_22-04), the following warning is triggered: ``` /opt/conda/lib/python3.8/site-packages/torch/nn/modules/module.py:1383: UserWarning: positional arguments and argument "destination" are deprecated. nn.Module.state_dict will not...