Skip to content

Commit 1982b0f

Browse files
author
Alexander Morgan
committed
2 parents 57298e5 + 33adc7e commit 1982b0f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The VIS Framework for Music Analysis
88
[![Latest Version](https://img.shields.io/pypi/v/vis-framework.svg)](https://pypi.python.org/pypi/vis-framework/)
99
[![License](https://img.shields.io/badge/license-AGPL%203.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0.html)
1010

11-
The VIS Framework is a Python package that uses the music21 and pandas libraries to build a ridiculously flexible and preposterously easy system for writing computer music analysis programs.
11+
The VIS Framework is a Python package that uses the music21 and pandas libraries to build a flexible system for writing computational music analysis programs.
1212

1313
Copyright Information:
1414
* All source code is subject to the GNU AGPL 3.0 Licence. A copy of this licence is included as doc/apg-3.0.txt.

vis/analyzers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
#--------------------------------------------------------------------------------------------------
1515
"""
1616
Indexers produce an "index" of a symbolic musical score. Each index provides one type of data, and
17-
each event in can be attached to a particular moment in the original score. Some indexers produce
17+
each event can be attached to a particular moment in the original score. Some indexers produce
1818
their index directly from the score, like the :class:`~noterest.NoteRestIndexer`, which describes
1919
pitches. Others create new information by analyzing another index, like the
2020
:class:`~interval.IntervalIndexer`, which describes harmonic intervals between two-part combinations
2121
in the score, or the :class:`~repeat.FilterByRepeatIndexer`, which removes consecutive identical
2222
events, leaving only the first.
2323
24-
Analysis modules that subclass :class:`~vis.analyzers.experimenter.Experimenter`, by contrast,
24+
Analysis modules of the subclass :class:`~vis.analyzers.experimenter.Experimenter`, by contrast,
2525
produce results that cannot be attached to a moment in a score.
2626
2727
Indexers work only on single :class:`~vis.models.indexed_piece.IndexedPiece` instances. To analyze

0 commit comments

Comments
 (0)