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

[Bot] Update inference types #2688

Merged
merged 21 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
15d8612
Update inference types (automated commit)
Wauplin Nov 19, 2024
bad1919
Merge branch 'main' into update-inference-types-automated-pr
hanouticelina Nov 20, 2024
b9b3421
fix quality after merging main
hanouticelina Nov 20, 2024
b66ba40
another fix
hanouticelina Nov 20, 2024
690decf
fix tests
hanouticelina Nov 20, 2024
05df70f
Update inference types (automated commit)
Wauplin Nov 21, 2024
d274efb
Merge branch 'update-inference-types-automated-pr' of github.com:hugg…
hanouticelina Nov 21, 2024
a6e1cd2
Update inference types (automated commit)
Wauplin Nov 22, 2024
33840be
Merge branch 'main' into update-inference-types-automated-pr
hanouticelina Nov 22, 2024
817dafb
Merge branch 'update-inference-types-automated-pr' of github.com:hugg…
hanouticelina Nov 22, 2024
c63d566
fix quality
hanouticelina Nov 22, 2024
911c175
Update inference types (automated commit)
Wauplin Nov 24, 2024
69f20bc
Merge branch 'update-inference-types-automated-pr' of github.com:hugg…
hanouticelina Nov 24, 2024
08d3f65
Update inference types (automated commit)
Wauplin Nov 28, 2024
4dc3c30
Merge branch 'main' into update-inference-types-automated-pr
hanouticelina Nov 28, 2024
6aa17d6
Merge branch 'update-inference-types-automated-pr' of github.com:hugg…
hanouticelina Nov 28, 2024
5a0772e
Update inference types (automated commit)
Wauplin Dec 3, 2024
295f1f5
Merge branch 'update-inference-types-automated-pr' of github.com:hugg…
hanouticelina Dec 3, 2024
675a6ca
fix client
hanouticelina Dec 3, 2024
8834ad4
activate automatic update for table-question-answering
hanouticelina Dec 3, 2024
0d8b5f9
fix
hanouticelina Dec 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix quality
  • Loading branch information
hanouticelina committed Nov 22, 2024
commit c63d5661080c2f7168d368c906c26f06003c54e2
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,7 @@

@dataclass
class ZeroShotClassificationParameters(BaseInferenceType):
<<<<<<< HEAD
"""Additional inference parameters
Additional inference parameters for Zero Shot Classification
"""
=======
"""Additional inference parameters for Zero Shot Classification"""
>>>>>>> 33840bea5991137603af9cfc6e142af5770a2ed7

candidate_labels: List[str]
"""The set of possible class labels to classify the text into."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ class ZeroShotImageClassificationInput(BaseInferenceType):
inputs: str
"""The input image data to classify as a base64-encoded string."""
parameters: ZeroShotImageClassificationParameters
<<<<<<< HEAD
"""Additional inference parameters"""
=======
"""Additional inference parameters for Zero Shot Image Classification"""
>>>>>>> 33840bea5991137603af9cfc6e142af5770a2ed7


@dataclass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ class ZeroShotObjectDetectionInput(BaseInferenceType):
inputs: str
"""The input image data as a base64-encoded string."""
parameters: ZeroShotObjectDetectionParameters
<<<<<<< HEAD
"""Additional inference parameters"""
=======
"""Additional inference parameters for Zero Shot Object Detection"""
>>>>>>> 33840bea5991137603af9cfc6e142af5770a2ed7


@dataclass
Expand Down
Loading