Morten Grøftehauge
Morten Grøftehauge
This is because of braceexpand ```python import braceexpand print(list(braceexpand.braceexpand('dataset\dataset.tar'))) >> ['datasetdataset.tar'] ``` I think this would work for local files but I don't think it does with cloud locations: ```python...
To be honest I would prefer if the input was a list and then you could put braceexpand in the examples. And then we could also get the paths from...
Running on my laptop the script sometimes hangs after a call of `closing ` I doesn't happen with 0 workers (probably because nothing is read) and it happens more often...
Is there a minimum recommended size of individual files? For many features with a mix of strings, ints, floats it seems like JSON is the most reasonable format. Is that...
It's also in the log for version 2.0: ``` [31mPlease check your arguments if you have upgraded adabelief-tf from version 0.0.1. [31mModifications to default arguments: [31m eps weight_decouple rectify -----------------------...
If you look at my suggestion it will also fail for `sequence_length=5.5` since `int(5.5)` isn't the same as `5.5`. I think it makes sense. I got the sequence length from...
[The Chicago Taxi example runs fine in the Colab notebook](https://www.tensorflow.org/tfx/tutorials/tfx/components_keras) with TFX 1.2.0 but the code also seems to be updated whereas the examples here still have code like `from...
Ubuntu ``` pip install polyglot pip install pyicu pip install pycld2 pip install morfessor ``` Is there any reason you can't set up the PyPI repository so that those are...
Aiven is recommending the use of this package: https://docs.aiven.io/docs/products/kafka/howto/connect-with-python.html They should really put some resources into maintaining it.
How about adding type hints to the functions/classes passed to fire? So I could have ```python import fire def use_gpu(gpu: bool = True): pass fire.Fire(use_gpu) ``` and then `python test.py...