02_04_2019

This is an old revision of the document!


Database and Web

  • Created Student Application Portal, Slate GSU using the following:
    1. Frontend - REACT Framework
    2. Backend - Python, Flask
    3. Database - PostgreSQL

The Project can be found here : https://github.com/bhashithe/Project1//

=== Deep Learning ===
* Worked with shallow classifiers like KNN
* Implemented Loss functions for SVM, Softmax and Full Loss

SQL to create table users_info
DROP TABLE IF EXISTS users_info;

CREATE TABLE users_info(
userID BIGINT, userName TEXT, screenName TEXT, userLocation TEXT, url TEXT, description TEXT, translatorType TEXT, protected TEXT, verified TEXT, followersCount INTEGER, friendsCount INTEGER, listedCount INTEGER, favouritesCount INTEGER, statusesCount INTEGER, userCreated VARCHAR(50), utcOffset TEXT, userTimeZone VARCHAR(50), geoEnabled TEXT, lang TEXT, contributorsEnabled TEXT, isTranslator TEXT, profileBackgroundColor TEXT, profileBackgroundImageURL TEXT, profileBackgroundTile TEXT, profileLinkColor TEXT, profileSidebarBorderColor TEXT, profileSidebarFillColor TEXT, profileTextColor TEXT, profileUseBackgroundImage TEXT, profileImageURL TEXT, defaultProfile TEXT, defaultProfileImage TEXT, userFollowing TEXT, followRequestSent TEXT, notifications TEXT );
psql cynthiak
\copy users_info FROM '/home/cynthiak/users_tab_to_semi.txt' WITH DELIMITER ';'

SQL to create table entities_info
DROP TABLE IF EXISTS entities_info;

CREATE TABLE entities_info(
hashtags TEXT, entitiesURL TEXT, userMentionsID1 BIGINT, userMentionsID2 BIGINT, symbols TEXT, entitiesMediaID BIGINT, entitiesMediaIndices TEXT, entitiesMediaURL TEXT, entitiesType TEXT, entitiesSizeSmall TEXT, entitiesSizeMedium TEXT, entitiesSizeThumb TEXT, entitiesSizeLarge TEXT, extendedEntitiesMediaID BIGINT, extendedEntitiesMediaIndices TEXT, extendedEntitiesMediaURL TEXT, extendedDisplayURL TEXT, extendedExpandedURL TEXT, extendedEntitiesType TEXT, extendedSizeSmall TEXT, extendedSizeMedium TEXT, extendedSizeThumb TEXT, extendedSizeLarge TEXT );
psql cynthiak
\copy entities_info FROM '/home/cynthiak/entities_table.txt' WITH DELIMITER ';'

  • 02_04_2019.1549339764.txt.gz
  • Last modified: 2019/02/04 23:09
  • by cynthia.kahn