linverlan
linverlan t1_jd9vckl wrote
Reply to [D] Do you have a free and unlimited chat that specializes only in teaching programming or computing in general? by Carrasco_Santo
I just wrote this computer science domain chatbot, it’s probably SOTA. You can just copy the code below and run it locally on your own machine. Let me know if you have any dependency issues, I can share a yaml file.
from googlesearch import search
import sys
query = ' '.join(sys.argv[1:]) + ' stackoverflow'
out = list(search(query, num=1, stop=1))
print(f"Answer is probably at: {out[0]}")
linverlan t1_j70oz53 wrote
Reply to [D] Querying with multiple vectors during embedding nearest neighbor search? by mostlyhydrogen
You want to query with multiple vectors but don’t want to query with the vectors separately and don’t want to query with the mean of the vectors? You are going to need to give more details about what you want to do then.
linverlan t1_ixg4u3s wrote
This feels backwards. Best approach is to use the most off-the-shelf implementation you have available for a base model and implement specific features or refinements as needed for your use case.
This way you move quickly, get acceptable performance right away, and can make iterative improvements as long as time allows.
linverlan t1_jddepw6 wrote
Reply to comment by currentscurrents in [D] Do you have a free and unlimited chat that specializes only in teaching programming or computing in general? by Carrasco_Santo
lol you got me there. Although we are probably saving some compute by not generating.