Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,42 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# AutoML Evolved Loss Functions
|
2 |
+
|
3 |
+
This repository contains evolved neural network loss functions discovered through distributed genetic programming on the Bittensor network (subnet 43).
|
4 |
+
|
5 |
+
## Overview
|
6 |
+
|
7 |
+
The genes stored here represent novel loss functions optimized for:
|
8 |
+
- Image classification tasks
|
9 |
+
- Neural network training efficiency
|
10 |
+
- Improved convergence rates
|
11 |
+
|
12 |
+
## Repository Structure
|
13 |
+
/automl-genes ├── losses/ # Evolved loss function implementations ├── metrics/ # Performance metrics and evaluations └── metadata/ # Gene genealogy and evolution data
|
14 |
+
|
15 |
+
|
16 |
+
## Technical Details
|
17 |
+
|
18 |
+
Loss functions are evolved using:
|
19 |
+
- Genetic programming with population size 100
|
20 |
+
- Tournament selection (size 3)
|
21 |
+
- Multi-architecture validation across:
|
22 |
+
- MLP
|
23 |
+
- ResNet
|
24 |
+
- MobileNet V3
|
25 |
+
- EfficientNet V2
|
26 |
+
|
27 |
+
## Usage
|
28 |
+
|
29 |
+
The evolved loss functions can be imported and used as drop-in replacements for standard PyTorch loss functions in deep learning projects.
|
30 |
+
|
31 |
+
## Project
|
32 |
+
|
33 |
+
Part of the Hivetrain AutoML subnet focused on discovering improved neural network components through distributed evolution.
|
34 |
+
|
35 |
+
For more information, visit:
|
36 |
+
- [DistributedAutoML Repository](https://github.com/Hivetensor/DistributedAutoML)
|
37 |
+
- [Hivetrain Discord](https://discord.gg/JpRSqTBBZU)
|
38 |
+
|
39 |
+
|
40 |
+
---
|
41 |
+
license: mit
|
42 |
+
---
|