Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Co-Authored-By: Jonathan Mak <jmak@stanford.edu>
  • Loading branch information
epicfaace and jonathanjmak committed Jul 15, 2021
0 parents commit ca8f1a7
Show file tree
Hide file tree
Showing 118 changed files with 789,530 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
push:
branches: [ master ]
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- name: Lint with black
run: black --diff .
- name: Check for vulnerable packages
run: pip install safety && safety check
- name: Run PATS
run: python analyzer.py
working-directory: PATS
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
*.p
PaperScraper/bin
PaperScraper/include
PaperScraper/lib
.Rproj.user
.Rhistory
.RData
.Ruserdata
.httr-oauth
*.pyc
.vscode
.gitignore~
.DS_Store
**/.DS_Store
venv/
PaperScraper/AAAI/*
PaperScraper/*.p
R_Analysis/.RDataTmp
Dewey2/info.py
Dewey2/.ipynb_checkpoints/
Dewey2/output
269 changes: 269 additions & 0 deletions Data/AI_Conferences/AAAI/aaai2013.csv

Large diffs are not rendered by default.

466 changes: 466 additions & 0 deletions Data/AI_Conferences/AAAI/aaai2014.csv

Large diffs are not rendered by default.

665 changes: 665 additions & 0 deletions Data/AI_Conferences/AAAI/aaai2015.csv

Large diffs are not rendered by default.

689 changes: 689 additions & 0 deletions Data/AI_Conferences/AAAI/aaai2016.csv

Large diffs are not rendered by default.

780 changes: 780 additions & 0 deletions Data/AI_Conferences/AAAI/aaai2017.csv

Large diffs are not rendered by default.

Loading

0 comments on commit ca8f1a7

Please sign in to comment.