Skip to content

Commit

Permalink
use a highly optimistic initial competence until the second learning …
Browse files Browse the repository at this point in the history
…cycle
  • Loading branch information
tomsilver committed Dec 5, 2023
1 parent ed233bc commit 9f1d947
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion predicators/competence_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ def predict_competence(self, num_additional_data: int) -> float:
# Highly naive: predict a constant improvement in competence.
del num_additional_data # unused
current_competence = self.get_current_competence()
return min(1.0, current_competence + 1e-2)
# Use a highly optimistic initial competence until the second cycle.
return min(1.0, current_competence + 0.5)


class OptimisticSkillCompetenceModel(SkillCompetenceModel):
Expand Down

0 comments on commit 9f1d947

Please sign in to comment.