Working with viewpoints » History » Version 10

« Previous - Version 10/14 (diff) - Next » - Current version
Jeremy Gow, 2013-04-09 02:23 PM


Working with viewpoints

A number of functions are provided to help the user work with viewpoints and viewpoint data.

The available viewpoints are described in Pearce [2005] and implemented in the derived-viewpoints/ directory in amuse-viewpoints. It is easy to implement new viewpoints, the examples in that file and Adding Viewpoints should help you get started.

Viewpoint values

music-data:composition-viewpoint will return the viewpoint values for a specific composition. For example, for composition 3 of dataset 0, pitch interval has the following values:
CL-USER> (music-data:composition-viewpoint 0 3 'cpint)
(0 -300 0 -200 -200 0 -100 100 200 -200 500 0 0 0 -100 100 200 -700 0 0 0 400 0
 100 200 0 -700 700 0 200 -200 -300 -400 200 -200)

And the linked viewpoint '(cpint ioi) has:

CL-USER> (music-data:composition-viewpoint 0 3 '(cpint ioi))
((0 12) (-300 12) (0 12) (-200 12) (-200 24) (0 12) (-100 12) (100 12) (200 12)
 (-200 24) (500 12) (0 12) (0 12) (0 12) (-100 12) (100 12) (200 12) (-700 60)
 (0 12) (0 12) (0 12) (400 12) (0 12) (100 12) (200 12) (0 24) (-700 12)
 (700 24) (0 12) (200 12) (-200 12) (-300 12) (-400 12) (200 12) (-200 12))

Similarly, music-data:dataset-viewpoint returns the values for all compositions in a specific dataset, as a list of lists:

CL-USER> (music-data:dataset-viewpoint 0 'cpint)
((-300 -200 0 0 0 500 0 0 400 0 0 0 0 -200 -200 0 0 -300 -200 0 500 400 0 -200
  ...)
 (300 -300 100 -300 200 -200 -300 -400 1200 -300 100 -300 0 200 100 200 -300
  ...)
...)
 

You can also count the frequency of each symbol in a dataset (currently only implemented for numeric viewpoints):

CL-USER> (utils:numeric-frequencies (music-data:dataset-viewpoint 0 'cpint))
((-1400 . 3) (-1200 . 24) (-1100 . 1) (-1000 . 5) (-900 . 28) (-800 . 58)
 (-700 . 125) (-500 . 251) (-400 . 324) (-300 . 589) (-200 . 1408) (-100 . 341)
 (0 . 2127) (100 . 414) (200 . 1318) (300 . 432) (400 . 309) (500 . 435)
 (700 . 120) (800 . 11) (900 . 38) (1000 . 12) (1200 . 25) (1400 . 1)
 (1900 . 1))

List definitions

viewpoints:list-viewpoints returns a list of currently defined viewpoints::
CL-USER> (viewpoints:list-viewpoints)
(VIEWPOINTS::ARTICULATION VIEWPOINTS::COMMA VIEWPOINTS::VOICE
                          VIEWPOINTS::ORNAMENT VIEWPOINTS::DYN
...)

Similarly, particular kinds of viewpoints can be listed using viewpoints:list-basic, viewpoints:list-derived, viewpoints:list-linked and viewpoints:list-threaded.

FInd predictors

The predictors for a list of viewpoint --- i.e. the source viewpoints capable of predicting one or more of them --- can be listed as follows:

CL-USER> (viewpoints:predictors '(bioi))
(VIEWPOINTS::BIOI-RATIO VIEWPOINTS::BIOI-CONTOUR VIEWPOINTS::BIOI)