Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
louisbrulenaudet committed Feb 2, 2024
1 parent aad7241 commit ac30209
Show file tree
Hide file tree
Showing 9 changed files with 964 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ __pycache__/
*.py[cod]
*$py.class


./sources/dataset.json


# C extensions
*.so

Expand Down
9 changes: 9 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Brulé Naudet"
given-names: "Louis"
orcid: "https://orcid.org/0000-0001-9111-4879"
title: "Tranformer-based Denoising AutoEncoder for Sentence Transformers Unsupervised pre-training"
version: 1.0.0
date-released: 2024-02-02
11 changes: 11 additions & 0 deletions ISSUES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
If you open a GitHub Issue, here is our policy:

1. It must be a bug/performance issue or a feature request or a build issue or
a documentation issue (for small doc fixes please send a PR instead).
1. Make sure the Issue Template is filled out.
1. The issue should be related to the repo it is created in.

**Here's why we have this policy:** We want to focus on the work that benefits
the whole community, e.g., fixing bugs and adding features. Individual support
should be sought on Stack Overflow or other non-GitHub channels. It helps us to
address bugs and feature requests in a timely manner.
28 changes: 28 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Security Policy

## Reporting a Bug

In case of a bug affecting a structural element of authentication,
resource distribution, display, adaptability, personal data security,
content, performance, referencing, please inform
Louis Brulé Naudet (<[email protected]>) as soon as possible.

## Reporting a Vulnerability

If you have legitimate reasons to believe that the security of the website,
database, or user resources is threatened, please provide information on how the
vulnerability was created and, if possible, formulate a hypothesis based on your observations
as to the recurrence of the vulnerability or its qualitative importance.

## Supported Versions

Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 1.x.x | :white_check_mark: |

## Responsible Disclosure

In some cases, we may apply a responsible disclosure process to reported or otherwise discovered vulnerabilities. We will usually do that for a critical vulnerability, and only if we have a good reason to believe information about it is not yet public.
Binary file added src/.DS_Store
Binary file not shown.
Binary file added src/tsdae/.DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions src/tsdae/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# __init__.py

# This file can be empty, or you can define package-level variables or settings here.
# For example, you might define a variable like this:
# version = "1.0.0"
Loading

0 comments on commit ac30209

Please sign in to comment.