Felix Sonntag
Felix Sonntag
First of all thanks for this great library! ### System information - **OS Platform and Distribution MacOS 10.13.5 and CentOS 7 - **TensorFlow/Keras version**: 1.11.0, 2.2.4 - **Python version**: 3.6.5...
I've been working with larger datasets and the dataset loading always takes quite a while. Here are some attempts to speed up the dataset loading: - Introducing the `_token_to_indices` function...
When setting `use_crf = False` and turning on gradient clipping, the following error is thrown: ``` File "/Users/Felix/Developer/NeuroNER/src/main.py", line 250, in main() File "/Users/Felix/Developer/NeuroNER/src/main.py", line 245, in main nn =...
So I'm using testcontainers within Java, as well as Python. I noticed that sometimes containers stick around in Python, while in Java they always get cleaned up properly thanks to...
In index.less: Style elements within text editors using the `atom-text-editor::shadow` selector or the `.atom-text-editor.less` file extension. If you want to target overlay elements, target them directly or as descendants of...
I noticed an issue that I can not substitute twice in an included config. See the following example: base.conf: ```hocon submit_user = "dev" submit_user = ${?USER} submit_user = ${?USERNAME} ```...
I have a model that I call with String inputs. I can call it with no issues in Python: ```python interpreter = tf.lite.Interpreter("thai_w2p_tf_model.tflite") model_signature = interpreter.get_signature_runner() output = model_signature(input_1=np.array(["โทรศัพท์"])) ```...