Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chris-santiago/bookmarks_clustering
Using text recognition and unsupervised learning to cluster web bookmarks
https://github.com/chris-santiago/bookmarks_clustering
Last synced: 10 days ago
JSON representation
Using text recognition and unsupervised learning to cluster web bookmarks
- Host: GitHub
- URL: https://github.com/chris-santiago/bookmarks_clustering
- Owner: chris-santiago
- Created: 2020-09-07T13:55:49.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-22T00:05:03.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T04:54:09.052Z (24 days ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 32.5 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Files
|Filename|Contents|Container|
|--------|--------|--------------|
|bookmarks.p|Pickled list of bookmark titles and URLs|Bookmark|
|bookmarks_data.json|List of bookmark titles, URLs and content|Dictionary|
|bookmarks_data.p|Pickled list of bookmark titles, URLs and content|Dictionary|
|bookmarks_df.p|Pickled dataframe of bookmark titles, URLs and content|DataFrame|
|websites.p|Pickled list of bookmark titles, URLs and content|Website|## Collections
```python
Bookmark = namedtuple('Bookmark', ['title', 'url'])
Website = namedtuple('Website', ['title', 'url', 'content'])
```