Update README.md
Browse files
README.md
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
---
|
2 |
model_type: dynamic_neural_network
|
3 |
architectures:
|
4 |
-
|
5 |
config:
|
6 |
adaptation_rate: 0.05
|
7 |
architectures:
|
8 |
-
|
9 |
complexity_metric: null
|
10 |
desired_improvement_rate: 0.02
|
11 |
ecosystem_dynamics:
|
12 |
environmental_volatility: 0.1
|
13 |
-
resource_pool: 1
|
14 |
embedding_dim: 768
|
15 |
growth_improvement_threshold: 0.01
|
16 |
hidden_dim: 2048
|
@@ -34,27 +34,21 @@ config:
|
|
34 |
stability_threshold: 0.02
|
35 |
start_token_index: 2
|
36 |
transformers_version: 4.34.0
|
37 |
-
|
38 |
license: apache-2.0
|
39 |
-
|
40 |
datasets:
|
41 |
-
|
42 |
-
|
43 |
language:
|
44 |
-
|
45 |
-
|
46 |
-
library_name: transformers
|
47 |
-
|
48 |
tags:
|
49 |
-
|
50 |
-
|
51 |
metrics:
|
52 |
-
|
53 |
-
|
54 |
-
model:
|
55 |
from transformers import DynamicNeuralNetwork, DynamicNeuralNetworkConfig
|
56 |
|
57 |
-
custom_model = DynamicNeuralNetwork.from_pretrained("ayjays132/phillnet",
|
|
|
|
|
58 |
---
|
59 |
|
60 |
# Model Card for Phillnet 🚀
|
@@ -130,4 +124,4 @@ print("Generated Response:", generated_response)
|
|
130 |
- **Innovative Growth:** The model evolves through an Innovative Growth Network, ensuring continuous enhancement.
|
131 |
- **Custom Architecture:** Crafted with a dynamic custom architecture for unparalleled language understanding.
|
132 |
|
133 |
-
---
|
|
|
1 |
---
|
2 |
model_type: dynamic_neural_network
|
3 |
architectures:
|
4 |
+
- DynamicNeuralNetwork
|
5 |
config:
|
6 |
adaptation_rate: 0.05
|
7 |
architectures:
|
8 |
+
- DynamicNeuralNetwork
|
9 |
complexity_metric: null
|
10 |
desired_improvement_rate: 0.02
|
11 |
ecosystem_dynamics:
|
12 |
environmental_volatility: 0.1
|
13 |
+
resource_pool: 1
|
14 |
embedding_dim: 768
|
15 |
growth_improvement_threshold: 0.01
|
16 |
hidden_dim: 2048
|
|
|
34 |
stability_threshold: 0.02
|
35 |
start_token_index: 2
|
36 |
transformers_version: 4.34.0
|
|
|
37 |
license: apache-2.0
|
|
|
38 |
datasets:
|
39 |
+
- vicgalle/alpaca-gpt4
|
|
|
40 |
language:
|
41 |
+
- en
|
|
|
|
|
|
|
42 |
tags:
|
43 |
+
- text-generation-inference
|
|
|
44 |
metrics:
|
45 |
+
- accuracy
|
46 |
+
model: >-
|
|
|
47 |
from transformers import DynamicNeuralNetwork, DynamicNeuralNetworkConfig
|
48 |
|
49 |
+
custom_model = DynamicNeuralNetwork.from_pretrained("ayjays132/phillnet",
|
50 |
+
config=DynamicNeuralNetworkConfig.from_pretrained("ayjays132/phillnet"))
|
51 |
+
pipeline_tag: text-generation
|
52 |
---
|
53 |
|
54 |
# Model Card for Phillnet 🚀
|
|
|
124 |
- **Innovative Growth:** The model evolves through an Innovative Growth Network, ensuring continuous enhancement.
|
125 |
- **Custom Architecture:** Crafted with a dynamic custom architecture for unparalleled language understanding.
|
126 |
|
127 |
+
---
|