Ev

Results 10 issues of Ev

``` with open('/home/estathop/Desktop/ordered_word2vec_22_sentences.pickle', 'r') as f42: ordered_word_feats = pickle.load(f42) with open('/home/estathop/Desktop/22featvec.pickle', 'r') as f66: listoffeats = pickle.load(f66) ``` Here I load the pre-extracted features by me, `ordered_word_feats` is a list...

I downloaded your pretrained model and tried to evaluate it with 10 videos from the training sample, but as I press this command, an error follows. And I can't find...

Greetings, Can you please provide somehow your pre-trained model from the YT8M competition ?

Good afternoon, I noticed that when you form a querystring with multiple keywords divided by OR, the crawler fetches the same tweet more than 1 time. For instance, if 2...

I noticed in this API documentation (https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/intro-to-tweet-json) that field "created_at" of the tweet JSON is supposed to be the timestamp when the relevant tweet was created and published on twitter....

Is it possible to use search/tweets only with a geocode and no keyword terms at all (like an empty terms JSON array)? I want to fetch all the tweets from...

I have read about other's people problematic experiences with OpenCV's TV-L1 optical flow algorithm about how time consuming it is and I have also witnessed it myself first-hand. My question...

Greetings, I would like to ask if you can provide your pre-trained model somehow about the YT8M kaggle competition.

I tried to execute every single example from the initial README page, but everything throws different errors. ``` transformer = Seq2VecR2RWord( word2vec_model=word2vec, max_length=max_length, latent_size=200, encoding_size=300, learning_rate=0.05 ) Traceback (most recent...

I am trying to execute the LSTM to LSTM auto-encoder with word embedding (RNN to RNN architecture) example. I have already trained my own word2vec model via gensim and saved...