Oscar
Oscar I collect mechanical wristwatches and enjoy listening to jazz and techno music. As an Open Source enthusiast, I work on legal compliance issues.

Using Machine Learning for Open Source License Identification

Using Machine Learning for Open Source License Identification

A few days ago, I discussed with a few colleagues the different techniques for identifying Open Source Licenses using tools. While many approaches exist, most are based on regular expressions and similar methods. While using that technique is fast and straightforward, it involves a lot of maintenance due to the need to keep checking and adding new patterns to map new licenses or adjust for modified versions. A different technique used by the OSS project Askalono is using Sørensen–Dice scoring for matching text. Jacob, the author, implemented a fast and reliable method that led me to think that Askalono is the way to go. Still, I wonder if Machine Learning could also be used to identify licenses, thinking we could combine regular expressions, checksums and hashes, and machine learning in the future.

I had some time during the weekend. Since my coding skills are a little rusty, I jumped to use Python and a precooked library to implement license identification through vectorization and classification. Indeed, the result is not the best code or a product I’m proud of. Still, it was a fun journey that allowed me to explore using Python and ML for coding and ChatGPT as a debugging tool (instead of writing the code for me).

I called the final project OSLiLi, which stands for Open Source License Identification Library. I used Scikit-learn to implement a Multinomial Naive Bayes classifier trained (old school) with SPDX data to identify Open Source Licenses. I even implemented a CLI for the library. It works, but sometimes it needs a little nudge. Give it a try! You can find both projects on my GitHub account.

NOTICE

This tool does not provide legal advice; I’m not a lawyer.

The code is an experimental implementation to match your input to a database of similar license texts and tell you if it’s a close match. Refrain from relying on the accuracy of the output of this tool.

Remember: The tool can’t tell you if a license works for your project or use case. Please should seek independent legal advice for any licensing questions.

comments powered by Disqus