python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
bert_vocab.bert_vocab_from_dataset taking too long
I'm following this tutorial (https://colab.research.google.com/github/tensorflow/text/blob/master/docs/guide/subwords_tokenizer.ipynb#scrollTo=kh98DvoDz7Jn) to generate a vocabulary from a custom data...
Kurt
Votes: 0
Answers: 1
how to replace the command tfds.load for imdb reviews with download dataset file?
tfds.load(name="imdb_reviews", data_dir=direc, split="train", with_info=True, as_supervised=True)
i have download the dataset , it has downloads and imdb_reviews directories, in th...
lucky
Votes: 0
Answers: 1
tokenize the url
I have a sentences (logs) look like that ['GET http://10.0.0.0:1000/ HTTP/X.X']
I want to have it in this form :
['GET', 'http://10.0.0.0:1000/', 'HTTP/X.X']
but that's not the fall. i've used this ...
Hermoine
Votes: 0
Answers: 2
Problem while creating the NLP model using tensorflow?
I have created a spam classifier model using tensorflow.. ( tokenization , embedding layer and lstm ).
model=Sequential()
model.add(Embedding(voc_size,32,input_length=sent_len))
model.add(LSTM(units=1...
Nitish Pandey
Votes: 0
Answers: 0