Commit ·
881bb2c
1
Parent(s): bd91486
add
Browse files
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# COGENBAI - Advanced Code Generation AI
|
| 2 |
|
| 3 |
COGENBAI is a specialized AI model built on CodeLlama, optimized for software development and code analysis.
|
|
@@ -28,7 +39,22 @@ ollama run cogenbai:7.5b "Create a FastAPI endpoint for user authentication"
|
|
| 28 |
|
| 29 |
See `config.yaml` for model parameters and settings.
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
## License
|
| 32 |
|
| 33 |
Copyright (c) 2025 Algo Science Academy
|
| 34 |
-
````
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
tags:
|
| 4 |
+
- pytorch
|
| 5 |
+
- text-classification
|
| 6 |
+
license: apache-2.0
|
| 7 |
+
library_name: pytorch # Explicitly specify the library
|
| 8 |
+
inference: false # Indicate that inference is not currently supported
|
| 9 |
+
pipeline_tag: text-classification
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
# COGENBAI - Advanced Code Generation AI
|
| 13 |
|
| 14 |
COGENBAI is a specialized AI model built on CodeLlama, optimized for software development and code analysis.
|
|
|
|
| 39 |
|
| 40 |
See `config.yaml` for model parameters and settings.
|
| 41 |
|
| 42 |
+
## Important Notice
|
| 43 |
+
|
| 44 |
+
⚠️ **Inference Availability**: This model is currently not available through supported third-party Inference Providers. Users will need to run inference locally using the specified library.
|
| 45 |
+
|
| 46 |
+
## How to Use
|
| 47 |
+
|
| 48 |
+
To use this model locally:
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
# Example code for local inference
|
| 52 |
+
from transformers import AutoModel, AutoTokenizer
|
| 53 |
+
|
| 54 |
+
model = AutoModel.from_pretrained("your-model-name")
|
| 55 |
+
tokenizer = AutoTokenizer.from_pretrained("your-model-name")
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
## License
|
| 59 |
|
| 60 |
Copyright (c) 2025 Algo Science Academy
|
|
|