Skip to content

Commit dfb8868

Browse files
committed
update SPDX license
1 parent 3beaa25 commit dfb8868

File tree

162 files changed

+163
-174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+163
-174
lines changed

pythainlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
# URL: <https://pythainlp.github.io/>

pythainlp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
import argparse
55
import sys

pythainlp/ancient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
"""
55
Ancient versions of the Thai language

pythainlp/ancient/aksonhan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
from pythainlp.util import Trie
55
from pythainlp import thai_consonants,thai_tonemarks

pythainlp/augment/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
"""
55
Thai text augment

pythainlp/augment/lm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
"""
55
LM

pythainlp/augment/lm/fasttext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
import itertools
55
from typing import List, Tuple

pythainlp/augment/lm/wangchanberta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
from typing import List
55
from transformers import (

pythainlp/augment/word2vec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
"""
55
Word2Vec

pythainlp/augment/word2vec/bpemb_wv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# SPDX-FileCopyrightText: Copyright (C) 2016-2023 PyThaiNLP Project.
2+
# SPDX-FileCopyrightText: Copyright 2016-2023 PyThaiNLP Project
33
# SPDX-License-Identifier: Apache-2.0
44
from typing import List, Tuple
55
from pythainlp.augment.word2vec.core import Word2VecAug

0 commit comments

Comments
 (0)