Loading video...

Video Failed to Load

Go Home

This Python script helps you better understand how embeddings work for SEO. Input a sentence + a query and BERT will calculate a content "Similarity Score": Search engines use embedding models to translate your content into numeric values. This is how they're able to mathematically determine whether a page...

13,185 views • 1 year ago •via X (Twitter)

5 Comments

Chris Long's profile picture
Chris Long1 year ago

Link to the blog article with the script below:

Daniela Fernandes's profile picture
Daniela Fernandes1 year ago

Olha que legal esse perfil @rodrigowperes

Traxex's profile picture
Traxex1 year ago

this a great stuff. Helps a lot for on-page work when we only need to revise specific part of the content and not everything.

Freelancers HUB's profile picture
Freelancers HUB1 year ago

Is there any way to check longer content?

Suttle's profile picture
Suttle1 year ago

Is the chrome extension mentioned in the blog publicly available?

Related Videos

So over the years as a Content Creator for World of Warcraft, I've picked up a few great camera tricks that can make your footage look more professional. Not sure how widely known these are but I'll share some that I know and hopefully it will be helpful to someone! So firstly, let me show you how to do a smooth rotation shot. You're going to want to create a Macro for this with this script; /script MoveViewRightStart(0.15) To modify the direction, you can change the word "Right" to Left, In, Out, Up or Down. The number at the end indicates the speed of the rotation, the higher the number the faster the rotation. I tend to keep this fairly low for a nice non-sickening rotation. Now you can combine as many of these as you like. So if you wanted a smooth shot that zoomed in on your Character while rotating Right you would make a macro like this; /script MoveViewRightStart(0.15) /script MoveViewInStart(0.15) It is fun to play around with but you will also need to create a "Stop" macro. I go with a generic one like this which will stop all rotation in all directions; /script MoveViewLeftStop() /script MoveViewDownStop() /script MoveViewRightStop() /script MoveViewUpStop() /script MoveViewInStop() /script MoveViewOutStop() Another trick to get the best possible shots of areas or up close combat is to hide your Character model. This is done with a simple console command; /console showplayer To show your player character again just type it again. I'm sure there are easier ways to do this, but that's just the way I've always done it to get nice smooth footage of World of Warcraft for videos. Let me know if you have any questions or have any other cool tips to share!

MrGM

111,374 views • 1 year ago

Here is how you can install an open-source, enterprise-grade RAG system on your server (with the best document understanding I've seen.) First, something obvious to anyone trying to sell RAG in the market: You are crazy if you think companies will let their data travel to a hosted model. No one wants to send their data anywhere (those who do haven't found an alternative.) Every single company would rather have an air-gapped system with no internet access. GroundX is an open-source RAG system that you can run on your servers (or any cloud provider, as long as you have access to GPUs) and works without a network. (If the military wants to do RAG, this is precisely what they will be looking for.) I installed GroundX on my AWS account and recorded a video to show you how to use it. There are two services you can use: 1. Ingest: This service uses a pretrained vision model to ingest and understand your knowledge base. 2. Search: This service combines text and vector search with a fine-tuned re-ranker model to retrieve information from your knowledge base. A quick note about the Ingest service: 99% of people think they need better "retrieval" mechanisms. I think they need better "ingestion." That's where this service comes in! Ingest "understands" your documents in a way I haven't seen before. After you try it, you'll realize why showing your LLM your raw documents is a bad idea. In the video, I use a free tool called X-Ray to test a document and understand how the Ingest service breaks it down. You can access this tool by signing up for a free GroundX cloud account and uploading your documents. You'll see a bit more about this in the video.

Santiago

89,624 views • 1 year ago