-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from fossology/deps/docusaurus/3.1
deps(docu): upgrade to docusaurus 3.1
- Loading branch information
Showing
17 changed files
with
3,490 additions
and
1,773 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,13 @@ jobs: | |
if: github.event_name != 'push' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: yarn | ||
- name: Test Build | ||
run: | | ||
if [ -e yarn.lock ]; then | ||
|
@@ -34,10 +37,13 @@ jobs: | |
if: github.event_name != 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: yarn | ||
- name: Build pages | ||
run: | | ||
# git config --global user.email "[email protected]" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,10 +34,10 @@ SPDX-FileCopyrightText: 2021 Kaushlendra Pratap <[email protected] | |
* Solution was: (c) --> has been changed to "copyright" string and then it was fed to the algorithm, [Date] check has been implemented inside all the checks which individually helps as a final check before calling it a hit. | ||
* CSV provided by Michael contained 13lakh+ datasets that were not ideal to traverse through all of it once (Jupyter server crashed after continuous 10 hours running). | ||
* Divided the datasets into chunks of 10,000 and will traverse through it and check the ideal results on all over it. | ||
* Performance score was calculated {hitscore/No.of copyrights in list}*100, which came out as **82.65%** | ||
* Performance score was calculated \{hitscore/No.of copyrights in list\}*100, which came out as **82.65%** | ||
* Wiki has been Updated | ||
|
||
|
||
### Conclusion and Further Plans | ||
|
||
Understanding the edge cases and calculating the accuracy score over True Positives. | ||
Understanding the edge cases and calculating the accuracy score over True Positives. |
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 |
---|---|---|
|
@@ -22,7 +22,8 @@ SPDX-FileCopyrightText: 2021 Shreya Singh <[email protected]> | |
|
||
## Discussions | ||
1. To handle Regex expansion - approaches were discussed. | ||
2. The First approach was to generate random characters generated from .{0,30}. This was discarded because it won't provide semantic meaning to generated texts. | ||
2. The First approach was to generate random characters generated from .\{0,30\}. This was discarded because it won't | ||
provide semantic meaning to generated texts. | ||
3. Second, to skip the character generation portion but it will hamper similarity matching algorithms based on distances. So it was also discarded. | ||
4. Third approach to generate meaningful sentences using python library and licenses vocabulary. | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ SPDX-FileCopyrightText: 2022 Krishna Mahato <[email protected]> | |
- Trying to re-use the methods that are already used in the static UI. | ||
- Testing the API via any API platform like **postman**. | ||
|
||
### PR Link : [feat(api): Added users/{id} PUT route to modify user details #2262](https://github.com/fossology/fossology/pull/2262) | ||
### PR Link : [feat(api): Added users/\{id\} PUT route to modify user details #2262](https://github.com/fossology/fossology/pull/2262) | ||
|
||
## Testing the PR | ||
|
||
|
@@ -54,7 +54,7 @@ SPDX-FileCopyrightText: 2022 Krishna Mahato <[email protected]> | |
- Trying to re-use the methods that are already used in the static UI from the `user_edit` plugin. | ||
- Testing the API via any API platform like **postman**. | ||
|
||
### PR Link : [feat(api): added /users/tokens POST Route and /users/tokens/{type} GET Route #2266](https://github.com/fossology/fossology/pull/2266) | ||
### PR Link : [feat(api): added /users/tokens POST Route and /users/tokens/\{type\} GET Route #2266](https://github.com/fossology/fossology/pull/2266) | ||
|
||
## Testing the PR | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,10 +33,10 @@ SPDX-FileCopyrightText: 2023 Abdelrahman Jamal <[email protected]> | |
* Below are some detection results using the dataset from the feature extraction paper to test on unseen examples (detected entities are highlighted): | ||
1. Copyright (C) 2017 `DENX Software Engineering` | ||
2. Copyright (C) `IBM Corporation` 2016 | ||
3. Copyright (c) 2000-2005 `Vojtech Pavlik` <[email protected]> | ||
3. Copyright (c) 2000-2005 `Vojtech Pavlik` \<[email protected]\> | ||
4. Copyright (c) 2009, `Microsoft Corporation`. | ||
5. Copyright (C) ST-Ericsson 2010 - 2013 (Entity missed) | ||
6. Copyright (c) 2012 `Steffen Trumtrar` <[email protected]>, `Pengutronix` | ||
6. Copyright (c) 2012 `Steffen Trumtrar` \<[email protected]\>, `Pengutronix` | ||
7. Copyright 2008 `GE Intelligent Platforms Embedded Systems`, Inc. | ||
* The model detected the majority of entities, missing less than 5%. | ||
* Adopted semi-supervised training by using the preceding model to label the entire dataset and trained on it. This refined model, now in use, missed under 1% of the copyright holder entities in the same test set. | ||
|
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 |
---|---|---|
|
@@ -34,13 +34,17 @@ SPDX-FileCopyrightText: 2023 Abdelrahman Jamal <[email protected]> | |
2. `Copyright 2019 Ansible Project GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)` | ||
3. `(c) 2014, James Tanner <[email protected]>` | ||
4. `(c) 2017 Ansible Project GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import (absolute_import, division, print_function) metaclass__` = type | ||
5. `(c) 2013, bleader Written by bleader <[email protected]> Based on` pkgin module written by Shaun Zinck that was based on pacman module written by Afterburn <https://github.com/afterburn> that was based on apt module written by Matthew Williams <matthew@flowrout> | ||
5. `(c) 2013, bleader Written by bleader <[email protected]> Based on` pkgin module written by Shaun Zinck | ||
that was based on pacman module written by Afterburn <https://github.com/afterburn> that was based on apt | ||
module written by Matthew Williams \<matthew@flowrout\> | ||
- **Cassandra**: Again, the model demonstrated varied performance. While it succeeded in some instances, it missed out on others, particularly the ones with repeated patterns: | ||
1. `(c) 2005, 2014 jQuery Foundation, Inc.` | jquery.org/license */ | ||
2. `(c) Steven Levithan <stevenlevithan.com>` MIT License | ||
3. `Copyright 2005-2008 The Android Open Source Project This product includes software developed as part of The Android Open Source Project` (http://source.android.com). | ||
4. `Copyright © 2020 Jeff Carpenter, Eben Hewitt.` All rights reserved. Used with permission._ | ||
5. `Copyright &copy; 2009- The Apache Software Foundation` " useexternalfile="yes" encoding="UTF-8" failonerror="false" maxmemory="256m" additionalparam="${jdk11plus-javadoc-exports}"> filesets/> javadoc> fail message="javadoc failed"> condition> | ||
5. `Copyright &copy; 2009- The Apache Software Foundation` " useexternalfile="yes" encoding="UTF-8" | ||
failonerror="false" maxmemory="256m" additionalparam="$\{jdk11plus-javadoc-exports\}"> filesets/> javadoc> | ||
fail message="javadoc failed"> condition> | ||
6. `© 2018 DataStax", "", "\n", "\0", "\0\0", "\001", "0", "0\0", "00", "1") forEach(stringConsumer)` | ||
7. `copyright to Philip Koopman` , which he licenses under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0) | ||
8. `Copyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQ ÌXYZ XYZ o¢8õXYZ b·ÚXYZ $ ¶ÏdescIEC http://www.iec.chIEC` | ||
|
@@ -61,4 +65,4 @@ SPDX-FileCopyrightText: 2023 Abdelrahman Jamal <[email protected]> | |
|
||
### 2. Documentation | ||
- Work on finilzating the weekly documentation as GSoC is coming to an end. | ||
- Start working on the GSoC final report. | ||
- Start working on the GSoC final report. |
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.