Jay Broughton

Kerassy
·

AI & ML interests

Building neural nets for NLP tasks, fine-tuning small language models

Recent Activity

updated a model about 23 hours ago
Kerassy/distilbert_base_tp_2025
updated a model 3 days ago
Kerassy/bert_base_tp_2004
updated a collection 4 days ago
Text2Text Datasets
View all activity

Organizations

None yet

Kerassy's activity

reacted to luigi12345's post with 🔥👍 about 1 month ago
view post
Post
3718
MinimalScrap
Only Free Dependencies. Save it.It is quite useful uh.


!pip install googlesearch-python requests
from googlesearch import search
import requests
query = "Glaucoma"
for url in search(f"{query} site:nih.gov filetype:pdf", 20):
    if url.endswith(".pdf"):
        with open(url.split("/")[-1], "wb") as f: f.write(requests.get(url).content)
        print("✅" + url.split("/")[-1])
print("Done!")