Herbert
Herbert
I noticed this sniplet of code in load.py: ``` word_mat = [[0]*word_cnt]*(max_sent_len+k_wrd-1) char_mat = [[[0]*char_cnt]*(max_word_len+k_chr-1)]*(max_sent_len+k_wrd-1) for i in xrange(len(tokens)): word_mat[(k_wrd/2)+i][words_map[tokens[i]]] for j in xrange(len(tokens[i])): char_mat[(k_wrd/2)+i][(k_chr/2)+j][char_map[tokens[i][j]]] ``` The for-loops seem like...
DeepPavlov 0.5.0, Python 3.7.6, Ubuntu 20.04 When the validation set is empty, this error AttributeError: 'NoneType' object has no attribute 'items' is raised by [`metrics = list(report['metrics'].items())`](https://github.com/deepmipt/DeepPavlov/blob/master/deeppavlov/core/trainers/nn_trainer.py#L174) because [the value...
When using the app for the first time and going through the authorization steps, google says: > Sign in with Google temporarily disabled for this app > > This app...
Could you provide the input image, code, prototxt, and caffemodel to reproduce figure 1 of the paper? I tried to reproduce figure 1 of the paper based on the [pretrained...
### Missing functionality Override templates of the html flavour. ### Proposed feature Allow overriding (some) templates in `src/pandas_profiling/report/presentation/flavours/html/templates/` to personalize pdp. ### Alternatives considered I monkey patched pdp to support...
I'm trying to get a better understanding of your work and creating a [workflow](https://colab.research.google.com/drive/1CM3je1q6L3x2rKJFp0hxy47kL2QvaUHQ) that allows batching pages without reloading the models (which takes a lot of time currently). However,...
I've tried to make a minimal failing example, yet these examples both using the streamlit versions `1.17` and `1.19` seem to work fine. Yet in my particular (complex) app the...
I noticed that your second block in the diagram in your paper  source: https://arxiv.org/abs/1606.04797 has 2 convolutional layers, yet here is has one: https://github.com/faustomilletari/VNet/blob/master/Prototxt/train_noPooling_ResNet_cinque.prototxt#L143 Shouldn't there be 2? And...
Tested using pip3 install git+https://github.com/prinsherbert/keras-toolbox@patch-1