-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates Models to support new dataloader format for lists (__values a…
…nd __offsets in dict) and scalar (1D) (#999) * Updates to support new dataloader format for lists and scalar * Updates on MM to make it support new dataloader output * Centralizing PrepareFeatures call and fixing tests and API * Fixed tests that predict last item of the sequence * Fixed additional tests * Fixed many tests * Fixed InBatchNegative tests * Updating TOX to point to dataloader changes PR and minor fix * Updated transformers example to fix test * Fixed tests * Fixed nested loader training * Turning Candidate into dataclass and adding 2D ids to it (batch size,1) instead of 1D as before * Updated transformer block in test * Updating gpu-ci.yaml to be able to run CI on an edited PR * Removing the edited pull request option from gpu-ci.yaml, to see if it is necessary * Fixed test and linting issue * Changing the order of libraries installing to try and ensuring that the right dataloader is installed * Changing GitHub Action to install a modified dataloader after installing models. Fixed linting * Fixed unit test and linting issue * Updating tox.ini to install the modified the dataloader for horovod and GPU tests * Updating tox.ini and fixing linting issue * Fixed failing tests * Replaced references from value_count to shape * Fixed tests * Trying to enforce the horovod multi-gpu tests to use the modified dataloader for CI * Removed change in horovodrun command that was trying to enforce usage of the modified dataloader installed * Removing dep install for horovod gpu tests, to try and make it using the modified dataloader * Trying to enforce horovod GPU tests to use the installed modified dataloader * Implemented suggestions from Oliver
- Loading branch information
1 parent
ca18dff
commit a5e392c
Showing
53 changed files
with
981 additions
and
842 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,8 +53,7 @@ feature { | |
feature { | ||
name: "genres" | ||
value_count { | ||
min: 1 | ||
max: 6 | ||
min: 1 | ||
} | ||
type: INT | ||
int_domain { | ||
|
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
Oops, something went wrong.