Tobias Pütz
Tobias Pütz
The init signature has been added to `help(type)` on some version >3.6.5 which I am on: https://github.com/python/cpython/commit/ccb5f3cee9ebb5f20e33f31432a46579f8e9bf8e#diff-cbbbf1954ca2586f5d1d6241674fab9a It still would be nice to be able to set the doc strings...
```sh $ docker pull rocm/pytorch:rocm3.7_ubuntu18.04_py3.6_pytorch $ alias drun='sudo docker run -it --network=host --device=/dev/kfd --device=/dev/dri --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -v $HOME:/data' $ drun rocm/pytorch:rocm3.7_ubuntu18.04_py3.6_pytorch $ python ``` ```py >>> import...
Hi @nastra, this script: ```python3 import pyspark from pyspark.conf import SparkConf from pyspark.sql import SparkSession import pandas as pd CATALOG_URL = "http://server:8080/catalog" MANAGEMENT_URL = "http://server:8080/management" DEMO_WAREHOUSE = "demo" config =...
Setting the namespace via: ```python3 spark.sql("USE spark_demo") spark.sql("CREATE view vv3 as select * from spark_demo.mytable") ``` ends up setting `default-namespace`: ```json { "name": "vv3", "schema": { "schema-id": 0, "type": "struct",...
Thanks for checking this @nastra, I understand that we should be relaxing the constraints of NamespaceIdent then since an empty default-namespace is expected.
Tensorflow has this convenience function: https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/train/latest_checkpoint picking the epoch with the highest number should correspond to the best epoch when used in conjunction with only saving upon improvements. Maybe there...
I'd like to keep the per-batch summaries and add the per-epoch as additional summaries. Something along these lines: ```py epoch_loss_placeholder = tf.placeholder(name="epoch_loss_placeholder",dtype=tf.float32,shape=[]) epoch_acc_placeholder = tf.placeholder(name="epoch_acc_placeholder",dtype=tf.float32,shape=[]) val_epoch = tf.Variable( 0, trainable=False,...
If graph compatibility means to load an old model with a newly written graph, then we need 4 optional ops since the variable `val_epoch` will be missing when calling the...
maybe `group` in conjunction with `requires`
https://kbknapp.github.io/clap-rs/clap/struct.ArgGroup.html > You can also do things such as name an ArgGroup as a confliction or requirement, meaning any of the arguments that belong to that group will cause a...