-
Notifications
You must be signed in to change notification settings - Fork 399
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
[FEATURE-BRANCH] Argilla direct import from Hub #5572
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
2a98e73
feat: change dataset publish validation from at least one required fi…
jfcalvo 1427abb
chore: Update CHANGELOG.md
jfcalvo c25c88c
[Refactor] Remove settings name pattern restrictions (#5573)
frascuchon 6cc4d07
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon 16cbc35
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] ce59adc
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon 6240d4f
chore: Fix tests after merge
frascuchon 2ecca9d
feat: Add `metadata` support for datasets (#5586)
jfcalvo c9de8c3
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon ac29661
Merge branch 'develop' into feat/argilla-direct-feature-branch
jfcalvo 8e85f50
feat: add server dataset hub import (#5591)
jfcalvo bc720c2
Update .github/workflows/argilla.yml
frascuchon d375c4b
feat: fix importing datasets features mapped as chat fields (#5611)
jfcalvo 098d36b
feat: add support to use datasets using features with sequences of cl…
jfcalvo c916930
feat: add dataset split to be used along with row idx when `external_…
jfcalvo 9b8e0ad
[REFACTOR] argilla: using split and row idx for default external (#5617)
frascuchon 1eae163
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon eee62bb
fix: add missing image type check
jfcalvo a6535eb
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon 7b85b45
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon 3fbbc6e
[BUGFIX] argilla: support multi label values (#5625)
frascuchon c4afae1
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon adf929b
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon 1486488
refactor: `Dataset.from_hub` with `settings='ui'` (#5622)
frascuchon 06f4aaa
feat: add new validation to avoid creating records with empty fields …
jfcalvo 1bbb9d1
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon f42351c
♟️ Create dataset from UI (#5532)
damianpumar b2a1590
Merge branch 'develop' into feat/argilla-direct-feature-branch
frascuchon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'assign': { | ||
width: 10, | ||
height: 10, | ||
viewBox: '0 0 10 10', | ||
data: '<path pid="0" d="M1.625 2.75c.416 0 .78-.226.974-.563h3.526a1.125 1.125 0 010 2.25h-2.25a2.25 2.25 0 000 4.5h3.526a1.125 1.125 0 100-1.124H3.875a1.125 1.125 0 010-2.25h2.25a2.25 2.25 0 000-4.5H2.599a1.125 1.125 0 10-.974 1.687z"/>' | ||
} | ||
}) |
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,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'import': { | ||
width: 29, | ||
height: 31, | ||
viewBox: '0 0 29 31', | ||
data: '<path pid="0" d="M3.446 12.957v15.014h22.216V12.957h-6.348V9.955h9.521v21.019H.272V9.954h9.521v3.003H3.446z" _fill="#000" fill-opacity=".87"/><path pid="1" d="M16.14.974h-3.173V19.07l-4.024-3.807L6.7 17.386l7.855 7.431 7.854-7.431-2.244-2.123-4.023 3.807V.974z" _fill="#000" fill-opacity=".87"/>' | ||
} | ||
}) |
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,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'plus': { | ||
width: 16, | ||
height: 16, | ||
viewBox: '0 0 16 16', | ||
data: '<path pid="0" d="M8 2a.75.75 0 00-.75.75v4.5h-4.5a.75.75 0 000 1.5h4.5v4.5a.75.75 0 001.5 0v-4.5h4.5a.75.75 0 000-1.5h-4.5v-4.5A.75.75 0 008 2z" _fill="#000" fill-opacity=".87"/>' | ||
} | ||
}) |
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,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'question-answering': { | ||
width: 15, | ||
height: 15, | ||
viewBox: '0 0 15 15', | ||
data: '<path pid="0" d="M1.299 4.628h3.937V1.565H1.3v3.063zm.875-2.188H4.36v1.313H2.174V2.44zM1.299 9.003h3.937V5.94H1.3v3.063zm.875-2.188H4.36v1.313H2.174V6.815zM1.299 13.378h3.937v-3.063H1.3v3.063zm.875-2.188H4.36v1.313H2.174V11.19zM12.236 4.628H8.3l1.492-1.57-.617-.618-2.625 2.625L9.174 7.69l.617-.616-1.492-1.571h3.937a.438.438 0 01.438.437v5.25a.438.438 0 01-.438.438h-5.25v.875h5.25a1.313 1.313 0 001.313-1.313V5.94a1.313 1.313 0 00-1.313-1.312z" _fill="#3B82F6"/>' | ||
} | ||
}) |
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,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'rows': { | ||
width: 10, | ||
height: 8, | ||
viewBox: '0 0 10 8', | ||
data: '<path pid="0" fill-rule="evenodd" clip-rule="evenodd" d="M8.68.7H1a.3.3 0 00-.3.3v1.421h8.28V1a.3.3 0 00-.3-.3zM.7 4.879V3.12h8.28v1.76L.7 4.879zm0 .7V7a.3.3 0 00.3.3h7.68a.3.3 0 00.3-.3V5.579H.7zM1 0a1 1 0 00-1 1v6a1 1 0 001 1h7.68a1 1 0 001-1V1a1 1 0 00-1-1H1z" _fill="#000" fill-opacity=".54"/>' | ||
} | ||
}) |
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,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'text-classification': { | ||
width: 15, | ||
height: 15, | ||
viewBox: '0 0 15 15', | ||
data: '<path pid="0" d="M4.439 10.315a.875.875 0 100-1.75.875.875 0 000 1.75zM4.439 13.815a.875.875 0 100-1.75.875.875 0 000 1.75zM4.439 7.69a.875.875 0 100-1.75.875.875 0 000 1.75zM12.314 3.315a.875.875 0 100-1.75.875.875 0 000 1.75zM9.689 4.19a.875.875 0 100-1.75.875.875 0 000 1.75zM12.314 5.94a.875.875 0 100-1.75.875.875 0 000 1.75zM8.814 6.815a.875.875 0 100-1.75.875.875 0 000 1.75zM12.314 11.19a.875.875 0 100-1.75.875.875 0 000 1.75zM11.439 13.815a.875.875 0 100-1.75.875.875 0 000 1.75zM8.814 12.94a.875.875 0 100-1.75.875.875 0 000 1.75zM9.689 10.315a.875.875 0 100-1.75.875.875 0 000 1.75zM7.064 3.315a.875.875 0 100-1.75.875.875 0 000 1.75zM1.814 12.065a.875.875 0 100-1.75.875.875 0 000 1.75zM1.814 8.565a.875.875 0 100-1.75.875.875 0 000 1.75z" _fill="#F97316"/>' | ||
} | ||
}) |
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,27 @@ | ||
/* | ||
* coding=utf-8 | ||
* Copyright 2021-present, the Recognai S.L. team. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* eslint-disable */ | ||
var icon = require('vue-svgicon') | ||
icon.register({ | ||
'text-to-image': { | ||
width: 15, | ||
height: 15, | ||
viewBox: '0 0 15 15', | ||
data: '<path pid="0" d="M12.986 6.71l-1.442-1.442a.694.694 0 00-.98 0l-6.125 6.127v2.42h2.42l6.127-6.125a.694.694 0 000-.98zm-6.489 6.23H5.314v-1.182l4.13-4.131 1.183 1.183-4.13 4.13zm4.75-4.749l-1.184-1.183.992-.991L12.238 7.2l-.992.991zM4.876 8.128h.875V5.065h1.313V4.19h-3.5v.875h1.312v3.063z" _fill="#F59E0B"/><path pid="1" d="M3.564 9.44h-1.75v-7h7v1.75h.875V2.44a.875.875 0 00-.875-.875h-7a.875.875 0 00-.875.875v7a.875.875 0 00.875.875h1.75V9.44z" _fill="#F59E0B"/>' | ||
} | ||
}) |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Apply this change before merge the PR.