-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/add_original_reward_to_wandb' in…
…to reward_weighting_update
- Loading branch information
Showing
30 changed files
with
1,285 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Changelog | ||
|
||
## 1.1.8 / 2023-08-12 | ||
|
||
## What's Changed | ||
- Make sure to serve axon first by @camfairchild in 14921d35c | ||
|
||
|
||
**Full Changelog**: https://github.com/opentensor/validators/compare/v1.1.7...v1.1.8 | ||
|
||
|
||
## 1.1.7 / 2023-08-11 | ||
### What’s Changed | ||
- Hotfix cutoff limit by @Eugene-hu in #126 | ||
|
||
## 1.1.6 / 2023-08-10 | ||
### What’s Changed | ||
- Diversity regularization by @isabella618033 in https://github.com/opentensor/validators/pull/124 | ||
|
||
## 1.1.5 / 2023-08-08 | ||
### What’s Changed | ||
- Adds new keywords for the task validator by @p-ferreira in #119 | ||
- Save historic embeddings on disk by @opentaco in #121 | ||
- Updates relevance mechanism by @Eugene-hu in #122 | ||
|
||
## 1.1.4 / 2023-08-07 | ||
- HOTFIX: create and serve the axon at startup by @robertalanm in #120 | ||
|
||
|
||
## 1.1.3 / 2023-08-02 | ||
- Adds subtensor to metagraph sync by @camfairchild in #79 | ||
- Fix wandb weights format logging by @p-ferreira in #88 | ||
- Adds netuid tag to wandb runs by @p-ferreira in #95 | ||
- Implements GPU cleaning for optmization by @Eugene-hu in #96 | ||
- Adds compatibility with bittensor 5.3.3 by @camfairchild in #107 | ||
- Adds historic diversity component by @isabella618033 in #111 | ||
- Improvements on diveristy model by @isabella618033 and @Eugene-hu in #111 | ||
- Prompt improvements by @mrseeker in #110 and @p-ferreira in #112 | ||
- Adds Task Validator Filter to reward pipeline by @p-ferreira in #112 | ||
- Fix for empty data retrieval from datasets by @p-ferreira in #113 | ||
- Deprecates pip usage by @p-ferreira in #114 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
from .blacklist import Blacklist | ||
from .task_validator import TaskValidator | ||
from .nsfw import NSFWRewardModel | ||
from .dpo import DirectPreferenceRewardModel | ||
from .open_assistant import OpenAssistantRewardModel | ||
from .reciprocate import ReciprocateRewardModel | ||
from .relevance import BertRelevanceRewardModel | ||
from .relevance import RelevanceRewardModel | ||
from .reward import BaseRewardModel | ||
from .reward import MockRewardModel | ||
from .dahoas import DahoasRewardModel | ||
from .diversity import DiversityRewardModel | ||
from .prompt import PromptRewardModel | ||
from .config import RewardModelType, DefaultRewardFrameworkConfig | ||
from .config import RewardModelType, DefaultRewardFrameworkConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.