-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1100 from zmeihui/23-9-20-doap
Add the doap file to the project
- Loading branch information
Showing
1 changed file
with
63 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,63 @@ | ||
<?xml version="1.0"?> | ||
<?xml-stylesheet type="text/xsl"?> | ||
<rdf:RDF xml:lang="en" | ||
xmlns="http://usefulinc.com/ns/doap#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:asfext="http://projects.apache.org/ns/asfext#" | ||
xmlns:foaf="http://xmlns.com/foaf/0.1/"> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<Project rdf:about="https://singa.apache.org/"> | ||
<created>2023-09-06</created> | ||
<license rdf:resource="https://spdx.org/licenses/Apache-2.0" /> | ||
<name>Apache SINGA</name> | ||
<homepage rdf:resource="https://singa.apache.org/" /> | ||
<asfext:pmc rdf:resource="https://singa.apache.org" /> | ||
<shortdesc>A Distributed Deep Learning Library</shortdesc> | ||
<description>Apache SINGA is an Apache top-level project for developing an open-source machine learning library. It provides a flexible architecture for scalable distributed training, is extensible to run over a wide range of hardware, and has a focus on healthcare applications.</description> | ||
<mailing-list rdf:resource="https://singa.apache.org/docs/mail-lists/" /> | ||
<download-page rdf:resource="https://singa.apache.org/docs/downloads/" /> | ||
<programming-language>C++</programming-language> | ||
<category rdf:resource="https://projects.apache.org/category/big-data" /> | ||
<release> | ||
<Version> | ||
<name>Apache SINGA 4.0.0</name> | ||
<created>2023-04-07</created> | ||
<revision>4.0.0</revision> | ||
</Version> | ||
</release> | ||
<repository> | ||
<SVNRepository> | ||
<location rdf:resource="https://dist.apache.org/repos/dist/dev/singa/"/> | ||
<browse rdf:resource="https://dist.apache.org/repos/dist/release/singa/"/> | ||
</SVNRepository> | ||
</repository> | ||
<repository> | ||
<GitRepository> | ||
<location rdf:resource="https://github.com/apache/singa"/> | ||
<browse rdf:resource="https://github.com/apache/singa"/> | ||
</GitRepository> | ||
</repository> | ||
<maintainer> | ||
<foaf:Person> | ||
<foaf:name>LUO ZHAOJING</foaf:name> | ||
<foaf:mbox rdf:resource="mailto:zhaojing@comp.nus.edu.sg"/> | ||
</foaf:Person> | ||
</maintainer> | ||
</Project> | ||
</rdf:RDF> | ||
|