Bruno Alvisio
Bruno Alvisio
When running `cif2fasta.py` with `7rs0.cif` from the RCSB DB as input gives the following exception: ``` multiprocessing.pool.RemoteTraceback: """ Traceback (most recent call last): File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker result...
Not completely sure if this is a bug: I am running into an issue when using the option followLinks in the output section and combining it with the regex. Here...
This PR tries to address the issue described in https://github.com/nextflow-io/nextflow/issues/3098
Currently when the `cyclegan.py` example is run the following error occurs when the model is being saved in the ModelCheckpoint callback. ``` Traceback (most recent call last): File "cyclegan.py", line...
Hello, I an interested in reproducing the steps to build pdb100_2021Mar03 locally. Would it be possible to share the scripts used to build it? Thank you!
In the `chapter11_part04_sequence-to-sequence-learning.ipynb`, the TransformerDecoder receives the mask from the PositionalEmbedding layer of the target sequence: ``` x = PositionalEmbedding(sequence_length, vocab_size, embed_dim)(decoder_inputs) x = TransformerDecoder(embed_dim, dense_dim, num_heads)(x, encoder_outputs) ``` Shouldn’t...
#### What does this implement/fix? Explain your changes. This is an implementation of the Multilabel SMOTE (MLSMOTE) algorithm described in the paper: Charte, F. & Rivera Rivas, Antonio & Del...
Currently, when trying to tokenize using the FastBertTokenizer gives the following error error: ```python from tensorflow_text import FastBertTokenizer import tensorflow as tf vocab = ['they', "##'", '##re', 'the', 'great', '##est',...
### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...