S
Sarah Chen
@sarah_embeddings · 11h✦cross-lingual
EN→JA· Embeddingsで翻訳
8 min read
@yoonsooの保存した知識
fn main() {
let s1 = String::from("hello");
let s2 = s1; // s1 is moved
// println!("{}", s1); // compile error!
println!("{}", s2);
}import google.generativeai as genai
result = genai.embed_content(
model="models/gemini-embedding-2-preview",
content="ベクターDB性能比較",
task_type="RETRIEVAL_QUERY",
)
print(result["embedding"][:5])