Getting Started with Qdrant

Поделиться
HTML-код
  • Опубликовано: 22 сен 2024

Комментарии • 36

  • @python360
    @python360 Год назад +4

    This is valuable knowledge, thank you for sharing. I like that Qdrant is written in Rust as well!

  • @sriramananthakrishnan138
    @sriramananthakrishnan138 Год назад +1

    This is an excellent tutorial ! Just one suggestion, can you please, the next time, use the words from the payload to create the embeddings for the vectors and then pad it as well to create vectors of n=100 dimensions and then show the same example. It will help people like me understand easy to use next steps to embed complete documents.

  • @fabsync
    @fabsync Год назад +1

    Love your teaching style! One question.. if I have millions of data points and I want to create and save some query results.. so that I can show my clients something while I am creating/retrieving the new data query results…how would you go about doing that ? Would you do that with Qdrant only or will you combine it with another db?

  • @greendsnow
    @greendsnow Год назад +2

    More human way of adding your vectors is like this:
    points = []
    for i in range(len(vectors))
    point = models.PointStruct(
    id=1,
    vector={
    "image": [0.9, 0.1, 0.1, 0.2],
    "text": [0.4, 0.7, 0.1, 0.8, 0.1, 0.1, 0.9, 0.2],
    },
    ),
    points.append(point)
    client.upsert(
    collection_name="{collection_name}",
    points=points
    )

  • @BuiHungHoward
    @BuiHungHoward 5 месяцев назад

    could you update for method qdrant client -> method recommend -> argument: query_vector seem be changed?

  • @rodrigomaldonado5280
    @rodrigomaldonado5280 9 месяцев назад

    Thank you very useful!

  • @Tripp111
    @Tripp111 8 месяцев назад

    Hell yeah. Demos from the bathroom!

  • @code_guy5067
    @code_guy5067 День назад

    i was amazing with your speaking speed lol

  • @LouiseBelle-e7b
    @LouiseBelle-e7b 9 дней назад

    Rudolph Extension

  • @AnnaRodriguez-j1g
    @AnnaRodriguez-j1g 11 дней назад

    Delmer Meadow

  • @EliotValentine-e7h
    @EliotValentine-e7h 10 дней назад

    Lenna Throughway

  • @RebeccaHoag-z4k
    @RebeccaHoag-z4k 8 дней назад

    Ullrich Lane

  • @JakubSK
    @JakubSK Год назад

    Dash not underscore

  • @MichaelSara-h2z
    @MichaelSara-h2z 8 дней назад

    Bode Prairie

  • @BrendaSorrell-x8b
    @BrendaSorrell-x8b 8 дней назад

    Sally Plaza

  • @RegineShefte-y9l
    @RegineShefte-y9l 9 дней назад

    Trever Burgs

  • @YuonneConner-l2r
    @YuonneConner-l2r 7 дней назад

    Talon Overpass

  • @MicheleFigueroa-w3q
    @MicheleFigueroa-w3q 10 дней назад

    Mariane Mountain

  • @AgnesVivien-g5h
    @AgnesVivien-g5h 9 дней назад

    Christop Lake

  • @MaudNick-b5y
    @MaudNick-b5y 7 дней назад

    Mateo Cliff

  • @EldaAkles-m5i
    @EldaAkles-m5i 7 дней назад

    O'Reilly Ports

  • @RonnyOwensby-d9s
    @RonnyOwensby-d9s 7 дней назад

    Reynolds Drive

  • @SonmerfieldRobin-t7r
    @SonmerfieldRobin-t7r 8 дней назад

    Beahan Meadow

  • @BriceKoterba-r6j
    @BriceKoterba-r6j 7 дней назад

    Kyra River

  • @PamelaHelm-u8b
    @PamelaHelm-u8b 11 дней назад

    Leif Heights

  • @SadieByrd-b3o
    @SadieByrd-b3o 10 дней назад

    Sven Cape

  • @WildPeter-x2h
    @WildPeter-x2h 8 дней назад

    Helene Shoal

  • @PhuongLary-r6t
    @PhuongLary-r6t 7 дней назад

    Beahan Mall

  • @DawneJosselyn-e3g
    @DawneJosselyn-e3g 7 дней назад

    Bailee Ramp

  • @KelsenMaltz-w7l
    @KelsenMaltz-w7l 11 дней назад

    Yundt Course

  • @savire.ergheiz
    @savire.ergheiz 14 дней назад

    The dev don't care about his own channel 😂
    Those are random numbers you can't really says that livin lavida loca is trully related with that australian song.
    At least next time use some embedding data so that it will makes more sense 😅
    Using random data for a product demo intended for production is just simply lazy.

  • @MatthewTownsend-s8z
    @MatthewTownsend-s8z 7 дней назад

    Mohamed Plains

  • @darogajee3286
    @darogajee3286 11 месяцев назад

    very compliicated tutorial ever
    from 1:00 time you are writitng everything in docker

    • @yash_renaissance_athlete
      @yash_renaissance_athlete 2 месяца назад

      actually, the tutorial couldn't have been simpler. It was very well put together.

  • @연찐두빵
    @연찐두빵 Год назад

    from qdrant_client import QdrantClient
    from qdrant_client.http import models
    client.upsert(
    collection_name="point_example",
    points=models.Batch(
    ids=[1, 2, 3],
    vectors=[
    [0.9, 0.1, 0.1,0.5,0.6],
    [0.1, 0.9, 0.1,0.2,0.4],
    [0.1, 0.1, 0.9,0.5,0.2],
    ]
    ),
    )
    After run this code,
    collection_name = "insert_for_point_examle"
    vector_id = 3
    # 특정 ID의 벡터 조회
    client.retrieve(
    collection_name=collection_name,
    ids=[1],
    with_vectors = True
    )
    i checked my data id=1, but result is [Record(id=1, payload={}, vector=[0.9878784, 0.10976427, 0.10976427])]
    Why not [0.9, 0.1, 0.1,0.5,0.6]..?