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

Multi text img columns #215

Merged
merged 24 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
97f54c1
Started adding the functionality of using multiple text and image col…
jrzaurin May 13, 2024
a88225a
Added the multi-text, image column to the load from folder module. Ne…
jrzaurin May 14, 2024
87ca64e
Two first tests passing for multi text and image columns. Many more t…
jrzaurin May 15, 2024
d2ee96f
First tests passing for multi text and image columns. Now I need to t…
jrzaurin May 15, 2024
3347e18
First tests passing for multi text and image columns. Now I need to t…
jrzaurin May 15, 2024
3b6f1ed
Added tests to test the finetune functionality. Still, finetune gradu…
jrzaurin May 19, 2024
ca086fd
first part of the tests for multi text or image cols is done. Now loa…
jrzaurin May 22, 2024
c04cd59
test for multi text and image cols pass. Now let's code some text and…
jrzaurin May 22, 2024
849b5f8
tests passed. Refine/adjust docs and onto the multi target loss funct…
jrzaurin May 30, 2024
f3e1d8a
Adjusted the docs. All test passed. Look into multi target losses
jrzaurin May 30, 2024
d869073
Added losses for multi target problems. Tested one of the implementat…
jrzaurin Jun 1, 2024
caa411e
need to fix slicing for classification problems
jrzaurin Jun 1, 2024
1b19459
Need to test the assertion and ValueError errors. Write some examples…
jrzaurin Jun 2, 2024
2a78502
tested errors and added examples. Next is to review docs and run test…
jrzaurin Jun 3, 2024
9f52317
Added test of the whole process including the Trainer
jrzaurin Jun 7, 2024
5eb20a3
Docs reviewed. Ready to test in all platforms
jrzaurin Jun 7, 2024
76019d9
move all typing to formats consistent with versions prior to 3.10
jrzaurin Jun 8, 2024
60808f7
Fixed a bug related to the lds params as passed to the WideDeepDatase…
jrzaurin Jun 8, 2024
449c4c9
Fix bug related to device in the projection method of the fusion model
jrzaurin Jun 8, 2024
8e7fdd2
codecov/codecov-action back to v3 see if we can avoid token error
jrzaurin Jun 10, 2024
a08a3c0
codecov/codecov-action moved to v4 and added CODECOV_TOKEN
jrzaurin Jun 10, 2024
2586fb7
Bumped version to 1.6
jrzaurin Jun 13, 2024
65ed58f
re-written README
jrzaurin Jun 14, 2024
ae3b84f
Adjusted docs to be consistent with the README file
jrzaurin Jun 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,10 @@ jobs:
- name: Convert coverage
run: |
coverage combine coverage*/.coverage*
coverage report --fail-under=95
coverage report --fail-under=90
coverage xml
- name: upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Untitled*.ipynb
# data related dirs
tmp_data/
tmp_dir/
fake_data/
weights/
pretrained_weights/
model_weights/
Expand Down
Loading