yzhangcs.github.io
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Unable to calculate vocabulary similarity
Last synced: 9 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: yzhangcs
- License: mit
- Language: TeX
- Default Branch: main
- Homepage: https://yzhang.site
- Size: 7.8 MB
Statistics
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
- Releases: 0
Created about 6 years ago
· Last pushed 11 months ago
Metadata Files
License
Citation
Security
Owner
- Name: Yu Zhang
- Login: yzhangcs
- Kind: user
- Location: Suzhou, China
- Company: Soochow University
- Website: https://yzhang.site
- Repositories: 6
- Profile: https://github.com/yzhangcs
PhD student @SUDA-LA; NLP/CL/ML.
Citation (citation.py)
# -*- coding: utf-8 -*-
import re
from semanticscholar import SemanticScholar
sch = SemanticScholar()
me = sch.get_author(49890808)
lines = []
with open('index.md', 'r') as file:
lines = file.readlines()
for i, line in enumerate(lines):
if line.startswith('[![citation]'):
paper_id = re.search(r'/([a-f0-9]{40})', line.strip()).group(1)
for paper in me.papers:
if paper.paperId == paper_id:
lines[i] = re.sub(r'(citation-)\d+', f'citation-{paper.citationCount}', line)
with open('index.md', 'w') as file:
file.writelines(lines)
GitHub Events
Total
- Delete event: 2
- Push event: 16
- Pull request event: 3
- Create event: 3
Last Year
- Delete event: 2
- Push event: 16
- Pull request event: 3
- Create event: 3
Dependencies
.github/workflows/arxiv.yml
actions
- actions/checkout v3 composite
- actions/configure-pages v2 composite
- actions/deploy-pages v1 composite
- actions/setup-python v4 composite
- actions/upload-pages-artifact v1 composite
- ruby/setup-ruby v1 composite
Gemfile
rubygems
- jekyll-analytics >= 0 development
- jekyll-feed ~> 0.12 development
- jekyll-last-modified-at >= 0 development
- jekyll-spaceship >= 0 development
- http_parser.rb ~> 0.6.0
- jekyll ~> 4.2.2
- jekyll-remote-theme >= 0
- minima ~> 2.5
- tzinfo ~> 1.2
- tzinfo-data >= 0
- wdm ~> 0.1.1
- webrick ~> 1.7
Gemfile.lock
rubygems
- addressable 2.8.1
- bundler 2.3.23
- colorator 1.1.0
- concurrent-ruby 1.1.10
- em-websocket 0.5.3
- eventmachine 1.2.7
- ffi 1.15.5
- forwardable-extended 2.6.0
- gemoji 3.0.1
- http_parser.rb 0.8.0
- i18n 1.12.0
- jekyll 4.2.2
- jekyll-analytics 0.1.14
- jekyll-feed 0.16.0
- jekyll-last-modified-at 1.3.0
- jekyll-remote-theme 0.4.3
- jekyll-sass-converter 2.2.0
- jekyll-seo-tag 2.8.0
- jekyll-spaceship 0.10.2
- jekyll-watch 2.2.1
- kramdown 2.4.0
- kramdown-parser-gfm 1.1.0
- liquid 4.0.3
- listen 3.7.1
- mercenary 0.4.0
- minima 2.5.1
- nokogiri 1.13.10
- pathutil 0.16.2
- posix-spawn 0.3.15
- public_suffix 5.0.0
- racc 1.6.1
- rainbow 3.1.1
- rb-fsevent 0.11.2
- rb-inotify 0.10.1
- rexml 3.2.5
- rouge 3.30.0
- rubyzip 2.3.2
- safe_yaml 1.0.5
- sassc 2.4.0
- terminal-table 2.0.0
- unicode-display_width 1.8.0
- webrick 1.7.0