But I want to mention for everyone taking it: please also keep in mind "dumb" logical operators like OR, AND, NOT, and quotes that skip the NLP and use the exact text.
What frustrates me with Google Search is that it won't show me what I know precisely how to find. This is why I use Google less and go to specialized sites directly (Stack Exchange, Wikipedia, PubMed...).
You probably benefited from it several times already, but haven't realized, since it's subtle and works behind the scenes.
I'm a writer, and in the past I have had success making poems and shit via messing around with various NLP tools like speech to text software and Google Books ngram viewer, but I've run into situations where I wish I could do something that isn't supported by the application.
Could this course be a good place to start? If not do you have any recommendations? I don't really know how to code but am comfortable using a command line interface.
That being said, as a writer it sounds like you'd be most interested in generative models that generate new text, we do cover that a little in the Question Answering chapter, but otherwise, not so much. Although I don't know your ideas or plans so I can't say for sure what is good/bad for you to focus on.
I do think you should read into transformer models like BERT and GPT, there is a very good free course from HuggingFace who are the 'de-facto framework' for NLP at the moment, that could be useful for you too: https://huggingface.co/course/chapter1/1 (chapter one will introduce everything too, definitely go through that)
With HuggingFace, you can put together a simple T5 or GPT-2 text generation script with a few lines of code
How does your course relate to the vector search approach discussed here? https://cloud.google.com/blog/topics/developers-practitioner...
This course teaches how to use NLP to turn text data into dense vectors while capturing their meaning. Then you take those vectors and put them in a vector database — like Pinecone.io or Google Matching Engine — so you could do on-demand vector search. And voilà, you have a semantic search application!
What tools did you use to build it?
I'm James, past data scientist, ML engineer, and now dev advocate at Pinecone.
I've been dedicating much of the past few months to building a course on what I've found to be one of the most fascinating emerging technologies in AI and ML, Semantic Search:
https://www.pinecone.io/learn/nlp
The course is completely free, it includes written and visual explanations, code implementations, and video walkthroughs. It focuses on the NLP side of semantic search and the first seven chapters cover:
1. Dense Vectors
2. Sentence Embeddings and Transformers
3. Training Sentence Transformers with Softmax Loss
4. Training Sentence Transformers with MNR Loss
5. Multilingual Sentence Transformers
6. Question Answering
7. Unsupervised Training for Sentence Transformers
There is more coming soon and I'll be around to answer any questions, let me know what you think.
Thanks all!