18 | {% include sidebar.html %}
19 |
20 |
21 | {% if page.title %}{% endif %}
22 |
23 |
26 |
27 |
28 |
29 |
30 | {% include scripts.html %}
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/_sass/vendor/breakpoint/parsers/_triple.scss:
--------------------------------------------------------------------------------
1 | //////////////////////////////
2 | // Import Pieces
3 | //////////////////////////////
4 | @import "triple/default";
5 |
6 | @function breakpoint-parse-triple($feature, $empty-media, $first) {
7 | $parsed: '';
8 | $leader: '';
9 |
10 | // If we're forcing
11 | @if not ($empty-media) or not ($first) {
12 | $leader: 'and ';
13 | }
14 |
15 | // separate the string features from the value numbers
16 | $string: null;
17 | $numbers: null;
18 | @each $val in $feature {
19 | @if type-of($val) == string {
20 | $string: $val;
21 | }
22 | @else {
23 | @if type-of($numbers) == 'null' {
24 | $numbers: $val;
25 | }
26 | @else {
27 | $numbers: append($numbers, $val);
28 | }
29 | }
30 | }
31 |
32 | $parsed: breakpoint-parse-triple-default($string, nth($numbers, 1), nth($numbers, 2));
33 |
34 | @return $leader + $parsed;
35 |
36 | }
37 |
--------------------------------------------------------------------------------
/.github/workflows/google_scholar_crawler.yaml:
--------------------------------------------------------------------------------
1 | name: Get Citation Data
2 |
3 | on:
4 | page_build:
5 | schedule:
6 | - cron: '0 8 * * *'
7 |
8 | jobs:
9 | build:
10 | runs-on: ubuntu-latest
11 | steps:
12 | - uses: actions/checkout@v2
13 | - name: Install Reqs
14 | run: |
15 | sudo apt-get install python3-setuptools
16 | - name: Run
17 | run: |
18 | cd ./google_scholar_crawler
19 | pip3 install -r requirements.txt
20 | python3 main.py
21 | cd ./results
22 | git init
23 | git config --local user.name "${GITHUB_ACTOR}"
24 | export remote_repo="https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git"
25 | git add *.json
26 | git commit -m "Updated Citation Data"
27 | git push "${remote_repo}" HEAD:google-scholar-stats --force
28 | env:
29 | GOOGLE_SCHOLAR_ID: ${{ secrets.GOOGLE_SCHOLAR_ID }}
--------------------------------------------------------------------------------
/_sass/vendor/breakpoint/parsers/_resolution.scss:
--------------------------------------------------------------------------------
1 | @import "resolution/resolution";
2 |
3 | @function breakpoint-build-resolution($query-print, $query-resolution, $empty-media, $first) {
4 | $leader: '';
5 | // If we're forcing
6 | @if not ($empty-media) or not ($first) {
7 | $leader: 'and ';
8 | }
9 |
10 | @if breakpoint-get('transform resolutions') and $query-resolution {
11 | $resolutions: breakpoint-make-resolutions($query-resolution);
12 | $length: length($resolutions);
13 | $query-holder: '';
14 |
15 | @for $i from 1 through $length {
16 | $query: '#{$query-print} #{$leader}#{nth($resolutions, $i)}';
17 | @if $i == 1 {
18 | $query-holder: $query;
19 | }
20 | @else {
21 | $query-holder: '#{$query-holder}, #{$query}';
22 | }
23 | }
24 |
25 | @return $query-holder;
26 | }
27 | @else {
28 | // Return with attached resolution
29 | @return $query-print;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/_sass/_tables.scss:
--------------------------------------------------------------------------------
1 | /* ==========================================================================
2 | TABLES
3 | ========================================================================== */
4 |
5 | table {
6 | margin-bottom: 1em;
7 | width: 100%;
8 | font-family: $global-font-family;
9 | font-size: $type-size-6;
10 | border-collapse: collapse;
11 | // border: 1px solid $light-gray;
12 |
13 | & + table {
14 | margin-top: 1em;
15 | }
16 | }
17 |
18 | thead {
19 | background-color: $lighter-gray;
20 | // border-bottom: 1px solid $light-gray;
21 | }
22 |
23 | th {
24 | padding: 0.5em;
25 | font-weight: bold;
26 | text-align: left;
27 | // border-right: 1px solid $light-gray;
28 | }
29 | tr {
30 | padding-bottom: .5em;
31 | padding-top: .5em;
32 | }
33 | td {
34 | padding: .5em;
35 | border-bottom: 1px solid $light-gray;
36 | // border-right: 1px solid $light-gray;
37 | }
38 |
39 | tr, td, th {
40 | vertical-align: middle;
41 | }
--------------------------------------------------------------------------------
/MIA-DPO/README.md:
--------------------------------------------------------------------------------
1 | # note
2 |
3 | This is the repository that contains source code for the [Alpha clip](https://github.com/SunzeY/AlphaCLIP).
4 |
5 | If you find Alpha cli useful for your work please cite:
6 | ```
7 | @misc{sun2023alphaclip,
8 | title={Alpha-CLIP: A CLIP Model Focusing on Wherever You Want},
9 | author={Zeyi Sun and Ye Fang and Tong Wu and Pan Zhang and Yuhang Zang and Shu Kong and Yuanjun Xiong and Dahua Lin and Jiaqi Wang},
10 | year={2023},
11 | eprint={2312.03818},
12 | archivePrefix={arXiv},
13 | primaryClass={cs.CV}
14 | }
15 | ```
16 |
17 | # Website License
18 |