-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1b1b82f
Showing
73 changed files
with
19,633 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.vscode | ||
.DS_Store | ||
|
||
# Jekyll stuff. | ||
_site | ||
.jekyll-cache | ||
.jekyll-metadata | ||
.sass-cache | ||
|
||
Gemfile.lock | ||
|
||
# React stuff. | ||
explore-app/build | ||
explore-app/node_modules | ||
explore-app/static | ||
explore-app/yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cocorem.xyz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
#gem "github-pages" | ||
gem "jekyll" | ||
gem 'kramdown-parser-gfm' | ||
gem 'webrick' | ||
|
||
# gem "rails" | ||
group :jekyll_plugins do | ||
gem 'jekyll-sitemap' | ||
gem 'jekyll-feed' | ||
gem 'jekyll-seo-tag' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Website for COCO ReM dataset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
title: "COCO-ReM" | ||
subtitle: "Benchmarking Detectors with COCO: A New Path Forward" | ||
url: "https://cocorem.xyz" | ||
|
||
# Build settings | ||
include: ["_pages"] | ||
plugins_dir: | ||
- jekyll-sitemap | ||
|
||
sass: | ||
style: "compressed" | ||
sass_dir: "static/css" | ||
|
||
# Conversion | ||
markdown: kramdown | ||
highlighter: rouge | ||
|
||
# Markdown Processors | ||
kramdown: | ||
input: GFM | ||
auto_ids: true | ||
syntax_highlighter: rouge | ||
|
||
exclude: | ||
- explore-app | ||
- vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- name: COCO-ReM | ||
link: / | ||
- name: Explore | ||
link: /_pages/explore.html | ||
- name: Download | ||
link: /_pages/download.html | ||
# - name: About | ||
# link: /about.html | ||
- name: Paper | ||
link: /paper.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
|
||
<meta name="keywords" content="cocorem, coco, artificial intelligence, computer vision, object detection, segmentation, deep learning"> | ||
<link rel="shortcut icon" href="{{ site.url }}/static/img/paper/teaser.jpg"> | ||
|
||
<!-- fall back to site title if page has no title --> | ||
<title> | ||
{%if page.title %} | ||
{{ page.title }} | ||
{% else %} | ||
{{ site.title }} | ||
{% endif %} | ||
</title> | ||
<meta itemprop="description" name="description" content="{% if page.description %}{{ page.description | truncate: 160 }}{% else %}{{ site.description | truncate: 160 }}{% endif %}" /> | ||
<link rel="canonical" href="{{ page.url | prepend: site.url }}"> | ||
|
||
<!-- Favicon --> | ||
<link rel="shortcut icon" href="/static/ico/favicon.ico" type="image/x-icon" /> | ||
<link rel="apple-touch-icon" href="/static/ico/apple-touch-icon.png" /> | ||
<link rel="apple-touch-icon" sizes="72x72" href="/static/ico/apple-touch-icon-72x72.png" /> | ||
<link rel="apple-touch-icon" sizes="120x120" href="/static/ico/apple-touch-icon-120x120.png" /> | ||
<link rel="apple-touch-icon" sizes="144x144" href="/static/ico/apple-touch-icon-144x144.png" /> | ||
<link rel="apple-touch-icon" sizes="152x152" href="/static/ico/apple-touch-icon-152x152.png" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/static/ico/apple-touch-icon-180x180.png" /> | ||
|
||
<!--Open Graph Related Stuff--> | ||
<meta property="og:locale" content="en_US"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:title" content="{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> | ||
<meta property="og:url" content="{{ site.url }}{{ page.url }}"> | ||
<meta property="og:site_name" content="{{ site.title }}"> | ||
<meta property="og:image" content="/static/twitter_card.jpeg"/> | ||
<meta property="og:image:url" content="/static/twitter_card.jpeg"/> | ||
<meta property="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> | ||
|
||
<!--Twitter Card Stuff--> | ||
<!--Twitter Card Stuff--> | ||
<meta name="twitter:card" content="summary_large_image"/> | ||
<meta name="twitter:title" content="{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> | ||
<meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> | ||
<meta name="twitter:creator" content="@kdexd"> | ||
<meta name="twitter:image" content="{{site.url}}/static/twitter_card.jpeg"/> | ||
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}"/> | ||
<meta name="twitter:domain" value="{{site.url}}"> | ||
|
||
<!-- CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet" type="text/css"> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css"> | ||
|
||
<!-- <link rel="stylesheet" type="text/css" href="/static/css/main.css"> --> | ||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<link rel="stylesheet" type="text/css" href="/static/css/navbar.css"> | ||
<nav id="navbar"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12 col-sm-12 col-xs-12 col-12"> | ||
<div id="site-title-container"> | ||
<span id="site-title"><a href="/">COCO-ReM</a></span> | ||
</div> | ||
<div class="navbar-ul-container" style="margin-top: 5px"> | ||
|
||
<ul class="navbar-ul float-right"> | ||
{% for item in site.data.navigation %} {% if forloop.index > 1 %} | ||
<li class="nav-listitem"> | ||
<a href="{{ site.baseurl }}{{ item.link }}">{{ item.name }}</a> | ||
</li> | ||
{% endif %} {% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
{% include navigation.html %} | ||
|
||
<main> | ||
{{ content }} | ||
</main> | ||
|
||
<footer> | ||
<div class="footer-content"> | ||
<p class="footer-text">Maintained by: <a href="https://github.com/Shweta-singh1">Shweta Singh </a> & <a href="https://github.com/ydvaayan">Aayan Yadav</a> </p> | ||
</div> | ||
</footer> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
{% include navigation.html %} | ||
<style> | ||
/* Add custom CSS to increase space between header and main content */ | ||
main { | ||
margin-top: 20px; /* Adjust the value as needed */ | ||
} | ||
</style> | ||
|
||
|
||
<main> | ||
<div class="container"> | ||
{{ content }} | ||
</div> | ||
</main> | ||
<footer> | ||
<div class="footer-content"> | ||
<p class="footer-text">Maintaine d by: <a href="https://github.com/Shweta-singh1">Shweta Singh </a> & <a href="https://github.com/ydvaayan">Aayan Yadav</a> </p> | ||
</div> | ||
</footer> | ||
<!-- Your React app container --> | ||
|
||
|
||
<script src="{{ site.baseurl }}/assets/js/explore-app/static/js/main.6093c0d7.js" type='module'></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
--- | ||
layout: default | ||
title: Download | ||
--- | ||
<link rel="stylesheet" type="text/css" href="/static/css/download.css"> | ||
<main class="container mt-3"> | ||
<div class="image-section"> | ||
<div class="container-fluid p-0"> | ||
<div class="shadow-lg p-3 mb-5 bg-white rounded"> | ||
<img src="{{ site.baseurl }}/assets/images/bg_img/bg4.jpg" class="img-fluid" alt="bg_image"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="download-section"> | ||
<h2 class="section-title">Download COCO-ReM</h2> | ||
<div class="download-box"> | ||
<a href="/path/to/dataset/download" class="btn btn-primary">Download Validation set</a> | ||
</div> | ||
<br> | ||
<p class="section-description">Explore and download the latest version of the COCO-ReM dataset for your research.</p> | ||
</div> | ||
<div class="dataset-overview"> | ||
<h3 class="subsection-title mb-3">Dataset Overview</h3> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<div class="card text-center"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Total Images</h5> | ||
<p class="card-text">5,000</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card text-center"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Object Categories</h5> | ||
<p class="card-text">80</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4"> | ||
<div class="card text-center"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Boundaries</h5> | ||
<p class="card-text">Smooth Refined</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Uncomment the following code if you want to include dataset stats --> | ||
<!-- | ||
<div class="dataset-stats"> | ||
<h3 class="subsection-title">Dataset Stats:</h3> | ||
<p>Total Images: 5,000+</p> | ||
<p>80 object categories</p> | ||
<p>Average Image Resolution: 640×480</p> | ||
</div> | ||
--> | ||
<div class="annotation-format card mt-4"> | ||
<div class="card-body"> | ||
<h3 class="subsection-title mb-3">Data Format</h3> | ||
<p class="annotation-description">The dataset annotations follow a standard JSON format:</p> | ||
<pre class="json-code"> | ||
{ | ||
"info": { | ||
"year": int, | ||
"version": str, | ||
"description": str, | ||
"contributor": str, | ||
"url": str, | ||
"date_created": datetime | ||
}, | ||
"images": [ | ||
{ | ||
"id": int, | ||
"width": int, | ||
"height": int, | ||
"file_name": str, | ||
"license": int, | ||
"flickr_url": str, | ||
"coco_url": str, | ||
"date_captured": datetime | ||
} | ||
], | ||
"licenses": [ | ||
{ | ||
"id": int, | ||
"name": str, | ||
"url": str | ||
} | ||
], | ||
"annotations": [ | ||
{ | ||
"id": int, | ||
"image_id": int, | ||
"category_id": int, | ||
"segmentation": RLE, | ||
"area": float, | ||
"bbox": [x, y, width, height], | ||
"iscrowd": 0 or 1, | ||
"iou_with_orig": float | ||
} | ||
], | ||
"categories": [ | ||
{ | ||
"id": int, | ||
"name": str, | ||
"supercategory": str | ||
} | ||
] | ||
} | ||
</pre> | ||
</div> | ||
</div> | ||
|
||
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: explore | ||
title: Explore | ||
--- | ||
<link rel="stylesheet" type="text/css" href="/static/css/explore.css"> | ||
|
||
|
||
<div id="root"></div> |
Oops, something went wrong.