forked from huggingface/trl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add minibatching * all the fixes i missed * ore fixes * add dedicated variable for mini batch size * style * minor fixes * fix rewards * unbiased variance estimation * mask values/returns * moar fixes * style * change structure and add moar tests * Apply suggestions from code review Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.github.com> * deprecate `forward_batch_size` * remove out of date warning about batching s2s and left padding models * make style * fixed failed merge --------- Co-authored-by: Younes Belkada <49240599+younesbelkada@users.noreply.github.com>
- Loading branch information
1 parent
a757ac4
commit f1300ec
Showing
15 changed files
with
323 additions
and
183 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
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
Empty file.
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,42 @@ | ||
# Copyright 2022 The HuggingFace Team. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import unittest | ||
|
||
import torch | ||
|
||
from trl.core import masked_mean, masked_var, masked_whiten, whiten | ||
|
||
|
||
class CoreTester(unittest.TestCase): | ||
""" | ||
A wrapper class for testing core utils functions | ||
""" | ||
|
||
@classmethod | ||
def setUpClass(cls): | ||
cls.test_input = torch.Tensor([1, 2, 3, 4]) | ||
cls.test_mask = torch.Tensor([0, 1, 1, 0]) | ||
cls.test_input_unmasked = cls.test_input[1:3] | ||
|
||
def test_masked_mean(self): | ||
self.assertEqual(torch.mean(self.test_input_unmasked), masked_mean(self.test_input, self.test_mask)) | ||
|
||
def test_masked_var(self): | ||
self.assertEqual(torch.var(self.test_input_unmasked), masked_var(self.test_input, self.test_mask)) | ||
|
||
def test_masked_whiten(self): | ||
whiten_unmasked = whiten(self.test_input_unmasked) | ||
whiten_masked = masked_whiten(self.test_input, self.test_mask)[1:3] | ||
diffs = (whiten_unmasked - whiten_masked).sum() | ||
self.assertAlmostEqual(diffs, 0) |
File renamed without changes.
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
Empty file.
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.