Questions tagged [embedding]

An embedding is one instance of some structure contained within another instance, such as a group that is a subgroup.

An embedding is one instance of some structure contained within another instance, such as a group that is a subgroup.

Links:

1356 questions
-1
votes
1 answer

Creating module (standalone web application) using Grails to embed in PHP site

I want to create a module (personal cabinet) to embed in an existing PHP site. I also want to create it using Grails, to use in other projects. Is there some pattern for creating standalone web applications to easily embed it in ready site?
Artyom Chernetsov
  • 1,394
  • 4
  • 17
  • 34
-1
votes
1 answer

how can i have an image change into an embedded video of the same size onclick

I have an idea where there would be an image at the top of the page with a play button in the center. When the image is clicked it disappears and an embedded video of the same size takes is place and begins to autoplay. this way i can stylize the…
patricko
  • 831
  • 4
  • 16
  • 34
-1
votes
0 answers

Using RNNs for variable length multidimensional sequence regression problems?

My question is very similar to this SO post: How to embed Sequence of Sentences in RNN? Using this code snippet as an example (for 2 sequences with each timestep observation containing 3 numerical features): import numpy as…
-1
votes
1 answer

How to get "text-embedding-ada-002"?

I can get this model only with openai api-key? I can get full vocabulary of token embeddings? I can download this model or no? I cant get information for this in different sources for a long time. Sorry, my English is bad...
-1
votes
0 answers

I want to compare the context of two pdf's and summarize the changes in NLP

I did a project when you ask questions in NLP to Pdf's and answers using pinecone db and indexes, openAI embeddings, however, this problem is different you need to compare two pdf's find out the difference and summarize it . Do you know how I can…
Nisha
  • 1
-1
votes
1 answer

Add Rounded Corners To Wistia Embed

i have 0 coding experience or knowledge so could someone show me how I can add rounded corners to my video embeded on my website for all browsers in desktop and mobile. I'm using Wistia and below is the embed code i get from them:
-1
votes
1 answer

OpenAI Embeddings API: How do I extract the embedding vector from the response?

Im transitioning from js to ts and experimenting with the embedding API of OpenAI. My goal here is to get the array values of the "embedding" key from the JSON response & store it on a variable, simple as that, the problem is i haven't been able to…
Gabo RM
  • 23
  • 3
-1
votes
1 answer

How to make an html svg embeddable by url?

Hello, I have recently been working on a project that requires me to embed an embedded svg through a url. It goes somewhat like this. -> index.html -> Can I get some help with this? I have tried placing the svg…
WillDevv12
  • 33
  • 4
-1
votes
1 answer

method overriding, embedding and pointer in golang. Can not assign embedded variable

In go code, there is a method to say: init() { service = &Service { updater: updaterVariable } } updater field has type of *lib.Updater I am trying to override one method of lib.Updater and pass it to &Service in init method (as…
RustamIS
  • 697
  • 8
  • 24
-1
votes
1 answer

How do I get my embedded youtube video to play on the screen?

enter image description hereI have embedded the youtube video following all the directions but once I see my page the video is unavailable to play. I have tried other versions of the video, and different ways of coding it but nothing has…
-1
votes
1 answer

How do I introduce a new subject without extra training in Stable Diffusion?

Suppose I have a dataset of 1000 pokemon, I have 10 images of Pikachu, 10 images of Bulbasaur, etc. I also have a metadata specifying the name of each pokemon exactly. So from the metadata, I can know which image is Pikachu and which image is not. I…
-1
votes
1 answer

Tons of errors when embedding webpages in HTML

I can't seem to embed anything on my website. At first I thought it was just the YouTube embed but then I tested another webpage and it didn't work either. The errors I get seem to change at random. You can see all the different errors if you open…
-1
votes
2 answers

How to satisfy a constraint implemented through embedding in generics?

I have an interface type FooInterface interface { HasName() bool } It has a base implementation that I intend to use in other implementation of FooInterface type FooBoilerplate struct { hasName bool } func (f *FooBoilerplate) HasName()…
-1
votes
1 answer

Embedding WordPress blog to an existing website

I have an existing website and I want to know how to embed a WordPress blog to the website, can someone help me out, please?
-1
votes
1 answer

Training and testing with embeddings in transfer learning

I am doing transfer learning with google audioset embeddings. According to the documentation, the embedding layer does not include a final non-linear activation, so the embedding value is pre-activation I want to train and test a new model on top…