-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add partial image implementation Signed-off-by: Ryan Wolf <[email protected]> * Refactor requirements Signed-off-by: Ryan Wolf <[email protected]> * Fix bugs Signed-off-by: Ryan Wolf <[email protected]> * Change from_map to map_partitions Signed-off-by: Ryan Wolf <[email protected]> * Add super constructor Signed-off-by: Ryan Wolf <[email protected]> * Add kwargs for load_object_on_worker Signed-off-by: Ryan Wolf <[email protected]> * Get proper epoch size Signed-off-by: Ryan Wolf <[email protected]> * Complete embedding creation loop Signed-off-by: Ryan Wolf <[email protected]> * Change devices Signed-off-by: Ryan Wolf <[email protected]> * Add device Signed-off-by: Ryan Wolf <[email protected]> * Refactor embedding creation and add classifier Signed-off-by: Ryan Wolf <[email protected]> * Fix bugs in classifiers Signed-off-by: Ryan Wolf <[email protected]> * Refactor model names Signed-off-by: Ryan Wolf <[email protected]> * Add model name Signed-off-by: Ryan Wolf <[email protected]> * Fix classifier bugs Signed-off-by: Ryan Wolf <[email protected]> * Allow postprocessing for classifiers Signed-off-by: Ryan Wolf <[email protected]> * Fix name and add print Signed-off-by: Ryan Wolf <[email protected]> * Fix variable name Signed-off-by: Ryan Wolf <[email protected]> * Add NSFW Signed-off-by: Ryan Wolf <[email protected]> * Update init for import Signed-off-by: Ryan Wolf <[email protected]> * Fix embedding size Signed-off-by: Ryan Wolf <[email protected]> * Add fused classifiers Signed-off-by: Ryan Wolf <[email protected]> * Fix missing index Signed-off-by: Ryan Wolf <[email protected]> * Update metdata for fused classifiers Signed-off-by: Ryan Wolf <[email protected]> * Add export to webdataset Signed-off-by: Ryan Wolf <[email protected]> * Fix missing id col Signed-off-by: Ryan Wolf <[email protected]> * Sort embeddings by id Signed-off-by: Ryan Wolf <[email protected]> * Add timm Signed-off-by: Ryan Wolf <[email protected]> * Update init file Signed-off-by: Ryan Wolf <[email protected]> * Add autocast to timm Signed-off-by: Ryan Wolf <[email protected]> * Update requirements and transform Signed-off-by: Ryan Wolf <[email protected]> * Add additional interpolation support Signed-off-by: Ryan Wolf <[email protected]> * Fix transform normalization Signed-off-by: Ryan Wolf <[email protected]> * Remove open_clip Signed-off-by: Ryan Wolf <[email protected]> * Add index path support to wds Signed-off-by: Ryan Wolf <[email protected]> * Address Vibhu's feedback Signed-off-by: Ryan Wolf <[email protected]> * Add import guard for image dataset Signed-off-by: Ryan Wolf <[email protected]> * Change default device Signed-off-by: Ryan Wolf <[email protected]> * Remove commented code Signed-off-by: Ryan Wolf <[email protected]> * Remove device id Signed-off-by: Ryan Wolf <[email protected]> * Fix index issue Signed-off-by: Ryan Wolf <[email protected]> * Add docstrings and standardize variable names Signed-off-by: Ryan Wolf <[email protected]> * Add image curation tutorial Signed-off-by: Ryan Wolf <[email protected]> * Add initial image docs Signed-off-by: Ryan Wolf <[email protected]> * Remove tutorial Signed-off-by: Ryan Wolf <[email protected]> * Add dataset docs Signed-off-by: Ryan Wolf <[email protected]> * Add embedder documentation Signed-off-by: Ryan Wolf <[email protected]> * Revert embedding column name change Signed-off-by: Ryan Wolf <[email protected]> * Update user guide for images Signed-off-by: Ryan Wolf <[email protected]> * Update README Signed-off-by: Ryan Wolf <[email protected]> * Update README with RAPIDS nightly instructions Signed-off-by: Ryan Wolf <[email protected]> * Fix formatting issues in image documentation Signed-off-by: Ryan Wolf <[email protected]> * Remove extra newline in README Signed-off-by: Ryan Wolf <[email protected]> * Address most of Sarah's feedback Signed-off-by: Ryan Wolf <[email protected]> * Add section summary Signed-off-by: Ryan Wolf <[email protected]> * Fix errors and REWORD GPU bullets in README Signed-off-by: Ryan Wolf <[email protected]> * Fix how table of contents displays with new sections Signed-off-by: Ryan Wolf <[email protected]> --------- Signed-off-by: Ryan Wolf <[email protected]>
- Loading branch information
Showing
25 changed files
with
1,002 additions
and
131 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
====================================== | ||
Classifiers | ||
====================================== | ||
|
||
------------------------------ | ||
Base Class | ||
------------------------------ | ||
|
||
.. autoclass:: nemo_curator.image.classifiers.ImageClassifier | ||
:members: | ||
|
||
|
||
------------------------------ | ||
Image Classifiers | ||
------------------------------ | ||
|
||
.. autoclass:: nemo_curator.image.classifiers.AestheticClassifier | ||
:members: | ||
|
||
.. autoclass:: nemo_curator.image.classifiers.NsfwClassifier | ||
:members: |
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,18 @@ | ||
====================================== | ||
Embedders | ||
====================================== | ||
|
||
------------------------------ | ||
Base Class | ||
------------------------------ | ||
|
||
.. autoclass:: nemo_curator.image.embedders.ImageEmbedder | ||
:members: | ||
|
||
|
||
------------------------------ | ||
Timm | ||
------------------------------ | ||
|
||
.. autoclass:: nemo_curator.image.embedders.TimmImageEmbedder | ||
:members: |
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,10 @@ | ||
====================================== | ||
Image Curation | ||
====================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
:titlesonly: | ||
|
||
embedders.rst | ||
classifiers.rst |
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 |
---|---|---|
|
@@ -18,4 +18,5 @@ API Reference | |
decontamination.rst | ||
services.rst | ||
synthetic.rst | ||
image/index.rst | ||
misc.rst |
File renamed without changes
File renamed without changes
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
Oops, something went wrong.