Raúl Gómez
Raúl Gómez
In python 3 dict.keys() returns a dict_keys object and dict_values a dict_values object instead of an array. So in glove.py line 165 should be changed from: `word_ids = np.array(cooccurrence.keys(), dtype=np.int32)`...
I have trained a model using glove-python, and I want to finetune it using other data. Is it possible? If I load a trained glove model and train it with...
I'm trying to convert a Keras model with [IntegerLookup](https://www.tensorflow.org/api_docs/python/tf/keras/layers/IntegerLookup) and [StringLookup](https://www.tensorflow.org/api_docs/python/tf/keras/layers/StringLookup) layers. I've seen #1500 and #1219, but still getting errors. This is the procedure I'm following: ``` pip install...
Hello, I'm trying to fine-tune MobileNet-SSD using a modified version of COCO. I have created the lmdb's of my modified COCO version using SSD. Then I have used gen_model.sh 21...
I have a dataset consisting of users positive interactions with assets. Before I was using a Retrieval Model, whose objective considers as positive label a given user-asset pair, and as...
I wanted to use the Twitter preprocessing script in https://nlp.stanford.edu/projects/glove/preprocess-twitter.rb and found a few bugs there: 1. URLS without http are not found 2. Last gsub splits words with caps...
I have trained a GloVe model and I want to finetune it to another smaller dataset. Is it possible? I don't see code to do that.
I saw that the code has this commented line: `# torch.cuda.set_device(args.gpu)` And by default it runs on CPU. If I uncomment the line and set ` torch.cuda.set_device(0)` it still runs...
Due to a change in torchtext the call to load_vectors has to be updated.
In the paper not many details are given regarding the autoencoder training fot txt-to-image, and those would be very helpful! Can we get some answers? - Which dataset the autoencoder...