Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Incorrect Default Parameters in NoiseScheduler for StableDiffusion #2065

Open
wants to merge 118 commits into
base: master
Choose a base branch
from

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    11a0913 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Fix some imports in KerasCV that are invalid with Namex (keras-team#2064

    )
    
    * Update PULL_REQUEST_TEMPLATE.md
    
    * Update CONTRIBUTING.md
    
    * Update CONTRIBUTING.md
    
    * Update basic_training.py
    
    * More namex fixes
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    5b3ad08 View commit details
    Browse the repository at this point in the history
  2. Update version to 0.6.3 (keras-team#2066)

    We need to cut a release to get the namex fixes deployed.
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    c4c0710 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e3400e8 View commit details
    Browse the repository at this point in the history
  4. Update version to 0.6.4 (keras-team#2069)

    Need to cut another minor release for bugfix.
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    f81780e View commit details
    Browse the repository at this point in the history
  5. Update the comment of the num_classes parameter of deeplab v3 (kera…

    …s-team#2071)
    
    * Update deeplab_v3_plus.py
    
    Update the comment of the `num_classes`parameter which contains the background class and the classes from the data.
    
    * Update deeplab_v3_plus_test.py
    
    Update the tests following the updating of 'num_classes' parameter (now including the background class)
    aaudevart authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    69c4152 View commit details
    Browse the repository at this point in the history
  6. Set read-only tokens for all workflows (keras-team#2075)

    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    pnacht authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    f0c1f88 View commit details
    Browse the repository at this point in the history
  7. Add the Segment Anything Model to KerasCV (keras-team#1987)

    * Start adding components for the segment anything model
    
    * SAMLayerNormalization -> keras.layers.LayerNormalization
    
    They both behave exactly the same when moving_mean and moving_variance are None and epsilon is 1e-6
    
    * Move the image encoder to detectron2 backbone and fix for tf.keras backend
    
    * Address review comments and address saving bug
    
    - Use `keras_cv.export_api.keras_cv_export` instead of `keras.saving.register_keras_serializable`.
    - Add a `SerializableSequential` class to address the saving bug with the `Sequential` model.
    - Push the helper functions in `keras_cv/layers/detectron2_layers.py` to the bottom of the file.
    - Add the detectron2 layers to the `keras_cv/layers/__init__.py` file.
    - Add a test for the `ViTDetPatchingAndEmbedding` layer.
    
    * Make the backbone functional; unite MLP and MLPBlock
    
    * Address David's review comments
    
    * Add SAM Task model; make MaskDecoder and PromptEncoder XLA compatible
    
    * Remove a stray file
    
    * Add docs for the Task model
    
    * Add more references
    
    [skip ci]
    
    * Remove SerializableSequential layer
    
    * detectron2 -> vit_det; add SAM presets; fix ViTDet presets
    
    * Increse test tolerence for GCB Run
    tirthasheshpatel authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    227c5b5 View commit details
    Browse the repository at this point in the history
  8. Export SD submodels (keras-team#2080)

    * Export SD submodels
    
    * Remove empty folder
    jbischof authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    2c614d3 View commit details
    Browse the repository at this point in the history
  9. adding deeplab_v3_plus_presets (keras-team#2051)

    * adding deeplab_v3_plus_presets
    
    * update formatting
    
    * fixed error
    
    * reformatted
    
    * fix errors
    
    * added num_classses arg
    
    * add input_shape arg
    
    * update test
    
    * update input_shape
    
    * updated preset
    
    * update test
    
    * move update to from_preset to task.py
    
    * reformatted code
    
    * updated doc string
    
    * Update assert
    
    * Update deeplab_v3_plus_test.py test
    
    * Update task.py
    
    * Update deeplab_v3_plus_test.py
    
    * Update deeplab_v3_plus_test.py
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    81ed5a7 View commit details
    Browse the repository at this point in the history
  10. [Yolov8 detector] Fix example in docstring (keras-team#2082)

    * fix example in docstring
    
    * review comments
    cosmo3769 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    36368bb View commit details
    Browse the repository at this point in the history
  11. Bump python version requirement to 3.9 (keras-team#2079)

    * Bump python version requirement to 3.9
    
    Keras-core now requires at least 3.9, and tf 2.14 (out imminently) will
    require 3.9 as well.
    
    We should follow suit for cv/nlp.
    
    * Fix build errors with new keras-core version
    
    * Update devcontainer to 3.9
    mattdangerw authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    d389a9e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    896102d View commit details
    Browse the repository at this point in the history
  13. Use "masks" and "boxes" as prompt keys for SAM (keras-team#2084)

    * Use "masks" and "boxes" as prompt keys for SAM
    
    * Fix tests
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    09d9fbb View commit details
    Browse the repository at this point in the history
  14. Support partial prompting in SAM (keras-team#2085)

    * Use "masks" and "boxes" as prompt keys for SAM
    
    * Fix tests
    
    * Support missing prompts for SAM
    
    * Update docstrings
    
    * Review fix
    
    * Fix partial prompting for top-level model
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    492bb40 View commit details
    Browse the repository at this point in the history
  15. Explicitly specify full package for more modules, as shown in keras-t…

    …eam#2001 (keras-team#2077)
    
    * Test to demonstrate failures in import
    
    * Explicitly specify full package for more modules, as shown in keras-team#2001
    BjarneHerland authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    2ef46ee View commit details
    Browse the repository at this point in the history
  16. Update VITDet to conform to KerasCV scaling standards (keras-team#2086)

    * Update VITDet to conform to KerasCV scaling standards
    
    * dtype fix
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    bec2706 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    3feef5b View commit details
    Browse the repository at this point in the history
  18. Support importing Keras3 as Keras instead of Keras Core (keras-team#2089

    )
    
    * Support importing Keras3 as Keras instead of Keras Core
    
    * Fix version parsing
    
    * Remove try/catch (not required)
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    ff4f3c1 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    5b7cfee View commit details
    Browse the repository at this point in the history
  20. Export task models as both models.task.Model and models.Model (keras-…

    …team#2093)
    
    * Export task models as both models.task.Model and models.Model
    
    * Same for ImageClassifier
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    03cebe6 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    22e4ec8 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    4bf0c43 View commit details
    Browse the repository at this point in the history
  23. Doc updates to switch branding to Keras 3 (keras-team#2092)

    * Update README
    
    * Fix imports in docs
    
    * Update keras import instructions
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    d443f69 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    aa820bb View commit details
    Browse the repository at this point in the history
  25. Fix decoding of LabelEncoder for RetinaNet (keras-team#2099)

    * Fix decoding of LabelEncoder for RetinaNet
    
    * Deserialize prediction decoder
    ianstenbit authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    6b5ebd7 View commit details
    Browse the repository at this point in the history
  26. Use the proper title for example (keras-team#2109)

    Otherwise it won't be rendered correctly by the [`TFKerasDocumentationGenerator`](https://github.com/keras-team/keras-io/blob/fc340b9989cdf17fba44e66efa22758afad39b87/scripts/docstrings.py#L27-L28)
    Philmod authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    a59fb9b View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    ffa6c81 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    0618031 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    c56f69c View commit details
    Browse the repository at this point in the history
  30. Fix the issue (keras-team#2102): Add cast to float32 from float16 int…

    …o Stable Diffusion (keras-team#2124)
    Yuhki Yano authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    3c65de6 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    ef7a360 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    1df146c View commit details
    Browse the repository at this point in the history
  33. update keras-cv json file name (keras-team#2128)

    * update keras-cv json file name
    
    * removed z which was a mistake
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    c10fd37 View commit details
    Browse the repository at this point in the history
  34. Improve keras 3 detection (keras-team#2132)

    * improve keras 3 detection
    
    * update __init__
    
    * update config
    
    * update config to update multibackend flag
    
    * updated spelling error
    
    * updatconfig
    
    * update tf_ops
    
    * update tf -ops
    
    * update tf ops
    
    * undo last commit
    
    * update tf_ops.py
    
    * reformat
    
    * update init()
    
    * update minor error in tf ops
    
    * remove check for keras 3
    
    * revert changes to tf_ops
    
    * disable layers using internal base random layer
    
    * update syntax error
    
    * update imports in keras version check layer
    
    * update init method in keras version check
    
    * add seed argument
    
    * rasie error in class itself
    
    * update constructor
    
    * update to import directly from layers
    
    * update import in base image augmenattion layer
    
    * change import sin tf_ops
    
    * update tf ops import
    
    * change init
    
    * update tf_ops
    
    * update backend functions
    
    * keras.src
    
    * update namespace
    
    * update namescope correctly
    
    * code reformat
    
    * reformat and add backend functions
    
    * modified ops import
    
    * reformat
    
    * update ops
    
    * update backend
    
    * update ops
    
    * code reformatted
    
    * update import
    
    * update imports in ops
    
    * update error message
    
    * review changes added
    
    * update keras imports
    
    * update imports
    
    * update imports
    
    * update import in random.py
    
    * add issues link
    
    * code reformat
    
    * code reformat
    
    * review comments addressed
    
    * code reformat
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    43eefe7 View commit details
    Browse the repository at this point in the history
  35. Fix Segment Anything Model saving bug (keras-team#2138)

    * Fix Segment Anything Model saving bug
    
    * Use keras iitializers for Keras2/3/ compatibility
    tirthasheshpatel authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    8a2939a View commit details
    Browse the repository at this point in the history
  36. Adds Nightly package for keras-cv (keras-team#2139)

    * Add Nightly package
    
    * update version
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    e7304f4 View commit details
    Browse the repository at this point in the history
  37. Set a security policy (keras-team#2142)

    * Add security policy
    
    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    
    * Only use private vuln report
    
    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    
    ---------
    
    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    pnacht authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    e3f846c View commit details
    Browse the repository at this point in the history
  38. add Random ops shim (keras-team#2145)

    * add Random ops shim
    
    * update random opss
    
    * handle None case
    
    * change seed handeling
    
    * undo changes
    
    * undo changes
    
    * undo
    
    * update int_seed
    
    * change int to init
    
    * update init_seed everywhere
    
    * add kwargs
    
    * undo bial
    
    * code reformat
    
    * remove dtype
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    e87289b View commit details
    Browse the repository at this point in the history
  39. Replace RandomGenerator with SeedGenerator (keras-team#2150)

    * upload updated aug layers
    
    * reformat and resolve error
    
    * add more layers
    
    * add aug_mix
    
    * code reformat
    
    * add few more layers
    
    * add more layers
    
    * add more layers#
    
    * add more layers
    
    * correct errors#
    
    * remove force generator
    
    * Update aug layers (keras-team#2147)
    
    * Replace random_generator
    
    * Replace random_genereator
    
    * resolve dropblock error
    
    * update base_augmentation_layer_3d and all subclasses
    
    * fix random inversion test
    
    * Fix format and tests
    
    * Fix Keras 2 tests with Seed Gen
    
    ---------
    
    Co-authored-by: divyashreepathihalli <[email protected]>
    2 people authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    1b694d2 View commit details
    Browse the repository at this point in the history
  40. Revert "Replace RandomGenerator with SeedGenerator (keras-team#2150

    …)" (keras-team#2161)
    
    This reverts commit 365a675.
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    9292d08 View commit details
    Browse the repository at this point in the history
  41. Keras 3 compatibility (keras-team#2170)

    * Tf generator changes (keras-team#2168)
    
    * Keras3 tests (keras-team#2152)
    
    * Update requirements for Keras 3
    
    * Update Requirements
    
    * Update Requirements
    
    * Add randint for keras3 compatibility
    
    * remove force generator
    
    * fix few tests
    
    * fix tests
    
    * fix more tests
    
    * Update actions.yml
    
    * Tf generator changes (keras-team#2162)
    
    * Keras3 tests (keras-team#2152)
    
    * Update requirements for Keras 3
    
    * Update Requirements
    
    * Update Requirements
    
    * Add randint for keras3 compatibility
    
    * remove force generator
    
    * fix few tests
    
    * fix tests
    
    * fix more tests
    
    * Revert "Replace `RandomGenerator` with `SeedGenerator` (keras-team#2150)" (keras-team#2161)
    
    This reverts commit 365a675.
    
    * Update actions.yml
    
    ---------
    
    Co-authored-by: Ramesh Sampath <[email protected]>
    
    * updates to rescaling
    
    * fix import
    
    * code reformat
    
    * namescope
    
    * update name_scope
    
    * correct ops.random
    
    * update base aug layer
    
    * code reformat
    
    * skip rand_augment test
    
    * disable random shear test
    
    * skip test
    
    * update import
    
    * fix format and base layer
    
    * ads smart resize
    
    * undo last commit
    
    * smart_resize update
    
    * update imports
    
    * correct shameful spelling mistake
    
    * update resizing
    
    * update resizing
    
    * update imports
    
    * disable ragged tensor test
    
    * skip tests
    
    * change back translation and zoom test
    
    * revert test changes
    
    * update
    
    * skip repeated augmentation tests
    
    * disable random shear test
    
    * code reformat
    
    * remove legacy_seed
    
    * code reformat
    
    * revert updates to tests
    
    * update tests
    
    * fix mock test
    
    ---------
    
    Co-authored-by: Ramesh Sampath <[email protected]>
    
    * Skip keras 3 incompatible layers (keras-team#2169)
    
    * Update requirements.txt
    
    * disable flaky test
    
    * code reformat
    
    * fixes tests on coco metric and serialization
    
    * code reformat
    
    * Skip test on RandAugment
    
    * Skip test on RandAugment
    
    ---------
    
    Co-authored-by: Ramesh Sampath <[email protected]>
    2 people authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    dabdddf View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    d75dc2f View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    7bfaeab View commit details
    Browse the repository at this point in the history
  44. fix shapes error if images was a list. (keras-team#2173)

    * fix shapes error  if images was a list.
    
    * fix tuple error
    
    * revert previous commit
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    bcb6c0f View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    cf2b9bb View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    aa9c83f View commit details
    Browse the repository at this point in the history
  47. fix model None error (keras-team#2176)

    * Update pycoco_callback.py
    
    * Update waymo_evaluation_callback.py
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    ac757cd View commit details
    Browse the repository at this point in the history
  48. update version error (keras-team#2175)

    * update error message for tensorflow module not found
    
    * code reformatted
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    65078f7 View commit details
    Browse the repository at this point in the history
  49. Fixes Saving Format related test failures for Keras 3 (keras-team#2180)

    * Deprecate keras_v3 save format for Keras3
    
    * Deprecate keras_v3 save format for Keras3
    
    * Deprecate keras_v3 save format for Keras3
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    61b91d7 View commit details
    Browse the repository at this point in the history
  50. convert to tensor before smart resize (keras-team#2184)

    * convert to tensor before smart resize
    
    * use tf-ops for smart_resize
    
    * use tf-ops for smart_resize
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    e74881a View commit details
    Browse the repository at this point in the history
  51. Fix Keras 3 version check (keras-team#2191)

    * Fix Keras 3 version check
    
    * Fix Keras 3 version check
    
    * Fix Keras 3 version check
    
    * Raise error if Keras is not compatible with TF
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    8bf0ec9 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    87cae5d View commit details
    Browse the repository at this point in the history
  53. Fix bug when upranking passthrough inputs to RandAugment (keras-team#…

    …2194)
    
    - RandAugment sometimes will choose a "no augmentation" option and
      passthrough inputs unaltered.
    - Preprocessing normalization routines were not making copies of inputs
      and sometimes mutating layer input directly (mutating the input
      dict to cast dtypes and uprank tensors).
    - RandAugment under the passthrough option would return these inputs
      directly.
    
    The net effect was sometimes attempting to uprank during a passthrough
    call, breaking tf.map_fn
    mattdangerw authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    c1b3eb6 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    9cac8e6 View commit details
    Browse the repository at this point in the history
  55. Simplify running KerasCV with Keras 3 (keras-team#2179)

    * remove keras_core dependency
    
    * update init
    
    * update readme
    
    * fix model None error (keras-team#2176) (keras-team#2177)
    
    * Update pycoco_callback.py
    
    * Update waymo_evaluation_callback.py
    
    * fix model None error (keras-team#2176) (keras-team#2178)
    
    * Update pycoco_callback.py
    
    * Update waymo_evaluation_callback.py
    
    * update readme and conftest
    
    * update readme
    
    * update citation list
    
    * fix mix transformer tests
    
    * fix lint error
    
    * fix all failing tests
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    ec8a11b View commit details
    Browse the repository at this point in the history
  56. Fix dtype support for SegmentAnythingModel (keras-team#2207)

    * Fix dtype support for SAM
    
    * Update keras_cv/models/segmentation/segment_anything/sam_test.py
    
    * Fix Keras 2 failures
    
    * Fix F401 lint error; remove unused import
    tirthasheshpatel authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    6969be1 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    426f123 View commit details
    Browse the repository at this point in the history
  58. Fix SegFormer Presets (keras-team#2222)

    * Fix segformer presets
    
    * Add extra SegFormer tests
    
    * Change  flow, add backbone presets to SegFormer presets
    
    * Fix small formatting issue
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    6566c33 View commit details
    Browse the repository at this point in the history
  59. Update README.md (keras-team#2223)

    * Update README.md
    
    * Update README.md
    
    * Update README.md
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    05d37ec View commit details
    Browse the repository at this point in the history
  60. Adds Kokoro GPU Tests (keras-team#2224)

    * Adds Kokoro tests
    
    * Add Kokoro Tests
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    eb9dbe2 View commit details
    Browse the repository at this point in the history
  61. Update random_cutout.py to be a subclass of VectorizedBaseImageAugmen…

    …tationLayer (keras-team#2123)
    
    * Update random_cutout.py
    
    Make RandomCutout a subclass of VectorizedBaseImageAugmentationLayer
    
    * Fix RandomCutout for ragged inputs
    
    * Fix typo and style
    sup3rgiu authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    b91d4a7 View commit details
    Browse the repository at this point in the history
  62. Vectorized implementation of RandomColorDegeneration and Equalization…

    … preprocessing layers (keras-team#2214)
    
    * Vectorize RandomColorDegeneration
    
    * Vectorize Equalization
    
    * Vectorize Equalization
    
    * Fix Equalization for ragged input
    sup3rgiu authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    105b535 View commit details
    Browse the repository at this point in the history
  63. Fix the issue(keras-team#2195): Improve readability and comprehensibi…

    …lity of Stable Diffusion source (keras-team#2197)
    y-vectorfield authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    c332456 View commit details
    Browse the repository at this point in the history
  64. Fix GPU Tests (keras-team#2228)

    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    1b7a89b View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    276944b View commit details
    Browse the repository at this point in the history
  66. Change reference of SeedGen and Serialization (keras-team#2241)

    * Change reference of SeedGen and Serialization
    
    * Change reference of SeedGen and Serialization
    
    * Change reference of SeedGen and Serialization
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    40dbf7c View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    9800b4c View commit details
    Browse the repository at this point in the history
  68. Fixes GPU Tests - JAX, PyTorch and some failures for Keras2 (keras-te…

    …am#2243)
    
    * Convert init_seed to int
    
    * Use keras 3 seed gen when applicable
    
    * Use keras 3 seed gen when applicable
    
    * Fixes PyTorch Tests
    
    * Fixes Keras2 DeepLap Tests
    
    * Fixes PyTorch Tests
    
    * Fixes PyTorch Tests
    
    * Fixes Keras2 Tests
    
    * Fix spatial pyramid layer
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    a718231 View commit details
    Browse the repository at this point in the history
  69. Update Random to Stateless - Disables Stable Diffussion tests (keras-…

    …team#2245)
    
    * Update Random to Stateless
    
    * For keras3, used the passed seed
    
    * Disable Deeplab V3 tests for Keras2
    
    * Disable StableDiffusion golden value test
    
    * Disable StableDiffusion golden value test
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    a02ae0e View commit details
    Browse the repository at this point in the history
  70. Support non-tensorflow backends in KerasCV's preprocessing layers (ke…

    …ras-team#2240)
    
    * Support non-TF backends in KerasCV's preprocessing layers
    
    * Fix failing PyTorch tests on GPU
    
    * ops.convert_to_tensor -> ops.convert_to_numpy
    
    * Fix remaining instances
    
    * More torch failures
    
    * Remove unrelated change
    tirthasheshpatel authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    74ef6b1 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    c2841f2 View commit details
    Browse the repository at this point in the history
  72. Fix drop block (keras-team#2250)

    * fix keras-team#2134
    
    * make drop_block_2d keras 3 compatible
    
    * update get_config
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    8dcaad2 View commit details
    Browse the repository at this point in the history
  73. fix 3d preprocessing layer (keras-team#2252)

    * fix 3d preprocessing layer
    
    * disable input format test
    
    * skip format test
    
    * code reformat
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    cf93cc7 View commit details
    Browse the repository at this point in the history
  74. Fixing conversion of box formats on the original boxes (keras-team#2213)

    * chore: copy the original boxes and apply convert format
    
    * chore: renaming variable
    ariG23498 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    ac2e0f2 View commit details
    Browse the repository at this point in the history
  75. Add dependabot to update GitHub Actions and Python dependencies (kera…

    …s-team#2259)
    
    * Add dependabot to monitor GHA and Python
    
    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    
    * Bump GitHub Actions to latest versions
    
    Bumps the github-actions group with 5 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` |
    | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` |
    | [actions/cache](https://github.com/actions/cache) | `2` | `3` |
    | [DoozyX/clang-format-lint-action](https://github.com/doozyx/clang-format-lint-action) | `0.14` | `0.17` |
    | [devcontainers/ci](https://github.com/devcontainers/ci) | `0.2` | `0.3` |
    
    
    Updates `actions/checkout` from 3 to 4
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    Updates `actions/setup-python` from 4 to 5
    - [Release notes](https://github.com/actions/setup-python/releases)
    - [Commits](actions/setup-python@v4...v5)
    
    Updates `actions/cache` from 2 to 3
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v2...v3)
    
    Updates `DoozyX/clang-format-lint-action` from 0.14 to 0.17
    - [Release notes](https://github.com/doozyx/clang-format-lint-action/releases)
    - [Commits](DoozyX/clang-format-lint-action@v0.14...v0.17)
    
    Updates `devcontainers/ci` from 0.2 to 0.3
    - [Release notes](https://github.com/devcontainers/ci/releases)
    - [Commits](devcontainers/ci@v0.2...v0.3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: actions/setup-python
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: DoozyX/clang-format-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: github-actions
    - dependency-name: devcontainers/ci
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: github-actions
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    
    * Bump Python dependencies to latest versions
    
    Bumps the python group with 4 updates: [tf-nightly-cpu](https://github.com/tensorflow/tensorflow), torch, torchvision and [tf-nightly[and-cuda]](https://github.com/tensorflow/tensorflow).
    
    
    Updates `tf-nightly-cpu` from 2.16.0.dev20231109 to 2.16.0.dev20231221
    - [Release notes](https://github.com/tensorflow/tensorflow/releases)
    - [Changelog](https://github.com/tensorflow/tensorflow/blob/master/RELEASE.md)
    - [Commits](https://github.com/tensorflow/tensorflow/commits)
    
    Updates `torch` from 2.1.0 to 2.1.2+cu118
    
    Updates `torchvision` from 0.16.0 to 0.16.2+cu118
    
    Updates `tf-nightly[and-cuda]` from 2.16.0.dev20231109 to 2.16.0.dev20231221
    - [Release notes](https://github.com/tensorflow/tensorflow/releases)
    - [Changelog](https://github.com/tensorflow/tensorflow/blob/master/RELEASE.md)
    - [Commits](https://github.com/tensorflow/tensorflow/commits)
    
    ---
    updated-dependencies:
    - dependency-name: tf-nightly-cpu
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: torch
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: torchvision
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: tf-nightly[and-cuda]
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    
    ---------
    
    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    2 people authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    b68995c View commit details
    Browse the repository at this point in the history
  76. Remove cloudbuild config (keras-team#2260)

    We have switched to a different method for gpu testing.
    mattdangerw authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    7e8476d View commit details
    Browse the repository at this point in the history
  77. align pip_build with keras (keras-team#2256)

    * align pip_build with keras
    
    * align pip_build with keras
    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    212388b View commit details
    Browse the repository at this point in the history
  78. Adapt KerasCV for Kaggle integration with new preset format (keras-te…

    …am#2200)
    
    * Adapt KerasCV to new preset logic
    
    * Add new preset logic to task, add segmentation example to test
    
    * Add updated Kaggle link handling
    
    * Fix backbone preset functionality in Task
    
    * Change to subclassing check for backbone in task
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    4ce3172 View commit details
    Browse the repository at this point in the history
  79. Add Kaggle preset conversion upload script (keras-team#2205)

    * Add preset conversion upload script
    
    * Fix formatting
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    463a3b4 View commit details
    Browse the repository at this point in the history
  80. Switch all available presets to Kaggle format (keras-team#2206)

    * Change preset configs to Kaggle hangles
    
    * Remove legacy from_preset
    
    * Convert all remaining model presets to Kaggle handle
    
    * Convert last remaining presets to Kaggle handle
    
    * Add kaggle handle checking for task class
    
    * Add  flag checking
    
    * Add alias subclass checking
    
    * Add input shape config override
    
    * Fix formatting
    
    * Update config for CenterPillarBackbone
    
    * Ensure that preset with weights defaults to loading weights
    
    * Fix formatting issues
    
    * Comment out preset conversion script
    
    * Convert preset script to functions
    
    * Address preset checking comments, update utils_test.py
    
    * Ensure subclass and alias checking
    
    * Change weights check
    
    * Update presets script
    
    * Change load_weights check
    
    * Add more models to preset conversion
    
    * Remaining models to preset conversion script
    
    * Add comments on load_weights behavior
    
    * Remove useless comment
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    2cf4902 View commit details
    Browse the repository at this point in the history
  81. Update conversion script to fix model naming (keras-team#2221)

    * Update conversion script to specify name for models
    
    * Add kwargs argument
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    aa894ec View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    827fc02 View commit details
    Browse the repository at this point in the history
  83. Add clearer errors for preset methods (keras-team#2220)

    * Add clearer errors for preset methods
    
    * Formatting fixes
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    111cb98 View commit details
    Browse the repository at this point in the history
  84. Update segformer_presets with backbone import (fix merge) (keras-team…

    …#2225)
    
    * Update segformer_presets with backbone import
    
    * Update format.
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    9cd8d7f View commit details
    Browse the repository at this point in the history
  85. Switch presets to final Kaggle location (keras-team#2216)

    * Convert initial kaggle handles
    
    * Add Vision transformer kaggle switch
    
    * Add kagglehub requirement and auth, fix formatting
    
    * Special case input shape arg
    
    * Add kaggle username and key to CI
    
    * Add kaggle authentication to Keras 2 actions
    
    * Add test line
    
    * Add an extra space
    
    * Fix input shape build on load_preset
    
    * Fix format issues
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    5e9d9fc View commit details
    Browse the repository at this point in the history
  86. Update version to 0.8.0.dev0

    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    6e53d2f View commit details
    Browse the repository at this point in the history
  87. Remove print statement in test

    sampathweb authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    fce2118 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    9ba2e74 View commit details
    Browse the repository at this point in the history
  89. Update load_weights for Keras 2 compatibility (keras-team#2235)

    * Update SegFormer preset tests to remove input_shape arg
    
    * Add fix for saving compatibility with Keras 2, fix formatting
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    398b22b View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    9e2a82c View commit details
    Browse the repository at this point in the history
  91. Configuration menu
    Copy the full SHA
    61dc1a9 View commit details
    Browse the repository at this point in the history
  92. Backwards compatibility fixes for Keras <=2.15 (keras-team#2273)

    * Add fixes for backwards compatibility for versions <2.15
    
    * Bump version number for presets to version 2
    
    * Port over RetinaNet custom metric fix
    
    * Bump DeepLabV3Plus preset version after re-upload
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    e9ba6ba View commit details
    Browse the repository at this point in the history
  93. Remove weight traversal output

    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    49c7313 View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    b91add7 View commit details
    Browse the repository at this point in the history
  95. Modify preset kaggle handles to full path (keras-team#2279)

    * Modify kaggle handles to full path
    
    * Modify preset handling
    
    * Fix formatting
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    95545ad View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    0b88c5f View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    0f3fc04 View commit details
    Browse the repository at this point in the history
  98. Fix YOLOv8Detector deserialization (keras-team#2283)

    * Fix YOLOv8Detector deserialization
    
    * Fix nit
    
    * Deserialize preditction decoder
    nkovela1 authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    5292bd9 View commit details
    Browse the repository at this point in the history
  99. Bump the python group with 4 updates (keras-team#2277)

    Bumps the python group with 4 updates: [tf-nightly-cpu](https://github.com/tensorflow/tensorflow), torch, torchvision and [tf-nightly[and-cuda]](https://github.com/tensorflow/tensorflow).
    
    
    Updates `tf-nightly-cpu` from 2.16.0.dev20231221 to 2.16.0.dev20240104
    - [Release notes](https://github.com/tensorflow/tensorflow/releases)
    - [Changelog](https://github.com/tensorflow/tensorflow/blob/master/RELEASE.md)
    - [Commits](https://github.com/tensorflow/tensorflow/commits)
    
    Updates `torch` from 2.1.2 to 2.1.2+cu121
    
    Updates `torchvision` from 0.16.2 to 0.16.2+cu121
    
    Updates `tf-nightly[and-cuda]` from 2.16.0.dev20231221 to 2.16.0.dev20240104
    - [Release notes](https://github.com/tensorflow/tensorflow/releases)
    - [Changelog](https://github.com/tensorflow/tensorflow/blob/master/RELEASE.md)
    - [Commits](https://github.com/tensorflow/tensorflow/commits)
    
    ---
    updated-dependencies:
    - dependency-name: tf-nightly-cpu
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: torch
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: torchvision
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: tf-nightly[and-cuda]
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    c9511c8 View commit details
    Browse the repository at this point in the history
  100. Add Scorecard Action (keras-team#2267)

    Signed-off-by: Pedro Kaj Kjellerup Nacht <[email protected]>
    pnacht authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    a495ad0 View commit details
    Browse the repository at this point in the history
  101. add nms serialization test (keras-team#2285)

    * fix nms serialization
    
    * remove the default function
    
    ---------
    
    Co-authored-by: Divyashree Sreepathihalli <divyashreepathihalli>
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    6698fcf View commit details
    Browse the repository at this point in the history
  102. Configuration menu
    Copy the full SHA
    2f964c1 View commit details
    Browse the repository at this point in the history
  103. updata dataset link (keras-team#2287)

    Co-authored-by: Divyashree Sreepathihalli <divyashreepathihalli>
    divyashreepathihalli authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    7af945a View commit details
    Browse the repository at this point in the history
  104. Configuration menu
    Copy the full SHA
    758a4c2 View commit details
    Browse the repository at this point in the history
  105. Move keras-cv markdown files to toplevel (keras-team#2291)

    Keras, KerasNLP and KerasTuner all store things liek the CONTRIBUTING.md
    in the toplevel of the repo. We should do the same here.
    mattdangerw authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    f5f6b9a View commit details
    Browse the repository at this point in the history
  106. Add version() API to unify with Keras and KerasNLP (keras-team#2199)

    * Unify `version` API with keras and keras_nlp
    
    * Formatting
    
    * Update to keep `version` parity with KerasNLP, support nightly version string
    
    * Update version_utils.py
    
    * Update version_utils.py
    grasskin authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    0e51edb View commit details
    Browse the repository at this point in the history
  107. Update random_crop_and_zoom.py (keras-team#2294)

    * Update random_crop_and_zoom.py
    
    * Update description
    
    * rename file
    sachinprasadhs authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    0444db2 View commit details
    Browse the repository at this point in the history
  108. bug fix (keras-team#2303)

    haifeng-jin authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    18c5297 View commit details
    Browse the repository at this point in the history
  109. Add BASNet Segmentation Model (keras-team#2006) (keras-team#2271)

    * BASNet model initial code structure
    
    * adding test and initial preset details
    
    * adding comments
    
    * cleaning and formatting code
    
    * keras 3 support added
    
    * disabling preset test for BASNet
    hamidriasat authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    4e5e76a View commit details
    Browse the repository at this point in the history
  110. Fix image.shape type (keras-team#2305)

    Fixed image.shape issue for tensorflow backend
    sachinprasadhs authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    4b7132a View commit details
    Browse the repository at this point in the history
  111. Create workflow for auto assignment of issues and for stale issues (k…

    …eras-team#2313)
    
    * Create auto-assignment.yaml
    
    * Create auto-assignment.js
    
    * Create stale-issue-pr.yaml
    
    * Rename auto-assignment.yaml to auto-assignment.yml
    
    * Rename stale-issue-pr.yaml to stale-issue-pr.yml
    sachinprasadhs authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    b44b32d View commit details
    Browse the repository at this point in the history
  112. Configuration menu
    Copy the full SHA
    85a8956 View commit details
    Browse the repository at this point in the history
  113. Configuration menu
    Copy the full SHA
    f3809c5 View commit details
    Browse the repository at this point in the history
  114. Configuration menu
    Copy the full SHA
    43da18d View commit details
    Browse the repository at this point in the history
  115. Configuration menu
    Copy the full SHA
    4ca55a0 View commit details
    Browse the repository at this point in the history
  116. Configuration menu
    Copy the full SHA
    4f2072e View commit details
    Browse the repository at this point in the history
  117. Bump the github-actions group with 3 updates (keras-team#2330)

    Bumps the github-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action).
    
    
    Updates `actions/cache` from 3 to 4
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3...v4)
    
    Updates `actions/upload-artifact` from 4.0.0 to 4.3.0
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@c7d193f...26f96df)
    
    Updates `github/codeql-action` from 3.22.12 to 3.23.2
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@012739e...b7bf0a3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: github-actions
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: github-actions
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and yuvraj-wale committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    3b28b03 View commit details
    Browse the repository at this point in the history