Skip to content

Commit

Permalink
Merge pull request #131 from bebechien/restructure
Browse files Browse the repository at this point in the history
Restructure
  • Loading branch information
bebechien authored Feb 10, 2025
2 parents 387d448 + 4ef2d53 commit 1078787
Show file tree
Hide file tree
Showing 314 changed files with 4,657 additions and 4,096 deletions.
Binary file removed .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions .allstar/binary_artifacts.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ignore reason: gradele jar file is used to build example Android app
ignorePaths:
- Gemma/Gemma-on-Android/Android_App/gradle/wrapper/gradle-wrapper.jar
- PaliGemma/PaliGemma-on-Android/Android_App/PaliGemma/gradle/wrapper/gradle-wrapper.jar
- Demos/Gemma-on-Android/Android_App/gradle/wrapper/gradle-wrapper.jar
- Demos/PaliGemma-on-Android/Android_App/PaliGemma/gradle/wrapper/gradle-wrapper.jar
8 changes: 1 addition & 7 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
'status:awaiting review':
- '**/*'

'component:examples':
- examples/**/*

'component:quickstarts':
- quickstarts/**/*
- '**/*'
2 changes: 1 addition & 1 deletion .github/workflows/notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
# Only check notebooks modified in this pull request
readarray -t changed_notebooks < <(git diff --name-only main | grep '\.ipynb$' || true)
readarray -t changed_notebooks < <(git diff --name-only main --diff-filter="d" | grep '\.ipynb$' || true)
else
# Manual run, check everything
readarray -t changed_notebooks < <(find -name '*.ipynb')
Expand Down
16 changes: 16 additions & 0 deletions CodeGemma/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# CodeGemma

This folder is organized into several categories, each focusing on a specific aspect of working with CodeGemma models:

* [Inference](#inference): How to load and run CodeGemma for inference
* [Finetuning](#finetuning): Dive into finetuning CodeGemma models for specific tasks and domains

## Inference
| Notebook Name | Description |
| :--------------------------------------------------------------------------------------------- | ------------------------------------------------ |
| [[CodeGemma_1]Common_use_cases.ipynb]([CodeGemma_1]Common_use_cases.ipynb) | Illustrate some common use cases for CodeGemma . |

## Finetuning
| Notebook Name | Description |
| :--------------------------------------------------------------------------------------------- | ------------------------------------------------ |
| [[CodeGemma_1]Finetune_with_SQL.ipynb]([CodeGemma_1]Finetune_with_SQL.ipynb) | Fine-Tuning CodeGemma on the SQL Spider Dataset. |
Loading

0 comments on commit 1078787

Please sign in to comment.