Skip to content

Instantly share code, notes, and snippets.

View shawonis08's full-sized avatar
🏠
Working from home

Shahidul Islam shawonis08

🏠
Working from home
View GitHub Profile
@shawonis08
shawonis08 / LinuxCUDAtoolkits.md
Last active January 12, 2022 12:28 — forked from khansun/LinuxCUDAtoolkits.md
Multiple versions of CUDA toolkit and CUDNN installation guide for Linux

Remove previous NVIDIA drivers if needed:

sudo dpkg -P $(dpkg -l | grep nvidia-driver | awk '{print $2}')

sudo apt autoremove

sudo lshw -C display

NVIDIA Apmere cards including 3070, 3080 and 3090 dos not work with CUDA 10.
@shawonis08
shawonis08 / convert_dataturks_to_spacy.py
Last active May 13, 2020 05:36 — forked from brykneval/convert_dataturks_to_spacy.py
Creates NER training data in Spacy format from JSON downloaded from Dataturks.
############################################ NOTE ########################################################
#
# Creates NER training data in Spacy format from JSON downloaded from Dataturks.
#
# Outputs the Spacy training data which can be used for Spacy training.
#
############################################################################################################
def convert_dataturks_to_spacy(dataturks_JSON_FilePath):
try:
training_data = []