AlyxTeam's picture
feat: type error
8d6633c
raw
history blame
349 Bytes
import spaces
import gradio as gr
from transformers import pipeline
pipe = pipeline("feature-extraction", model="jinaai/jina-embeddings-v2-base-code", trust_remote_code=True)
@spaces.GPU
def generate(prompt):
return pipe(prompt)[0].numpy().mean(axis=0)
gr.Interface(
fn=generate,
inputs=gr.Text(),
outputs=gr.Gallery(),
).launch()