Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# MoneyPack Security Suite v4.0
|
| 2 |
|
| 3 |
Advanced Anti-Malware & RAT Detection for Windows/Linux/Mac.
|
|
@@ -33,3 +37,23 @@ Your EXE: `dist\MoneyPack_Security.exe`
|
|
| 33 |
- Python 3.8+
|
| 34 |
- psutil (auto-installs)
|
| 35 |
- rich (auto-installs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# MoneyPack Security Suite v4.0
|
| 6 |
|
| 7 |
Advanced Anti-Malware & RAT Detection for Windows/Linux/Mac.
|
|
|
|
| 37 |
- Python 3.8+
|
| 38 |
- psutil (auto-installs)
|
| 39 |
- rich (auto-installs)
|
| 40 |
+
|
| 41 |
+
<!-- ml-intern-provenance -->
|
| 42 |
+
## Generated by ML Intern
|
| 43 |
+
|
| 44 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 45 |
+
|
| 46 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 47 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 48 |
+
|
| 49 |
+
## Usage
|
| 50 |
+
|
| 51 |
+
```python
|
| 52 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 53 |
+
|
| 54 |
+
model_id = "MoneyPack/MoneyPack-Security-Suite"
|
| 55 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 56 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|