narcolepticchicken commited on
Commit
78c189b
·
verified ·
1 Parent(s): d4fa9a7

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # Oracle-Credit-Compute (OCC) Stack
2
 
3
  A minimal, open-source research prototype for **agentic compute allocation** where agents earn and spend non-transferable, decaying credits based on verified marginal impact.
@@ -87,3 +91,23 @@ occ/
87
  url={https://huggingface.co/narcolepticchicken/occ-stack}
88
  }
89
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # Oracle-Credit-Compute (OCC) Stack
6
 
7
  A minimal, open-source research prototype for **agentic compute allocation** where agents earn and spend non-transferable, decaying credits based on verified marginal impact.
 
91
  url={https://huggingface.co/narcolepticchicken/occ-stack}
92
  }
93
  ```
94
+
95
+ <!-- ml-intern-provenance -->
96
+ ## Generated by ML Intern
97
+
98
+ 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.
99
+
100
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
101
+ - Source code: https://github.com/huggingface/ml-intern
102
+
103
+ ## Usage
104
+
105
+ ```python
106
+ from transformers import AutoModelForCausalLM, AutoTokenizer
107
+
108
+ model_id = 'narcolepticchicken/occ-stack'
109
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
110
+ model = AutoModelForCausalLM.from_pretrained(model_id)
111
+ ```
112
+
113
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.