Skip to content

5 月 2023

ImageBind:能轉換多模態向量的模型使用心得筆記

Last Updated on 2023-05-29 by Clay

前言

最近的 Meta AI 真的是強到不行,似乎一瞬間站穩了 AI 研發巨擘的地位,而且還是樣樣開源的頂級標竿。從影像領域的能切割物件的 Segment Anything、到公開大型語言模型(Large Language Model)同時也是基石模型(fundational model)的 LLaMA(引起眾羊駝之亂的就是它!)、到最近能轉換 6 種模態(modals)的 ImageBind 跟語音模型計畫 (MMS)…… 只能說像我這種平凡人要努力跟上怎麼去使用都很費勁,更遑論試圖追逐他們的技術了。

Read More »ImageBind:能轉換多模態向量的模型使用心得筆記

[已解決] 無法查看 GitHub 項目中有著箭頭符號的資料夾

Last Updated on 2023-05-08 by Clay

問題描述

今天,我在使用 React.js 作為前端、Python Flask 作為後端開發一款網頁應用程式。在我把我開發告一段落的項目推上 GitHub 倉庫後,檢查時驚訝地發現我無法查看 npx create-react-app my-app 建立的資料夾 my-app

Read More »[已解決] 無法查看 GitHub 項目中有著箭頭符號的資料夾

LeetCode: 2215-Find the Difference of Two Arrays 解題紀錄

Last Updated on 2023-05-03 by Clay

題目

Given two 0-indexed integer arrays nums1 and nums2, return a list answer of size 2 where:

  • answer[0] is a list of all distinct integers in nums1 which are not present in nums2.
  • answer[1] is a list of all distinct integers in nums2 which are not present in nums1.
Read More »LeetCode: 2215-Find the Difference of Two Arrays 解題紀錄