Gardner Bickford
Gardner Bickford
Text is better than screenshots when reporting issues. It looks like you have ROCm 6.0.1 but you are installing torch built for ROCm 5.7. What happens when you try with...
It's a bit difficult to read which symbol it's failing on. If you paste the text from the error then it will be searchable for people in the future. It...
Can you try this Dockerfile that builds the ROCm fork? ```dockerfile FROM rocm/pytorch:latest WORKDIR /workspace RUN python3 -m pip install --upgrade pip RUN apt-get update \ && apt-get install -y...
This resolved it for me: ```python try: client.persist() del client del collection except Exception as e: print(e) ``` Those variables are instantiated via: ```python embeddings = embedding_functions.InstructorEmbeddingFunction(model_name="hkunlp/instructor-xl") client = chromadb.Client(Settings(chroma_db_impl="duckdb+parquet",...
Something like this works in `main()` ``` if len(texts) > 100: batch_size = int(len(texts) / 100) batches = [texts[i:i + batch_size] for i in range(0, len(texts), batch_size)] for batch in...
I also noticed ingest.py would load all of the documents into memory before starting to add them to the index and create emdeddings. I modified it to load documents and...
The paper: https://arxiv.org/pdf/2306.03078.pdf The code: https://github.com/Vahe1994/SpQR
Hey! Great work! I added a docker config for cuda configurations. I just noticed you have a `dev` branch. Please let me know if you'd prefer PRs to `dev`.
I noticed there is an issue where this configuration will not convert multiple files. This issue can be reproduced by setting the `command:` in `docker-compose.yml` to: ```bash python convert.py /input...
I just published a pypi package from my opt-out branch: https://pypi.org/project/crewai-clean/ You need to set `CREWAI_TELEMETRY_OPT_OUT=True` in your environment. Please test it out and leave a comment on https://github.com/joaomdmoura/crewAI/pull/402