aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_scholar/templates/about.html
blob: 63f2d66c9989b5784393a5c973fee7c1031c6318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{% extends "base.html" %}

{% block title %}
{% trans website_name = super() %}About {{ website_name }}{% endtrans %}
{% endblock %}

{% block main %}
<h1>{% trans %}About Internet Archive Scholar{% endtrans %}</h1>
<p><i>See also: <a href="{{ lang_prefix }}/help">User Guide</a> which lists
some bugs and known issues</i>

<a name="howitworks"></a>
<h3>How It Works</h3>

<p>Content in this search index comes in one of three forms:

<ul>
  <li><b>public web content</b> as preserved in <a href="https://web.archive.org">The Wayback Machine</a> and <a href="https://archive-it.org">Archive-It</a> partner collections
  <li><b>digitized print materials</b> from paper and microform collections
  <li><b>general materials</b> from <a href="https://archive.org">archive.org collections</a>, including collaborations with partners
</ul>

<p>This <a href="https://www.youtube.com/watch?v=PARqfbYIdXQ">2019 FORCE11
conference presentation</a> gives an overview of the technical infrastructure
and goals of the project overall.

<a name="sources"></a>
<h3>Content Sources</h3>

<p>Metadata comes from <a href="https://fatcat.wiki">fatcat.wiki</a>, an open
user-editable catalog of scholarly work. It should be possible to track and
attribute the provenance of content and metadata in all cases. Please
<a href="#contact">contact us</a> if you have questions.

<a name="tdm"></a>
<h3>Text and Data Mining</h3>

<p>We intend to provide researcher access to the full corpus for text and data
mining purposes. Derived datasets may also be posted publicly for analysis, for
example a citation graph or N-gram frequencies by year. If you are interested
or would like to see specific datasets made available, please contact us.

<p>Currently snapshots of the full fatcat metadata corpus and upstream metadata
sources are uploaded periodically to the
<a href="https://archive.org/details/ia_biblio_metadata">Bulk Bibliographic
Metadata</a> collection on archive.org.
Read more in <a href="https://guide.fatcat.wiki/bulk_exports.html">the Fatcat Guide</a>.

<a name="contact"></a>
<h3>Contact Information</h3>

<p>The organizational contact information for the Internet Archive is listed at
<a href="https://archive.org/about/contact.php">https://archive.org/about/contact.php</a>.
Queries about this search service and the fatcat catalog can be directed to
<a href="mailto:webservices@archive.org">webservices@archive.org</a>. There is
a public chat channel at
<a href="https://gitter.im/internetarchive/fatcat">gitter.im/internetarchive/fatcat</a>.


{% endblock %}