Skip to content

Instantly share code, notes, and snippets.

@neoyipeng2018
neoyipeng2018 / SGX-Crawler
Last active June 29, 2024 14:08
Quick code to scrape files from websites: SGX Company Announcements
from selenium import webdriver
#Let's say you are trying to get all announcement pdfs for Jardine Matheson Holdings: https://www.sgx.com/securities/company-announcements?value=JARDINE%20MATHESON%20HLDGS%20LTD&type=company
url="https://www.sgx.com/securities/company-announcements?value=JARDINE%20MATHESON%20HLDGS%20LTD&type=company"
driver = webdriver.Firefox()
driver.get(url)
#pause for a while to let the site load and also to avoid the website from detecting us
import time
time.sleep(5)
@neoyipeng2018
neoyipeng2018 / magnitudephrasebank.ipynb
Last active March 21, 2021 21:28
Using Embeddings for Financial Sentiment Classification
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / howdotokenizersviewnumbers.ipynb
Last active September 6, 2020 02:41
HowDoTokenizersViewNumbers.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / howdotokenizersviewemojis.ipynb
Last active September 20, 2020 09:30
HowDoTokenizersViewEmojis.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / finetuningwithtrainer.ipynb
Last active September 6, 2020 01:31
FineTuningWith 🤗 Trainer.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / understandinglayerandbatchnorm.ipynb
Last active October 25, 2020 03:57
UnderstandingLayerAndBatchNorm.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / randomwalkarcsine.ipynb
Last active November 7, 2020 06:45
RandomWalkArcSine
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / randomwalklongrun.ipynb
Last active November 9, 2020 14:29
RandomWalkLongRun
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neoyipeng2018
neoyipeng2018 / generatenews.ipynb
Last active July 11, 2021 07:45
GenerateNews.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.