Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shimoda-uec committed Jan 3, 2024
1 parent c4aa957 commit 10be122
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
title: Towards Diverse and Consistent Typography Generation
description:
show_downloads: true
github:
pub_url: https://openaccess.thecvf.com/content/WACV2024/papers/Shimoda_Towards_Diverse_and_Consistent_Typography_Generation_WACV_2024_paper.pdf
paper_url: https://arxiv.org/abs/2309.02099
code_url: https://github.com/CyberAgentAILab/tdc-typography-generation
theme: jekyll-theme-cayman
45 changes: 45 additions & 0 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: " en-US" }}">

<head>
<meta charset="UTF-8">

{% seo %}
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" as="style"
type="text/css" crossorigin>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
{% include head-custom.html %}
</head>

<body>
<a id="skip-to-content" href="#content">Skip to the content.</a>

<header class="page-header" role="banner">
<h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
<h2 class="project-tagline">{{ page.description | default: site.description | default:
site.github.project_tagline }}</h2>
<a href="{{ site.github.pub_url }}" class="btn">Publication</a>
<a href="{{ site.github.paper_url }}" class="btn">Paper</a>
<a href="{{ site.github.code_url }}" class="btn">Codes</a>
</header>

<main id="content" class="main-content" role="main">
{{ content }}

<footer class="site-footer">
{% if site.github.is_project_page %}
<span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name
}}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name
}}</a>.</span>
{% endif %}
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub
Pages</a>.</span>
</footer>
</main>
</body>

</html>
31 changes: 31 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: default
---

## Towards Diverse and Consistent Typography Generation

![Concept](https://raw.githubusercontent.com/CyberAgentAILab/tdc-typography-generation/master/images/teaser.jpg)

Wataru Shimoda<sup>1</sup>, Daichi Haraguchi<sup>2</sup>, Seiichi Uchida<sup>2</sup>, Kota Yamaguchi<sup>1</sup>
<sup>1</sup>CyberAgent.Inc, <sup>2</sup> Kyushu University

### Abstruct
In this work, we consider the typography generation task that aims at producing diverse typographic styling for the given graphic document. We formulate typography generation as a fine-grained attribute generation for multiple text elements and build an autoregressive model to generate diverse typography that matches the input design context. We further propose a simple yet effective sampling approach that respects the consistency and distinction principle of typography so that generated examples share consistent typographic styling across text elements. Our empirical study shows that our model successfully generates diverse typographic designs while preserving a consistent typographic structure.


### Results
<img src = "https://raw.githubusercontent.com/CyberAgentAILab/tdc-typography-generation/master/images/res.png" title = "res">

### Results with different diversity
<img src = "https://raw.githubusercontent.com/CyberAgentAILab/tdc-typography-generation/master/images/diverseexample.png" title = "cmp">

### Citation

```bibtex
@misc{shimoda_2024_tdctg,
author = {Shimoda, Wataru and Haraguchi, Daichi and Uchida, Seiichi and Yamaguchi, Kota},
title = {Towards Diverse and Consistent Typography Generation},
publisher = {arXiv:2309.02099},
year = {2024},
}
```

0 comments on commit 10be122

Please sign in to comment.