Views
No views yet
pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2sentences = ["What is the optimal mud weight for a high-angle well?", "How does managed pressure drilling improve well control?"]
3
4model = SentenceTransformer('OGAI-Embedder')
5embeddings = model.encode(sentences)
6print(embeddings)| Dataset | Description |
|---|---|
| Well Drilling Reports | Real-world drilling reports from operators |
| Casing Design Guidelines | Technical best practices for casing design |
| Mud Logging Data | Drilling fluid parameters and performance records |
llama.cpp for efficient inference in drilling engineering applications.1brew install llama.cpp
2llama-cli --hf-repo OGAI-Embedder --hf-file ogai-embedder-q5_0.gguf -p "What are the key challenges in managed pressure drilling?"llama-server --hf-repo OGAI-Embedder --hf-file ogai-embedder-q5_0.gguf -c 2048