Feature Extraction
Transformers
Safetensors
sentence-transformers
embeddings
lora
sociology
retrieval
Instructions to use CodeSoulco/THETA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CodeSoulco/THETA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="CodeSoulco/THETA")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("CodeSoulco/THETA", dtype="auto") - sentence-transformers
How to use CodeSoulco/THETA with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("CodeSoulco/THETA") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -56,17 +56,21 @@ It is **not** designed for text generation or decision-making in high-risk scena
|
|
| 56 |
CodeSoulco/THETA/
|
| 57 |
βββ embeddings/
|
| 58 |
β βββ 0.6B/
|
|
|
|
| 59 |
β β βββ supervised/
|
| 60 |
-
β β
|
| 61 |
-
β β βββ zero_shot/
|
| 62 |
β βββ 4B/
|
| 63 |
-
β
|
| 64 |
-
|
|
|
|
|
|
|
| 65 |
βββ 0.6B/
|
| 66 |
-
β βββ supervised/
|
| 67 |
-
β βββ unsupervised/
|
| 68 |
-
|
| 69 |
-
|
|
|
|
|
|
|
| 70 |
```
|
| 71 |
|
| 72 |
## Training Details
|
|
|
|
| 56 |
CodeSoulco/THETA/
|
| 57 |
βββ embeddings/
|
| 58 |
β βββ 0.6B/
|
| 59 |
+
β β βββ zero_shot/
|
| 60 |
β β βββ supervised/
|
| 61 |
+
β β βββ unsupervised/
|
|
|
|
| 62 |
β βββ 4B/
|
| 63 |
+
β βββ zero_shot/
|
| 64 |
+
β βββ supervised/
|
| 65 |
+
β βββ unsupervised/
|
| 66 |
+
βββ lora/
|
| 67 |
βββ 0.6B/
|
| 68 |
+
β βββ supervised/
|
| 69 |
+
β βββ unsupervised/
|
| 70 |
+
βββ 4B/
|
| 71 |
+
β βββ supervised/
|
| 72 |
+
β βββ unsupervised/
|
| 73 |
+
βββ logs/
|
| 74 |
```
|
| 75 |
|
| 76 |
## Training Details
|