Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View sajidrahman's full-sized avatar
🎯
Focusing

Sajid Rahman sajidrahman

🎯
Focusing
View GitHub Profile
@sajidrahman
sajidrahman / lda.R
Created October 30, 2016 08:26 — forked from abelsonlive/lda.R
topic modeling in R
# Brian Abelson @brianabelson
# Harmony Institute
# December 5, 2012
# lda is a wrapper for lda.collapsed.gibbs.sampler in the "lda" package
# it fits topic models using latent dirichlet allocation
# it provides arguments for cleaning the input text and tuning the parameters of the model
# it also returns alot of useful information about the topics/documents in a format that you can easily join back to your original data
# this allows you to easily model outcomes based on the distribution of topics within a collection of texts
@sajidrahman
sajidrahman / CSVReader.java
Created April 4, 2017 16:20
Read, cleanup, stem Stack Overflow posts from csv file
import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
@sajidrahman
sajidrahman / tomcat-guide.md
Last active October 17, 2018 15:06
How to access Tomcat Manager Web Interface

Tomcat users are defined in the file $TOMCAT_HOME/conf/tomcat-users.xml, by default, there is NO user, it means no one can access the Tomcat manager page.

To enable users to access the Tomcat manager page, add a user as the role manager-gui.

Step 0. Shutdown Tomcat if it is running. Stop Java process as well, just to be safe.

Step 1. Open tomcat-users.xml file, originally it should contain a commented out part for tomcat-users.

<tomcat-users>
@sajidrahman
sajidrahman / google-playstore-scraper.js
Created June 11, 2019 17:04
A sample code snippet to use google-play-scraper API with 'Promise' values.
/**
Author: Sajid
A sample code snippet to use google play scraper API
with Promise values.
Prerequisite: please install the following libraries first
before testing the code:
npm install franc
@sajidrahman
sajidrahman / gpt-2-wikitext-103.py
Created July 31, 2019 19:02 — forked from thomwolf/gpt-2-wikitext-103.py
A very small and self-contained gist to train a GPT-2 transformer model on wikitext-103
# Copyright (c) 2019-present, Thomas Wolf.
# All rights reserved. This source code is licensed under the MIT-style license.
""" A very small and self-contained gist to train a GPT-2 transformer model on wikitext-103 """
import os
from collections import namedtuple
from tqdm import tqdm
import torch
import torch.nn as nn
from torch.utils.data import DataLoader
from ignite.engine import Engine, Events