diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bdb7d2f..25a7384 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -43,7 +43,7 @@ jobs: path: ".tfvars" - uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.12' - uses: aws-actions/setup-sam@v1 - uses: aws-actions/configure-aws-credentials@master with: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bb5a435..64d2283 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.12' - name: Install dependencies run: pip install -r requirements.txt working-directory: ./docs diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 7b76990..88c1369 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: '3.9' + python-version: '3.12' cache-dependency-path: chat/src/requirements.txt - run: pip install -r requirements.txt && pip install -r requirements-dev.txt working-directory: ./chat/src diff --git a/.github/workflows/validate-template.yml b/.github/workflows/validate-template.yml index 9eda334..d02d660 100644 --- a/.github/workflows/validate-template.yml +++ b/.github/workflows/validate-template.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/setup-python@v4 with: - python-version: '3.9' + python-version: '3.12' - uses: aws-actions/setup-sam@v1 - name: sam fix https://github.com/aws/aws-sam-cli/issues/4527 run: $(dirname $(readlink $(which sam)))/pip install --force-reinstall "cryptography==38.0.4" diff --git a/chat-client.ipynb b/chat-client.ipynb deleted file mode 100644 index 3d7dbb4..0000000 --- a/chat-client.ipynb +++ /dev/null @@ -1,530 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Requirement already satisfied: websocket-client in ./.venv/lib/python3.10/site-packages (1.7.0)\n" - ] - } - ], - "source": [ - "! pip install websocket-client" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "addr = \"wss://56drqcf14c.execute-api.us-east-1.amazonaws.com/latest\"\n", - "token = \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2RjLWFwaS1ibXEucmRjLXN0YWdpbmcubGlicmFyeS5ub3J0aHdlc3Rlcm4uZWR1L2FwaS92Mi8iLCJpYXQiOjE2OTc1NzQ2NjMsImV4cCI6MTcxNzk3NzYwMCwiaXNMb2dnZWRJbiI6dHJ1ZSwic3ViIjoiYm1xNDQ5IiwibmFtZSI6IkJyZW5kYW4gUXVpbm4iLCJlbWFpbCI6ImJyZW5kYW4tcXVpbm5Abm9ydGh3ZXN0ZXJuLmVkdSIsImlzU3VwZXJVc2VyIjpmYWxzZSwiZW50aXRsZW1lbnRzIjpbXX0.lj_uyMolHJVe-OaFxAWTbdSmqf1BB5rwtl5WhHYaeZs\"\n", - "question = \"Who performed at the Berkeley Folk Music Festival in 1971?\"" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "payload = {\n", - " 'message': 'chat', 'auth': token, 'ref': 'abc123', 'question': question\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [], - "source": [ - "import websocket\n", - "import json\n", - "\n", - "class NulDCChatClient:\n", - " def __init__(self, addr, auth_token, on_token=None, on_answer=None, on_error=None, on_debug=None):\n", - " self.addr = addr\n", - " self.auth_token = auth_token\n", - " self.handlers = {\n", - " 'token': on_token,\n", - " 'answer': on_answer,\n", - " 'error': on_error,\n", - " 'debug': on_debug\n", - " }\n", - "\n", - " def __dispatch(self, key, data):\n", - " if self.handlers[key]:\n", - " self.handlers[key](data)\n", - "\n", - " def ask(self, q, ref=''):\n", - " answer = None\n", - " def on_message(app, data):\n", - " nonlocal answer\n", - " message = json.loads(data)\n", - " if 'token' in message:\n", - " self.__dispatch('token', message['token'])\n", - " if 'answer' in message:\n", - " answer = message['answer']\n", - " self.dispatch('answer', answer)\n", - " app.close()\n", - " if message.get('type', None) == 'debug':\n", - " self.dispatch('debug', message['message'])\n", - " if 'error' in message:\n", - " self.dispatch('error', message['error'])\n", - " app.close()\n", - "\n", - " payload = { 'message': 'chat', 'auth': self.auth_token, 'ref': ref, 'question': q }\n", - " ws = websocket.WebSocketApp(addr, on_message=on_message, on_open=lambda ws: ws.send(json.dumps(payload)))\n", - " ws.run_forever()\n", - " return answer" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Websocket connected\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "Based\n", - " on\n", - " the\n", - " documents\n", - " provided\n", - ",\n", - " there\n", - " is\n", - " no\n", - " direct\n", - " mention\n", - " of\n", - " specific\n", - " performers\n", - " at\n", - " the\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - " in\n", - " \n", - "197\n", - "1\n", - ".\n", - " The\n", - " documents\n", - " in\n", - " the\n", - " query\n", - " are\n", - " related\n", - " to\n", - " different\n", - " events\n", - " and\n", - " individuals\n", - ",\n", - " but\n", - " they\n", - " do\n", - " not\n", - " explicitly\n", - " list\n", - " the\n", - " performers\n", - " for\n", - " the\n", - " \n", - "197\n", - "1\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - ".\n", - " Here\n", - " is\n", - " a\n", - " brief\n", - " overview\n", - " of\n", - " the\n", - " documents\n", - " and\n", - " why\n", - " they\n", - " might\n", - " not\n", - " directly\n", - " answer\n", - " the\n", - " question\n", - ":\n", - "\n", - "\n", - "1\n", - ".\n", - " **\n", - "Out\n", - " of\n", - " the\n", - " Sl\n", - "udge\n", - " Sl\n", - "ides\n", - " the\n", - " Slug\n", - "**:\n", - " This\n", - " document\n", - " is\n", - " about\n", - " a\n", - " puppet\n", - " play\n", - " performed\n", - " by\n", - " Daniel\n", - " Moore\n", - ",\n", - " presented\n", - " by\n", - " the\n", - " F\n", - "ossil\n", - " Pool\n", - " Theatre\n", - ".\n", - " It\n", - " is\n", - " related\n", - " to\n", - " a\n", - " specific\n", - " performance\n", - " and\n", - " does\n", - " not\n", - " mention\n", - " the\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - " or\n", - " its\n", - " \n", - "197\n", - "1\n", - " lineup\n", - ".\n", - "\n", - "\n", - "2\n", - ".\n", - " **\n", - "Into\n", - " the\n", - " Void\n", - " Van\n", - "ishes\n", - " the\n", - " Vacuum\n", - "**:\n", - " Similar\n", - " to\n", - " the\n", - " first\n", - " document\n", - ",\n", - " this\n", - " is\n", - " about\n", - " a\n", - " performance\n", - " by\n", - " Daniel\n", - " Moore\n", - " and\n", - " orchestra\n", - ",\n", - " also\n", - " presented\n", - " by\n", - " the\n", - " F\n", - "ossil\n", - " Pool\n", - " Theatre\n", - ".\n", - " While\n", - " it\n", - " indicates\n", - " a\n", - " cultural\n", - " and\n", - " artistic\n", - " scene\n", - " around\n", - " Berkeley\n", - ",\n", - " it\n", - " does\n", - " not\n", - " provide\n", - " information\n", - " on\n", - " the\n", - " festival\n", - "'s\n", - " performers\n", - " in\n", - " \n", - "197\n", - "1\n", - ".\n", - "\n", - "\n", - "3\n", - ".\n", - " **\n", - "They\n", - "'ll\n", - " know\n", - " who\n", - " I\n", - " am\n", - "**:\n", - " This\n", - " document\n", - " contains\n", - " music\n", - " and\n", - " lyrics\n", - " by\n", - " May\n", - "ne\n", - " Smith\n", - " but\n", - " does\n", - " not\n", - " reference\n", - " his\n", - " participation\n", - " in\n", - " the\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - " or\n", - " any\n", - " event\n", - " specifics\n", - " for\n", - " \n", - "197\n", - "1\n", - ".\n", - "\n", - "\n", - "4\n", - ".\n", - " **\n", - "Notes\n", - " found\n", - " with\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - " materials\n", - " from\n", - " \n", - "197\n", - "1\n", - "**:\n", - " These\n", - " notes\n", - " were\n", - " found\n", - " with\n", - " materials\n", - " related\n", - " to\n", - " the\n", - " festival\n", - " in\n", - " \n", - "197\n", - "1\n", - " but\n", - " do\n", - " not\n", - " contain\n", - " detailed\n", - " information\n", - " about\n", - " the\n", - " performers\n", - " or\n", - " events\n", - " during\n", - " the\n", - " festival\n", - ".\n", - "\n", - "\n", - "Given\n", - " the\n", - " content\n", - " of\n", - " these\n", - " documents\n", - ",\n", - " they\n", - " cannot\n", - " definit\n", - "ively\n", - " answer\n", - " who\n", - " performed\n", - " at\n", - " the\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - " in\n", - " \n", - "197\n", - "1\n", - ".\n", - " They\n", - " are\n", - " relevant\n", - " because\n", - " they\n", - " are\n", - " associated\n", - " with\n", - " the\n", - " cultural\n", - " and\n", - " artistic\n", - " environment\n", - " of\n", - " Berkeley\n", - " and\n", - " the\n", - " broader\n", - " Berkeley\n", - " Folk\n", - " Music\n", - " Festival\n", - " Archive\n", - ".\n", - " However\n", - ",\n", - " without\n", - " direct\n", - " references\n", - " to\n", - " the\n", - " festival\n", - "'s\n", - " lineup\n", - " or\n", - " performers\n", - " in\n", - " \n", - "197\n", - "1\n", - ",\n", - " we\n", - " cannot\n", - " extract\n", - " a\n", - " list\n", - " of\n", - " performers\n", - " from\n", - " these\n", - " documents\n", - ".\n", - "\n" - ] - } - ], - "source": [ - "client = NulDCChatClient(addr, auth_token=token, on_token=lambda t: print(t))\n", - "answer = client.ask(question)" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Based on the documents provided, there is no direct mention of specific performers at the Berkeley Folk Music Festival in 1971. The documents in the query are related to different events and individuals, but they do not explicitly list the performers for the 1971 Berkeley Folk Music Festival. Here is a brief overview of the documents and why they might not directly answer the question:\n", - "\n", - "1. **Out of the Sludge Slides the Slug**: This document is about a puppet play performed by Daniel Moore, presented by the Fossil Pool Theatre. It is related to a specific performance and does not mention the Berkeley Folk Music Festival or its 1971 lineup.\n", - "\n", - "2. **Into the Void Vanishes the Vacuum**: Similar to the first document, this is about a performance by Daniel Moore and orchestra, also presented by the Fossil Pool Theatre. While it indicates a cultural and artistic scene around Berkeley, it does not provide information on the festival's performers in 1971.\n", - "\n", - "3. **They'll know who I am**: This document contains music and lyrics by Mayne Smith but does not reference his participation in the Berkeley Folk Music Festival or any event specifics for 1971.\n", - "\n", - "4. **Notes found with Berkeley Folk Music Festival materials from 1971**: These notes were found with materials related to the festival in 1971 but do not contain detailed information about the performers or events during the festival.\n", - "\n", - "Given the content of these documents, they cannot definitively answer who performed at the Berkeley Folk Music Festival in 1971. They are relevant because they are associated with the cultural and artistic environment of Berkeley and the broader Berkeley Folk Music Festival Archive. However, without direct references to the festival's lineup or performers in 1971, we cannot extract a list of performers from these documents.\n" - ] - } - ], - "source": [ - "print(answer)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": ".venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.5" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/chat/src/playground.ipynb b/chat/src/playground.ipynb deleted file mode 100644 index 18fa42e..0000000 --- a/chat/src/playground.ipynb +++ /dev/null @@ -1,1482 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "\n", - "os.environ['AI_MODEL_ID'] = \"anthropic.claude-3-sonnet-20240229-v1:0\"\n", - "os.environ['API_TOKEN_NAME'] = \"dcapiJ268e42\"\n", - "os.environ['API_TOKEN_SECRET'] = \"4ac83bf1271b06e0042f5d53ab13a18cd730251a8c388372fa12a86597c48ee9\"\n", - "os.environ['AZURE_OPENAI_API_KEY'] = \"4d4e25b8904745ac8ed0bbec2fd1bbc8\"\n", - "os.environ['AZURE_OPENAI_EMBEDDING_DEPLOYMENT_ID'] = \"dc-embedding-ada-002\"\n", - "os.environ['AZURE_OPENAI_LLM_DEPLOYMENT_ID'] = \"gpt-4-128k-0125-preview\"\n", - "os.environ['AZURE_OPENAI_RESOURCE_NAME'] = \"nul-ai-east\"\n", - "os.environ['DC_API_ENDPOINT'] = \"https://dcapi.rdc-staging.library.northwestern.edu/api/v2\"\n", - "os.environ['DC_URL'] = \"https://mbk.dev.rdc.library.northwestern.edu:3001\"\n", - "os.environ['DEBUG'] = \"api.*\"\n", - "os.environ['EMBEDDING_ENDPOINT'] = \"stack-s-embedding-default\"\n", - "os.environ['ENV_PREFIX'] = \"bmq-dev\"\n", - "os.environ['READING_ROOM_IPS'] = \"\"\n", - "os.environ['STREAM'] = \"0\"\n", - "os.environ['ELASTICSEARCH_ENDPOINT'] = \"vpc-dev-environment-shared-index-65gumt4bewmqkpqjoamt3xleeu.us-east-1.es.amazonaws.com\"\n", - "os.environ['INDEX_NAME'] = 'prod-data'\n", - "os.environ['AWS_REGION'] = 'us-east-1'\n", - "os.environ['AWS_PROFILE'] = 'staging-admin'\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "from event_config import EventConfig\n", - "from setup import opensearch_vector_store\n", - "config = EventConfig(event={'body': '{\"question\": \"Who played at the Berkeley Folk Music Festival?\"}'})\n", - "config._setup_chat_client()\n", - "config._setup_vector_store()\n", - "config._setup_chain()\n" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "docs = config.opensearch.similarity_search(\n", - " config.question, k=config.k, vector_field=\"embedding\", text_field=\"id\"\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'question': 'Who played at the Berkeley Folk Music Festival?',\n", - " 'source_documents': [{'accession_number': 'BFMF_B15_F08_012_016n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/5f568c9b-68dd-46bf-9932-1a5ea749707a',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Hart, Kelly, 1943-']],\n", - " 'date_created': ['June 26, 1963 to June 30, 1963'],\n", - " 'date_created_edtf': ['1963-06-26/1963-06-30'],\n", - " 'description': ['Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': '5f568c9b-68dd-46bf-9932-1a5ea749707a',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['35 mm'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a/thumbnail',\n", - " 'title': 'Performer at Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B15_F08_012_024n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/38271495-8441-4f76-a146-c35e4b164303',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Hart, Kelly, 1943-']],\n", - " 'date_created': ['June 26, 1963 to June 30, 1963'],\n", - " 'date_created_edtf': ['1963-06-26/1963-06-30'],\n", - " 'description': ['Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': '38271495-8441-4f76-a146-c35e4b164303',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['35 mm'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303/thumbnail',\n", - " 'title': 'Performer at Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B15_F08_012_015n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/fb2236cf-0d19-493e-a605-52c2b0235aec',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Hart, Kelly, 1943-']],\n", - " 'date_created': ['June 26, 1963 to June 30, 1963'],\n", - " 'date_created_edtf': ['1963-06-26/1963-06-30'],\n", - " 'description': ['Man playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': 'fb2236cf-0d19-493e-a605-52c2b0235aec',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['35 mm'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec/thumbnail',\n", - " 'title': 'Performer at Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B14_F07_032',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/8e1da339-4591-46d9-92e9-e2552e682886',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Phillip']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner singing and playing banjo at 1958 Berkeley Folk Music Festival concert'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': '8e1da339-4591-46d9-92e9-e2552e682886',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['4.5 inches (height) x 3.5 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B17_F14_032',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/8e65cb38-270e-4213-81a8-0b91b68d40a8',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Berkeley Folk Music Festival']],\n", - " 'date_created': ['circa 1958 to circa 1970'],\n", - " 'date_created_edtf': ['1958~/1970~'],\n", - " 'description': ['Crowd gathered around a woman playing autoharp and man playing guitar during the Berkeley Folk Music Festival'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': '8e65cb38-270e-4213-81a8-0b91b68d40a8',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': [],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8/thumbnail',\n", - " 'title': 'Berkeley Folk Music Festival performance',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B12_F17_016',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/49f7f5c3-565d-4918-bcad-7e9ae2360bd7',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Barry, 1935-']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner on stage singing and playing banjo at the Berkeley Folk Music Festival'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': '49f7f5c3-565d-4918-bcad-7e9ae2360bd7',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['4.75 inches (height) x 6 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B14_F07_031',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/f36ffcb1-51da-4dc7-888b-0ad3a779ce54',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Phillip']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner gesturing on stage at 1958 Berkeley Folk Music Festival concert'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': 'f36ffcb1-51da-4dc7-888b-0ad3a779ce54',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['3.5 inches (height) x 4.5 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B12_F17_008_001n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/93fb4c26-4a31-40df-ad71-fc56531b3ab8',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Barry, 1935-']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner on stage with banjo at the Berkeley Folk Music Festival. Digital scan of a black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': '93fb4c26-4a31-40df-ad71-fc56531b3ab8',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': [],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Warner, Frank, 1903-1978'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B17_F09_014s',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [],\n", - " 'date_created': ['July 4, 1968 to July 7, 1968'],\n", - " 'date_created_edtf': ['1968-07-04/1968-07-07'],\n", - " 'description': ['Band on stage at the 1968 Berkeley Folk Music Festival'],\n", - " 'genre': [['color slides']],\n", - " 'id': 'fb69f0bd-505f-44ad-97c5-d9b9445b6cbe',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': [],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe/thumbnail',\n", - " 'title': '1968 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B55_F01_012',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/b172fba8-13d4-4e57-a8b0-fb9286843226',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Phillip']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner playing banjo at 1958 Berkeley Folk Music Festival concert'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': 'b172fba8-13d4-4e57-a8b0-fb9286843226',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['4.75 inches (height) x 6.75 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B14_F07_023',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/ebfa78a6-53e0-4291-8f3a-575439d62431',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Phillip']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner playing banjo at 1958 Berkeley Folk Music Festival concert'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': 'ebfa78a6-53e0-4291-8f3a-575439d62431',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['4.75 inches (height) x 6.75 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B16_F06_019_004n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [],\n", - " 'date_created': ['June 23, 1965 to June 27, 1965'],\n", - " 'date_created_edtf': ['1965-06-23/1965-06-27'],\n", - " 'description': ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': '33fa709b-4e05-479d-8e8f-0a5dc13b6ac6',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['35 mm'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6/thumbnail',\n", - " 'title': 'Berkeley Folk Music Festival performer',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B16_F06_019_001n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/bd47d447-5f87-4dae-88b7-6e96e083094b',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [],\n", - " 'date_created': ['June 23, 1965 to June 27, 1965'],\n", - " 'date_created_edtf': ['1965-06-23/1965-06-27'],\n", - " 'description': ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': 'bd47d447-5f87-4dae-88b7-6e96e083094b',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['35 mm'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b/thumbnail',\n", - " 'title': 'Berkeley Folk Music Festival performer',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B16_F06_019_002n',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [],\n", - " 'date_created': ['June 23, 1965 to June 27, 1965'],\n", - " 'date_created_edtf': ['1965-06-23/1965-06-27'],\n", - " 'description': ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.'],\n", - " 'genre': [['black-and-white negatives']],\n", - " 'id': 'eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['35 mm'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2/thumbnail',\n", - " 'title': 'Berkeley Folk Music Festival performer',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B17_F02_001',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/09b79516-1fdc-4cd5-8667-dfeefd0fca92',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [],\n", - " 'date_created': ['July 4, 1967'],\n", - " 'date_created_edtf': ['1967-07-04'],\n", - " 'description': ['Audience watching a performer at the Berkeley Folk Music Festival campfire in Eucalyptus Grove'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': '09b79516-1fdc-4cd5-8667-dfeefd0fca92',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': [],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Eucalyptus Grove'],\n", - " ['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92/thumbnail',\n", - " 'title': 'Audience at Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B17_F03_009s',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/c45a76c9-adcc-42b3-9193-0e4da5b14a17',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Barry, 1935-']],\n", - " 'date_created': ['July 4, 1968'],\n", - " 'date_created_edtf': ['1968-07-04'],\n", - " 'description': ['People dancing in Sproul Plaza as Shlomo Carlebach performs on stage during the 1968 Berkeley Folk Music Festival'],\n", - " 'genre': [['color slides']],\n", - " 'id': 'c45a76c9-adcc-42b3-9193-0e4da5b14a17',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': [],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Sproul Plaza'],\n", - " ['Carlebach, Shlomo, 1925-1994'],\n", - " ['Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17/thumbnail',\n", - " 'title': 'Audience at 1968 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B17_F05_023',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/8562d006-4c78-4033-8a83-75fab0b7a4c1',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Berkeley Folk Music Festival'],\n", - " ['Bishop, John Melville']],\n", - " 'date_created': ['October 9, 1970'],\n", - " 'date_created_edtf': ['1970-10-09'],\n", - " 'description': ['Guitar player in silhouette at the Friday night concert in Pauley Ballroom during the 1970 Berkeley Folk Music Festival'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': '8562d006-4c78-4033-8a83-75fab0b7a4c1',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': [],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['Pauley Ballroom (Berkeley, Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.)']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1/thumbnail',\n", - " 'title': '1970 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B12_F17_021',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/d507f114-21ac-489a-bfb5-ac55c09ded9b',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Berkeley Folk Music Festival'],\n", - " ['Olivier, Barry, 1935-']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner on stage with banjo at the Berkeley Folk Music Festival'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': 'd507f114-21ac-489a-bfb5-ac55c09ded9b',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['10 inches (height) x 8 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B14_F07_037',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/7ae4237d-3846-400e-a140-e70588a44118',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Phillip']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner, gesturing on stage at 1958 Berkeley Folk Music Festival workshop'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': '7ae4237d-3846-400e-a140-e70588a44118',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['6.75 inches (height) x 4.75 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'},\n", - " {'accession_number': 'BFMF_B14_F07_036',\n", - " 'alternate_title': [],\n", - " 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4',\n", - " 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/e6ca8586-aacf-4254-829a-8748cdbf98b4',\n", - " 'caption': [],\n", - " 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.',\n", - " 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7',\n", - " 'title': 'Berkeley Folk Music Festival'},\n", - " 'contributor': [['Olivier, Phillip']],\n", - " 'date_created': ['June 27, 1958 to June 30, 1958'],\n", - " 'date_created_edtf': ['1958-06-27/1958-06-30'],\n", - " 'description': ['Frank Warner, gesturing on stage at 1958 Berkeley Folk Music Festival workshop'],\n", - " 'genre': [['black-and-white photographs']],\n", - " 'id': 'e6ca8586-aacf-4254-829a-8748cdbf98b4',\n", - " 'identifier': ['MS 63'],\n", - " 'keywords': [],\n", - " 'language': [],\n", - " 'notes': [],\n", - " 'physical_description_material': [],\n", - " 'physical_description_size': ['6.75 inches (height) x 4.75 inches (width)'],\n", - " 'provenance': [],\n", - " 'publisher': [],\n", - " 'rights_statement': ['In Copyright'],\n", - " 'subject': [['Berkeley (Calif.)'],\n", - " ['University of California, Berkeley'],\n", - " ['Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)'],\n", - " ['Warner, Frank, 1903-1978']],\n", - " 'table_of_contents': [],\n", - " 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4/thumbnail',\n", - " 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival',\n", - " 'visibility': 'Public',\n", - " 'work_type': 'Image'}]}" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from helpers.response import get_and_send_original_question\n", - "\n", - "original_question = get_and_send_original_question(config, docs)\n", - "original_question" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/ec2-user/environment/dc-api-v2/.venv/lib/python3.10/site-packages/langchain_core/_api/deprecation.py:117: LangChainDeprecationWarning: The function `__call__` was deprecated in LangChain 0.1.0 and will be removed in 0.2.0. Use invoke instead.\n", - " warn_deprecated(\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\u001b[1m> Entering new StuffDocumentsChain chain...\u001b[0m\n", - "\n", - "\n", - "\u001b[1m> Entering new LLMChain chain...\u001b[0m\n", - "Prompt after formatting:\n", - "\u001b[32;1m\u001b[1;3mPlease answer the question based on the documents provided, and include some details about why the documents might be relevant to the particular question:\n", - "\n", - "Documents:\n", - "Content: Performer at Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B15_F08_012_016n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/5f568c9b-68dd-46bf-9932-1a5ea749707a\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2008123907', 'label': 'Hart, Kelly, 1943-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2008123907|pht|Hart, Kelly, 1943- (Photographer)', 'label_with_role': 'Hart, Kelly, 1943- (Photographer)'}]\n", - " date_created: ['June 26, 1963 to June 30, 1963']\n", - " date_created_edtf: ['1963-06-26/1963-06-30']\n", - " description: ['Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: 5f568c9b-68dd-46bf-9932-1a5ea749707a\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['35 mm']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164233', 'label': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'University of California Folk Music Festival (6th : 1963 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164233|TOPICAL|Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a/thumbnail\n", - " title: Performer at Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 5f568c9b-68dd-46bf-9932-1a5ea749707a\n", - "\n", - "Content: Performer at Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B15_F08_012_024n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/38271495-8441-4f76-a146-c35e4b164303\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2008123907', 'label': 'Hart, Kelly, 1943-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2008123907|pht|Hart, Kelly, 1943- (Photographer)', 'label_with_role': 'Hart, Kelly, 1943- (Photographer)'}]\n", - " date_created: ['June 26, 1963 to June 30, 1963']\n", - " date_created_edtf: ['1963-06-26/1963-06-30']\n", - " description: ['Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: 38271495-8441-4f76-a146-c35e4b164303\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['35 mm']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164233', 'label': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'University of California Folk Music Festival (6th : 1963 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164233|TOPICAL|Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303/thumbnail\n", - " title: Performer at Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 38271495-8441-4f76-a146-c35e4b164303\n", - "\n", - "Content: Performer at Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B15_F08_012_015n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/fb2236cf-0d19-493e-a605-52c2b0235aec\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2008123907', 'label': 'Hart, Kelly, 1943-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2008123907|pht|Hart, Kelly, 1943- (Photographer)', 'label_with_role': 'Hart, Kelly, 1943- (Photographer)'}]\n", - " date_created: ['June 26, 1963 to June 30, 1963']\n", - " date_created_edtf: ['1963-06-26/1963-06-30']\n", - " description: ['Man playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: fb2236cf-0d19-493e-a605-52c2b0235aec\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['35 mm']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164233', 'label': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'University of California Folk Music Festival (6th : 1963 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164233|TOPICAL|Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec/thumbnail\n", - " title: Performer at Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: fb2236cf-0d19-493e-a605-52c2b0235aec\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B14_F07_032\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/8e1da339-4591-46d9-92e9-e2552e682886\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner singing and playing banjo at 1958 Berkeley Folk Music Festival concert']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: 8e1da339-4591-46d9-92e9-e2552e682886\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['4.5 inches (height) x 3.5 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 8e1da339-4591-46d9-92e9-e2552e682886\n", - "\n", - "Content: Berkeley Folk Music Festival performance\n", - "Metadata:\n", - " accession_number: BFMF_B17_F14_032\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/8e65cb38-270e-4213-81a8-0b91b68d40a8\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Contributor', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|ctb|Berkeley Folk Music Festival (Contributor)', 'label_with_role': 'Berkeley Folk Music Festival (Contributor)'}]\n", - " date_created: ['circa 1958 to circa 1970']\n", - " date_created_edtf: ['1958~/1970~']\n", - " description: ['Crowd gathered around a woman playing autoharp and man playing guitar during the Berkeley Folk Music Festival']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: 8e65cb38-270e-4213-81a8-0b91b68d40a8\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: []\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|TOPICAL|Berkeley Folk Music Festival (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8/thumbnail\n", - " title: Berkeley Folk Music Festival performance\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 8e65cb38-270e-4213-81a8-0b91b68d40a8\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B12_F17_016\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/49f7f5c3-565d-4918-bcad-7e9ae2360bd7\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner on stage singing and playing banjo at the Berkeley Folk Music Festival']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: 49f7f5c3-565d-4918-bcad-7e9ae2360bd7\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['4.75 inches (height) x 6 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 49f7f5c3-565d-4918-bcad-7e9ae2360bd7\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B14_F07_031\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/f36ffcb1-51da-4dc7-888b-0ad3a779ce54\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner gesturing on stage at 1958 Berkeley Folk Music Festival concert']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: f36ffcb1-51da-4dc7-888b-0ad3a779ce54\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['3.5 inches (height) x 4.5 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: f36ffcb1-51da-4dc7-888b-0ad3a779ce54\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B12_F17_008_001n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/93fb4c26-4a31-40df-ad71-fc56531b3ab8\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner on stage with banjo at the Berkeley Folk Music Festival. Digital scan of a black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: 93fb4c26-4a31-40df-ad71-fc56531b3ab8\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: []\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 93fb4c26-4a31-40df-ad71-fc56531b3ab8\n", - "\n", - "Content: 1968 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B17_F09_014s\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: []\n", - " date_created: ['July 4, 1968 to July 7, 1968']\n", - " date_created_edtf: ['1968-07-04/1968-07-07']\n", - " description: ['Band on stage at the 1968 Berkeley Folk Music Festival']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128366', 'label': 'color slides', 'variants': ['color slide', 'slides, color', 'diapositivas en color', 'colour slide', 'slides, colour', 'kleurendia', 'diapositive couleur (slide)', 'diapositive en couleur (color slide)', 'diapositive en couleurs (color slides)', 'diapositives couleur (color slide)', 'diapositives en couleurs (color slides)', 'Farbdias', 'diapositiva en color'], 'facet': 'http://vocab.getty.edu/aat/300128366||color slides'}]\n", - " id: fb69f0bd-505f-44ad-97c5-d9b9445b6cbe\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: []\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164238', 'label': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)', 'variants': ['A.S.U.C. Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164238|TOPICAL|Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe/thumbnail\n", - " title: 1968 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: fb69f0bd-505f-44ad-97c5-d9b9445b6cbe\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B55_F01_012\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/b172fba8-13d4-4e57-a8b0-fb9286843226\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner playing banjo at 1958 Berkeley Folk Music Festival concert']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: b172fba8-13d4-4e57-a8b0-fb9286843226\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['4.75 inches (height) x 6.75 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: b172fba8-13d4-4e57-a8b0-fb9286843226\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B14_F07_023\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/ebfa78a6-53e0-4291-8f3a-575439d62431\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner playing banjo at 1958 Berkeley Folk Music Festival concert']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: ebfa78a6-53e0-4291-8f3a-575439d62431\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['4.75 inches (height) x 6.75 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: ebfa78a6-53e0-4291-8f3a-575439d62431\n", - "\n", - "Content: Berkeley Folk Music Festival performer\n", - "Metadata:\n", - " accession_number: BFMF_B16_F06_019_004n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: []\n", - " date_created: ['June 23, 1965 to June 27, 1965']\n", - " date_created_edtf: ['1965-06-23/1965-06-27']\n", - " description: ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: 33fa709b-4e05-479d-8e8f-0a5dc13b6ac6\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['35 mm']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164235', 'label': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (8th : 1965 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164235|TOPICAL|Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6/thumbnail\n", - " title: Berkeley Folk Music Festival performer\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 33fa709b-4e05-479d-8e8f-0a5dc13b6ac6\n", - "\n", - "Content: Berkeley Folk Music Festival performer\n", - "Metadata:\n", - " accession_number: BFMF_B16_F06_019_001n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/bd47d447-5f87-4dae-88b7-6e96e083094b\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: []\n", - " date_created: ['June 23, 1965 to June 27, 1965']\n", - " date_created_edtf: ['1965-06-23/1965-06-27']\n", - " description: ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: bd47d447-5f87-4dae-88b7-6e96e083094b\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['35 mm']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164235', 'label': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (8th : 1965 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164235|TOPICAL|Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b/thumbnail\n", - " title: Berkeley Folk Music Festival performer\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: bd47d447-5f87-4dae-88b7-6e96e083094b\n", - "\n", - "Content: Berkeley Folk Music Festival performer\n", - "Metadata:\n", - " accession_number: BFMF_B16_F06_019_002n\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: []\n", - " date_created: ['June 23, 1965 to June 27, 1965']\n", - " date_created_edtf: ['1965-06-23/1965-06-27']\n", - " description: ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}]\n", - " id: eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['35 mm']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164235', 'label': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (8th : 1965 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164235|TOPICAL|Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2/thumbnail\n", - " title: Berkeley Folk Music Festival performer\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2\n", - "\n", - "Content: Audience at Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B17_F02_001\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/09b79516-1fdc-4cd5-8667-dfeefd0fca92\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: []\n", - " date_created: ['July 4, 1967']\n", - " date_created_edtf: ['1967-07-04']\n", - " description: ['Audience watching a performer at the Berkeley Folk Music Festival campfire in Eucalyptus Grove']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: 09b79516-1fdc-4cd5-8667-dfeefd0fca92\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: []\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'https://sws.geonames.org/5346984/', 'label': 'Eucalyptus Grove', 'variants': [], 'facet': 'https://sws.geonames.org/5346984/|GEOGRAPHICAL|Eucalyptus Grove (Geographical)', 'label_with_role': 'Eucalyptus Grove (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164237', 'label': 'Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.)', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018164237|TOPICAL|Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92/thumbnail\n", - " title: Audience at Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 09b79516-1fdc-4cd5-8667-dfeefd0fca92\n", - "\n", - "Content: Audience at 1968 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B17_F03_009s\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/c45a76c9-adcc-42b3-9193-0e4da5b14a17\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}]\n", - " date_created: ['July 4, 1968']\n", - " date_created_edtf: ['1968-07-04']\n", - " description: ['People dancing in Sproul Plaza as Shlomo Carlebach performs on stage during the 1968 Berkeley Folk Music Festival']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128366', 'label': 'color slides', 'variants': ['color slide', 'slides, color', 'diapositivas en color', 'colour slide', 'slides, colour', 'kleurendia', 'diapositive couleur (slide)', 'diapositive en couleur (color slide)', 'diapositive en couleurs (color slides)', 'diapositives couleur (color slide)', 'diapositives en couleurs (color slides)', 'Farbdias', 'diapositiva en color'], 'facet': 'http://vocab.getty.edu/aat/300128366||color slides'}]\n", - " id: c45a76c9-adcc-42b3-9193-0e4da5b14a17\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: []\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Geographical', 'id': 'https://sws.geonames.org/5398331/', 'label': 'Sproul Plaza', 'variants': [], 'facet': 'https://sws.geonames.org/5398331/|GEOGRAPHICAL|Sproul Plaza (Geographical)', 'label_with_role': 'Sproul Plaza (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n94014518', 'label': 'Carlebach, Shlomo, 1925-1994', 'variants': ['Ḳarlibakh, Shelomoh, 1925-1994', 'קרליבך, שלמה', 'קרליבך, שלמה בן נפתלי'], 'facet': 'http://id.loc.gov/authorities/names/n94014518|TOPICAL|Carlebach, Shlomo, 1925-1994 (Topical)', 'label_with_role': 'Carlebach, Shlomo, 1925-1994 (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164238', 'label': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)', 'variants': ['A.S.U.C. Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164238|TOPICAL|Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17/thumbnail\n", - " title: Audience at 1968 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: c45a76c9-adcc-42b3-9193-0e4da5b14a17\n", - "\n", - "Content: 1970 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B17_F05_023\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/8562d006-4c78-4033-8a83-75fab0b7a4c1\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Contributor', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|ctb|Berkeley Folk Music Festival (Contributor)', 'label_with_role': 'Berkeley Folk Music Festival (Contributor)'}, {'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/n80086600', 'label': 'Bishop, John Melville', 'variants': ['Bishop, John (John Melville)'], 'facet': 'http://id.loc.gov/authorities/names/n80086600|pht|Bishop, John Melville (Photographer)', 'label_with_role': 'Bishop, John Melville (Photographer)'}]\n", - " date_created: ['October 9, 1970']\n", - " date_created_edtf: ['1970-10-09']\n", - " description: ['Guitar player in silhouette at the Friday night concert in Pauley Ballroom during the 1970 Berkeley Folk Music Festival']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: 8562d006-4c78-4033-8a83-75fab0b7a4c1\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: []\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/no2018001224', 'label': 'Pauley Ballroom (Berkeley, Calif.)', 'variants': ['University of California, Berkeley. Pauley Ballroom (Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018001224|GEOGRAPHICAL|Pauley Ballroom (Berkeley, Calif.) (Geographical)', 'label_with_role': 'Pauley Ballroom (Berkeley, Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164123', 'label': 'Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.)', 'variants': ['ASUC-SUPERB Bekeley Folk Music Festival (15th : 1970 : Berkeley, Calif.)', 'Berkeley Folk Festival (15th : 1970 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164123|TOPICAL|Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.) (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1/thumbnail\n", - " title: 1970 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 8562d006-4c78-4033-8a83-75fab0b7a4c1\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B12_F17_021\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/d507f114-21ac-489a-bfb5-ac55c09ded9b\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Contributor', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|ctb|Berkeley Folk Music Festival (Contributor)', 'label_with_role': 'Berkeley Folk Music Festival (Contributor)'}, {'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner on stage with banjo at the Berkeley Folk Music Festival']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: d507f114-21ac-489a-bfb5-ac55c09ded9b\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['10 inches (height) x 8 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: d507f114-21ac-489a-bfb5-ac55c09ded9b\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B14_F07_037\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/7ae4237d-3846-400e-a140-e70588a44118\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner, gesturing on stage at 1958 Berkeley Folk Music Festival workshop']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: 7ae4237d-3846-400e-a140-e70588a44118\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['6.75 inches (height) x 4.75 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: 7ae4237d-3846-400e-a140-e70588a44118\n", - "\n", - "Content: Frank Warner, 1958 Berkeley Folk Music Festival\n", - "Metadata:\n", - " accession_number: BFMF_B14_F07_036\n", - " alternate_title: []\n", - " api_link: https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4\n", - " canonical_link: https://dc.rdc-staging.library.northwestern.edu/items/e6ca8586-aacf-4254-829a-8748cdbf98b4\n", - " caption: []\n", - " collection: {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}\n", - " contributor: [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}]\n", - " date_created: ['June 27, 1958 to June 30, 1958']\n", - " date_created_edtf: ['1958-06-27/1958-06-30']\n", - " description: ['Frank Warner, gesturing on stage at 1958 Berkeley Folk Music Festival workshop']\n", - " genre: [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}]\n", - " id: e6ca8586-aacf-4254-829a-8748cdbf98b4\n", - " identifier: ['MS 63']\n", - " keywords: []\n", - " language: []\n", - " notes: []\n", - " physical_description_material: []\n", - " physical_description_size: ['6.75 inches (height) x 4.75 inches (width)']\n", - " provenance: []\n", - " publisher: []\n", - " rights_statement: {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}\n", - " subject: [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}]\n", - " table_of_contents: []\n", - " thumbnail: https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4/thumbnail\n", - " title: Frank Warner, 1958 Berkeley Folk Music Festival\n", - " visibility: Public\n", - " work_type: Image\n", - "Source: e6ca8586-aacf-4254-829a-8748cdbf98b4\n", - "\n", - "Question:\n", - "Who played at the Berkeley Folk Music Festival?\n", - "\u001b[0m\n", - "\n", - "\u001b[1m> Finished chain.\u001b[0m\n", - "\n", - "\u001b[1m> Finished chain.\u001b[0m\n" - ] - } - ], - "source": [ - "response = config.chain({\"question\": config.question, \"input_documents\": docs})" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'question': 'Who played at the Berkeley Folk Music Festival?',\n", - " 'input_documents': [Document(page_content='5f568c9b-68dd-46bf-9932-1a5ea749707a', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164233', 'label': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'University of California Folk Music Festival (6th : 1963 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164233|TOPICAL|Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T17:11:25.447402', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '5f568c9b-68dd-46bf-9932-1a5ea749707a', 'create_date': '2021-03-16T02:39:35.409918Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a/thumbnail', 'style_period': [], 'box_number': ['15'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1963'], 'modified_date': '2023-03-27T23:00:26.372684Z', 'accession_number': 'BFMF_B15_F08_012_016n', 'license': None, 'date_created_edtf': ['1963-06-26/1963-06-30'], 'physical_description_size': ['35 mm'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B15_F08_012_016n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B15_F08_012_016n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B15_F08_012_016n_am.tif', 'mime_type': 'image/tiff', 'width': 3155, 'rank': 0, 'id': '98df9441-38f5-45fa-be76-cdb0d222b6bc', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/98df9441-38f5-45fa-be76-cdb0d222b6bc', 'height': 4577}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Performer at Berkeley Folk Music Festival', 'label': 'Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B15_F08_012_016n_pm', 'duration': None, 'original_filename': 'BFMF_B15_F08_012_016n_pm.tif', 'mime_type': 'image/tiff', 'width': 3155, 'rank': 0, 'id': 'cdb069da-fa35-4286-9cee-53d82defa759', 'representative_image_url': None, 'height': 4577}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.'], 'csv_metadata_update_jobs': ['3b4ea97f-54f8-43a1-b027-d600b9673684', '64502329-9646-4bcb-a659-fb6e96277a19'], 'title': 'Performer at Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['8'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2008123907', 'label': 'Hart, Kelly, 1943-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2008123907|pht|Hart, Kelly, 1943- (Photographer)', 'label_with_role': 'Hart, Kelly, 1943- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/5f568c9b-68dd-46bf-9932-1a5ea749707a', 'ark': 'ark:/81985/n2k35mz6g', 'embedding': [0.08187398, 0.020054018, -0.004525509, -0.03460122, -0.052327555, 0.071026854, 0.021957992, -0.022767289, 0.035677455, 0.013183619, 0.06457894, -0.0038613463, 0.050124712, -0.030404862, 0.008145211, 0.0552279, 0.0040066587, 0.0032300008, 0.07954551, 0.0021417097, 0.036747087, 0.06735623, -0.062173855, 0.020278193, -0.012667496, -0.077289134, -0.0031731934, 0.04115368, -0.06841318, 0.017220793, 0.030320916, 0.02892829, 0.062904336, -0.00047726862, -0.0902727, 0.0177002, 0.0072724633, -0.0025098382, -0.103398025, 0.0515896, -0.042487785, 0.011569028, -0.045057338, -0.0047315485, -0.033876434, -0.075212665, -0.027637651, -0.043167163, -0.020871218, -0.013129355, -0.0008187266, 0.05047002, 0.044630487, -0.036237795, -0.071114354, -0.0650427, 0.020783857, 0.06322547, 0.017550234, -0.0033980885, -0.016154723, -0.088628404, -0.083459504, -0.0061430642, -0.044624545, -0.0028636393, 0.09672082, -0.07551703, 0.039661143, -0.051708244, 0.014505407, 0.013817172, 0.0065768, -0.063748635, 0.059438862, 0.081807636, 0.0075502554, -0.04122197, 0.019418621, -0.1329627, -0.0015899958, 0.0018256587, 0.005326857, -0.060559794, -0.043567635, 0.009528929, -0.01693959, 0.019246068, -0.03649707, 0.030307546, -0.11592236, 0.017098907, -0.06783197, -0.117551625, 0.06704777, 0.023197958, 0.015799012, 0.023423897, 0.08280634, 0.094868466, -0.025214432, 0.07727987, -0.0477216, 0.08744553, 0.025356302, -0.088663355, 0.022749107, 0.021608455, -0.05871795, 0.039312553, 0.034504782, -0.069906905, 0.032171518, 0.046607506, 0.033845596, 0.111180894, -0.018001035, 0.094384275, -0.033495557, 0.032291178, -0.07936913, 0.04289323, -0.008067153, 0.028651897, -0.07948385, 0.07013656, 0.019345436, 0.0388477, 0.0144159505, -0.013266792, 0.019799082, -0.059902284, 0.066712834, -0.006409976, -0.046840232, -0.029322585, 0.009712665, 0.029404402, 0.13123503, -0.035570998, 0.0835146, 0.03612596, -0.08312706, 0.007380803, 0.045344237, -0.07263495, -0.041127983, -0.04956497, -0.0369965, -0.0027229378, -0.0037168416, -0.036675707, -0.04018217, 0.071495816, 0.049069803, 0.071828835, 0.07855054, -0.007983535, -0.011630261, 0.037786886, 0.07661593, 0.0063873027, 0.03526118, 0.036528174, -0.011476921, 0.015908366, -0.00091100624, -0.029194219, 0.04036854, -0.014776683, 0.016264142, 0.048069745, -0.045922674, 0.06929173, 0.04563051, 0.0017182794, 0.02841895, -0.051056273, -0.025583984, 0.030884506, -0.011436273, 0.024258768, 0.02543528, 0.01142062, -0.041376617, -0.053169493, -0.043282628, -0.0304079, 0.04205167, 0.0673198, -0.0004229804, -0.033710133, -0.0038690695, -0.04452101, -0.038623113, -0.030294975, 0.015853448, -0.12944244, 0.08721764, 0.028158614, -0.037259154, -0.06293826, -0.046873912, 0.05705327, -0.06421325, -0.00658879, 0.00025615064, 0.061423894, -0.0013113202, 0.023822179, -0.004353294, -0.03142434, -0.0014137733, -0.03603059, 0.012826805, -0.050632395, -0.017170958, -0.05081778, -0.07353857, 0.04579782, 0.0067533436, -0.03452857, -0.09926053, -0.023832565, -0.021971123, 0.11274416, 0.025434522, 0.0019253436, 0.0055722483, 0.11415101, -0.04544904, 0.12077289, 0.05852338, -0.010265943, 0.04666138, 0.03823143, 0.05700255, -0.099829584, 0.024113148, -0.0226894, -0.055144556, 0.06328885, -0.03369352, 0.041067548, 0.021293664, 0.00010457092, -0.07960419, 0.07823188, -0.041058812, -0.011202418, 0.11451361, 0.0041443114, -0.11008606, -0.02540133, 0.0378359, -0.022380104, -0.030004129, -0.07565099, 0.03603059, 0.01759834, -0.030521708, -0.02221953, -0.029270194, -0.03938303, 0.014654272, 0.006047976, 0.056191336, 0.059009038, -0.048250698, -0.053487815, -0.06992354, 0.019829223, 0.029118996, -0.04636917, -0.084389575, -0.04092124, 0.02787444, -0.016079945, -0.024326824, 0.039747894, -0.020730758, 0.033559177, 0.087817736, 0.1415139, -0.076893166, 0.06477685, -0.029832024, -0.10300482, -0.0024255551, 0.07825691, 0.013142449, 0.11562883, -0.0021103725, 0.007570931, 0.06280795, 0.06550496, -0.02820366, 0.032380402, -0.04126902, 0.009999601, -0.04035715, 0.060549885, -0.017735424, -0.018328935, 0.053566262, -0.035935417, -0.070286795, -0.02517263, 0.016775131, 0.0063635125, 0.039469767, -0.02731375, -0.03021709, 0.0660504, 0.056661565, -0.03795847, -0.023174621, -0.029900288, 0.019481642, -0.018244991, -0.004195129, -0.0014409794, -0.023430025, -0.015165632, 0.09286525, 0.044592824, 0.043882642, -0.121941954, -0.13179362, 0.020273823, -0.107292764, -0.10543515, -0.030916294, 0.05844728, 0.07426359, -0.061694782, 0.047691222, -0.034431793, -0.020113574, -0.06603252, -0.05129271, -0.0053728134, 0.058790147, -0.07047887, -0.052154973, -0.049602397, 0.03585971, -0.041542657, -0.04027814, -0.058492165, 0.012475545, 0.07515188, -0.042453364, -0.043690432, 0.032430682, 0.008715734, -0.073479265, -0.06665592, -0.028711222, 0.11657846, -0.013143319, 0.027722629, 0.026671564, 0.039630104, -0.02576338, 0.002131763, 0.0046554655, 0.0630921, 0.021558475, 0.068106204, 0.0372313, -0.012863118, 0.005110845, -0.011737295, 0.042323228, 0.040042672, -0.021420553, 0.038900543, -0.023741635, 0.047963854, 0.009826817, -0.04865246, -0.055775825, -0.0501163], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 26, 1963 to June 30, 1963'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.68931, 'id': '98df9441-38f5-45fa-be76-cdb0d222b6bc', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/98df9441-38f5-45fa-be76-cdb0d222b6bc'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/5f568c9b-68dd-46bf-9932-1a5ea749707a', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='38271495-8441-4f76-a146-c35e4b164303', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164233', 'label': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'University of California Folk Music Festival (6th : 1963 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164233|TOPICAL|Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T15:29:28.257321', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '38271495-8441-4f76-a146-c35e4b164303', 'create_date': '2021-03-15T19:12:13.036913Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303/thumbnail', 'style_period': [], 'box_number': ['15'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1963'], 'modified_date': '2023-03-27T22:12:21.667467Z', 'accession_number': 'BFMF_B15_F08_012_024n', 'license': None, 'date_created_edtf': ['1963-06-26/1963-06-30'], 'physical_description_size': ['35 mm'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B15_F08_012_024n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B15_F08_012_024n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B15_F08_012_024n_am.tif', 'mime_type': 'image/tiff', 'width': 3071, 'rank': 0, 'id': 'c1f97acf-f98d-4f0c-8fb1-71df68fcbc72', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/c1f97acf-f98d-4f0c-8fb1-71df68fcbc72', 'height': 4577}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Performer at Berkeley Folk Music Festival', 'label': 'Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B15_F08_012_024n_pm', 'duration': None, 'original_filename': 'BFMF_B15_F08_012_024n_pm.tif', 'mime_type': 'image/tiff', 'width': 3071, 'rank': 0, 'id': '1455411e-6250-4742-bdf9-143ef5b59b24', 'representative_image_url': None, 'height': 4577}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Man singing and playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Performer at Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['8'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2008123907', 'label': 'Hart, Kelly, 1943-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2008123907|pht|Hart, Kelly, 1943- (Photographer)', 'label_with_role': 'Hart, Kelly, 1943- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/38271495-8441-4f76-a146-c35e4b164303', 'ark': 'ark:/81985/n2j38m274', 'embedding': [0.08187398, 0.020054018, -0.004525509, -0.03460122, -0.052327555, 0.071026854, 0.021957992, -0.022767289, 0.035677455, 0.013183619, 0.06457894, -0.0038613463, 0.050124712, -0.030404862, 0.008145211, 0.0552279, 0.0040066587, 0.0032300008, 0.07954551, 0.0021417097, 0.036747087, 0.06735623, -0.062173855, 0.020278193, -0.012667496, -0.077289134, -0.0031731934, 0.04115368, -0.06841318, 0.017220793, 0.030320916, 0.02892829, 0.062904336, -0.00047726862, -0.0902727, 0.0177002, 0.0072724633, -0.0025098382, -0.103398025, 0.0515896, -0.042487785, 0.011569028, -0.045057338, -0.0047315485, -0.033876434, -0.075212665, -0.027637651, -0.043167163, -0.020871218, -0.013129355, -0.0008187266, 0.05047002, 0.044630487, -0.036237795, -0.071114354, -0.0650427, 0.020783857, 0.06322547, 0.017550234, -0.0033980885, -0.016154723, -0.088628404, -0.083459504, -0.0061430642, -0.044624545, -0.0028636393, 0.09672082, -0.07551703, 0.039661143, -0.051708244, 0.014505407, 0.013817172, 0.0065768, -0.063748635, 0.059438862, 0.081807636, 0.0075502554, -0.04122197, 0.019418621, -0.1329627, -0.0015899958, 0.0018256587, 0.005326857, -0.060559794, -0.043567635, 0.009528929, -0.01693959, 0.019246068, -0.03649707, 0.030307546, -0.11592236, 0.017098907, -0.06783197, -0.117551625, 0.06704777, 0.023197958, 0.015799012, 0.023423897, 0.08280634, 0.094868466, -0.025214432, 0.07727987, -0.0477216, 0.08744553, 0.025356302, -0.088663355, 0.022749107, 0.021608455, -0.05871795, 0.039312553, 0.034504782, -0.069906905, 0.032171518, 0.046607506, 0.033845596, 0.111180894, -0.018001035, 0.094384275, -0.033495557, 0.032291178, -0.07936913, 0.04289323, -0.008067153, 0.028651897, -0.07948385, 0.07013656, 0.019345436, 0.0388477, 0.0144159505, -0.013266792, 0.019799082, -0.059902284, 0.066712834, -0.006409976, -0.046840232, -0.029322585, 0.009712665, 0.029404402, 0.13123503, -0.035570998, 0.0835146, 0.03612596, -0.08312706, 0.007380803, 0.045344237, -0.07263495, -0.041127983, -0.04956497, -0.0369965, -0.0027229378, -0.0037168416, -0.036675707, -0.04018217, 0.071495816, 0.049069803, 0.071828835, 0.07855054, -0.007983535, -0.011630261, 0.037786886, 0.07661593, 0.0063873027, 0.03526118, 0.036528174, -0.011476921, 0.015908366, -0.00091100624, -0.029194219, 0.04036854, -0.014776683, 0.016264142, 0.048069745, -0.045922674, 0.06929173, 0.04563051, 0.0017182794, 0.02841895, -0.051056273, -0.025583984, 0.030884506, -0.011436273, 0.024258768, 0.02543528, 0.01142062, -0.041376617, -0.053169493, -0.043282628, -0.0304079, 0.04205167, 0.0673198, -0.0004229804, -0.033710133, -0.0038690695, -0.04452101, -0.038623113, -0.030294975, 0.015853448, -0.12944244, 0.08721764, 0.028158614, -0.037259154, -0.06293826, -0.046873912, 0.05705327, -0.06421325, -0.00658879, 0.00025615064, 0.061423894, -0.0013113202, 0.023822179, -0.004353294, -0.03142434, -0.0014137733, -0.03603059, 0.012826805, -0.050632395, -0.017170958, -0.05081778, -0.07353857, 0.04579782, 0.0067533436, -0.03452857, -0.09926053, -0.023832565, -0.021971123, 0.11274416, 0.025434522, 0.0019253436, 0.0055722483, 0.11415101, -0.04544904, 0.12077289, 0.05852338, -0.010265943, 0.04666138, 0.03823143, 0.05700255, -0.099829584, 0.024113148, -0.0226894, -0.055144556, 0.06328885, -0.03369352, 0.041067548, 0.021293664, 0.00010457092, -0.07960419, 0.07823188, -0.041058812, -0.011202418, 0.11451361, 0.0041443114, -0.11008606, -0.02540133, 0.0378359, -0.022380104, -0.030004129, -0.07565099, 0.03603059, 0.01759834, -0.030521708, -0.02221953, -0.029270194, -0.03938303, 0.014654272, 0.006047976, 0.056191336, 0.059009038, -0.048250698, -0.053487815, -0.06992354, 0.019829223, 0.029118996, -0.04636917, -0.084389575, -0.04092124, 0.02787444, -0.016079945, -0.024326824, 0.039747894, -0.020730758, 0.033559177, 0.087817736, 0.1415139, -0.076893166, 0.06477685, -0.029832024, -0.10300482, -0.0024255551, 0.07825691, 0.013142449, 0.11562883, -0.0021103725, 0.007570931, 0.06280795, 0.06550496, -0.02820366, 0.032380402, -0.04126902, 0.009999601, -0.04035715, 0.060549885, -0.017735424, -0.018328935, 0.053566262, -0.035935417, -0.070286795, -0.02517263, 0.016775131, 0.0063635125, 0.039469767, -0.02731375, -0.03021709, 0.0660504, 0.056661565, -0.03795847, -0.023174621, -0.029900288, 0.019481642, -0.018244991, -0.004195129, -0.0014409794, -0.023430025, -0.015165632, 0.09286525, 0.044592824, 0.043882642, -0.121941954, -0.13179362, 0.020273823, -0.107292764, -0.10543515, -0.030916294, 0.05844728, 0.07426359, -0.061694782, 0.047691222, -0.034431793, -0.020113574, -0.06603252, -0.05129271, -0.0053728134, 0.058790147, -0.07047887, -0.052154973, -0.049602397, 0.03585971, -0.041542657, -0.04027814, -0.058492165, 0.012475545, 0.07515188, -0.042453364, -0.043690432, 0.032430682, 0.008715734, -0.073479265, -0.06665592, -0.028711222, 0.11657846, -0.013143319, 0.027722629, 0.026671564, 0.039630104, -0.02576338, 0.002131763, 0.0046554655, 0.0630921, 0.021558475, 0.068106204, 0.0372313, -0.012863118, 0.005110845, -0.011737295, 0.042323228, 0.040042672, -0.021420553, 0.038900543, -0.023741635, 0.047963854, 0.009826817, -0.04865246, -0.055775825, -0.0501163], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 26, 1963 to June 30, 1963'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.67096, 'id': 'c1f97acf-f98d-4f0c-8fb1-71df68fcbc72', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/c1f97acf-f98d-4f0c-8fb1-71df68fcbc72'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/38271495-8441-4f76-a146-c35e4b164303', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='fb2236cf-0d19-493e-a605-52c2b0235aec', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164233', 'label': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (6th : 1963 : Berkeley, Calif.)', 'University of California Folk Music Festival (6th : 1963 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164233|TOPICAL|Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (6th : 1963 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T17:10:56.151782', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'fb2236cf-0d19-493e-a605-52c2b0235aec', 'create_date': '2021-03-16T22:43:29.827493Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec/thumbnail', 'style_period': [], 'box_number': ['15'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1963'], 'modified_date': '2023-03-27T22:03:33.248344Z', 'accession_number': 'BFMF_B15_F08_012_015n', 'license': None, 'date_created_edtf': ['1963-06-26/1963-06-30'], 'physical_description_size': ['35 mm'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B15_F08_012_015n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B15_F08_012_015n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B15_F08_012_015n_am.tif', 'mime_type': 'image/tiff', 'width': 3157, 'rank': 0, 'id': '8dee24bc-d6d3-4921-a94d-5fb78a1ab30a', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/8dee24bc-d6d3-4921-a94d-5fb78a1ab30a', 'height': 4748}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Performer at Berkeley Folk Music Festival', 'label': 'Man playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B15_F08_012_015n_pm', 'duration': None, 'original_filename': 'BFMF_B15_F08_012_015n_pm.tif', 'mime_type': 'image/tiff', 'width': 3157, 'rank': 0, 'id': '57338f08-f1e6-48f8-adeb-fd3c221f77c1', 'representative_image_url': None, 'height': 4748}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Man playing guitar on stage at the Berkeley Folk Music Festival. Digital image scanned from black and white negative.'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Performer at Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['8'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2008123907', 'label': 'Hart, Kelly, 1943-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2008123907|pht|Hart, Kelly, 1943- (Photographer)', 'label_with_role': 'Hart, Kelly, 1943- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb2236cf-0d19-493e-a605-52c2b0235aec', 'ark': 'ark:/81985/n2pv6bs0x', 'embedding': [0.07215425, 0.02364452, -0.011198754, -0.03656644, -0.056311425, 0.078742385, 0.018974414, -0.016460717, 0.0337372, 0.019015191, 0.05616243, -0.0044101975, 0.04280946, -0.026787253, 0.0022659756, 0.04501164, 0.0043618996, -0.0052230875, 0.071068525, 0.0041772644, 0.031079782, 0.07305631, -0.07117291, 0.01621476, -0.016867276, -0.07762917, 0.011758079, 0.043757986, -0.07009091, 0.017169984, 0.028763376, 0.0341803, 0.047373828, -0.0021729362, -0.08928286, 0.013019743, -0.0017262516, 0.004540128, -0.106716014, 0.049163576, -0.040060513, 0.00316161, -0.046064813, 0.0041514887, -0.026148295, -0.09133682, -0.02968411, -0.048685268, -0.01830697, -0.009953895, 0.0011106235, 0.06171569, 0.037811633, -0.036263127, -0.06104413, -0.06312863, 0.012790538, 0.069173105, 0.02330139, -0.004720796, -0.0005460749, -0.092389114, -0.08519474, -0.008388683, -0.051090088, -0.0043736612, 0.09997096, -0.07944922, 0.037254702, -0.04211448, 0.0048828702, 0.013011524, 0.015543223, -0.06854103, 0.050497837, 0.07611016, 0.009267213, -0.047411237, 0.024077635, -0.12282041, -0.0023634327, 0.003909383, 0.0048170914, -0.063691825, -0.051839154, 0.010662986, -0.01936252, 0.018245902, -0.025701093, 0.022624472, -0.098316334, 0.021876661, -0.071609184, -0.1233754, 0.0612966, 0.021777079, 0.009635651, 0.024604576, 0.07474888, 0.09859266, -0.044183973, 0.0683769, -0.056723915, 0.10754123, 0.022859138, -0.0759589, 0.010952094, 0.020320758, -0.057480633, 0.042166173, 0.040945284, -0.059972253, 0.02395408, 0.049863774, 0.036361024, 0.11321916, -0.021992894, 0.07965447, -0.028784867, 0.031291787, -0.081948176, 0.027288778, -0.0021826548, 0.028540693, -0.07553766, 0.0720138, 0.017048, 0.048759293, 0.0016835608, -0.017108291, 0.014161281, -0.05799965, 0.069629334, -0.008164336, -0.048313998, -0.017616639, -0.001691764, 0.03762309, 0.14013991, -0.020662628, 0.071434096, 0.041799996, -0.076477416, 0.007041666, 0.053893853, -0.07744251, -0.0350201, -0.060737886, -0.050497655, 0.0014947023, -0.0022518733, -0.0422331, -0.03493301, 0.075892396, 0.05863614, 0.07168442, 0.08437262, -0.013588496, -0.0028894825, 0.029565787, 0.071313746, -0.002253255, 0.054244846, 0.041583378, -0.019303761, 0.014869938, 0.0010337825, -0.043181583, 0.045631107, -0.01417527, 0.010922717, 0.044948436, -0.041309003, 0.0591407, 0.039836895, 0.0062337513, 0.03271998, -0.053497307, -0.021405203, 0.04596585, -0.004616803, 0.025479605, 0.028886475, 0.010926297, -0.04440956, -0.04807045, -0.035296313, -0.019121194, 0.036027312, 0.056185193, -0.0037870966, -0.026378088, 0.0035755818, -0.04174669, -0.039528742, -0.033834092, 0.009194754, -0.13492341, 0.087573744, 0.037506264, -0.034543604, -0.06374098, -0.034924988, 0.058804482, -0.07317888, -0.0010289075, 0.0031448128, 0.048334572, -0.011974625, 0.013523913, 0.00066266785, -0.03742606, -0.029869614, -0.043403327, 0.008094206, -0.032276567, -0.012951704, -0.07379607, -0.07217741, 0.059110694, 0.0033378825, -0.03245483, -0.09067242, -0.018915169, -0.03162411, 0.09561529, 0.018699171, 0.012407944, 0.0146466745, 0.10431469, -0.05431476, 0.11771271, 0.059389107, -0.0072260555, 0.045045197, 0.04529704, 0.054985877, -0.11358418, 0.037156824, -0.023811447, -0.05974524, 0.056769103, -0.04301452, 0.03919256, 0.027101118, 0.010915589, -0.071046904, 0.07603089, -0.03703794, -0.011356035, 0.11733452, 0.008323661, -0.113737255, -0.0069383904, 0.048316084, -0.034000106, -0.023370178, -0.08290087, 0.045127075, 0.026499797, -0.038508434, -0.017742813, -0.019894361, -0.038043395, 0.015027952, 0.009110303, 0.05749208, 0.049003758, -0.060122594, -0.052170053, -0.06530302, 0.018247975, 0.04163006, -0.06827284, -0.07990061, -0.03629808, 0.034883775, -0.010080121, -0.019311562, 0.055387184, -0.01280877, 0.03515372, 0.09771138, 0.15765403, -0.07724713, 0.068961866, -0.029846694, -0.108338565, -0.0029108936, 0.06724361, -0.0015428663, 0.12294954, -0.009974083, 0.012111864, 0.05526836, 0.06282417, -0.028020367, 0.025825739, -0.03734853, 0.0010401644, -0.02429647, 0.07050787, -0.020074215, -0.0124233095, 0.057174917, -0.026829649, -0.06340945, -0.023188645, 0.0015815805, 0.003771889, 0.04690492, -0.029189778, -0.023922872, 0.06790255, 0.053421535, -0.04684652, -0.028193833, -0.034967814, 0.01706828, -0.009027205, 0.008726054, -0.00020717483, -0.020066842, -0.014830851, 0.08605141, 0.04141878, 0.0423502, -0.116270825, -0.13046177, 0.018614732, -0.09831026, -0.107985824, -0.023997871, 0.058670152, 0.07457557, -0.05863169, 0.04704127, -0.036283072, -0.020378161, -0.052797344, -0.0486216, -0.012440773, 0.0731367, -0.06605888, -0.04475323, -0.055433493, 0.029757246, -0.043884154, -0.01334334, -0.0458298, 0.011880906, 0.08133166, -0.03956988, -0.036631525, 0.03891774, 0.01243692, -0.07214241, -0.06742005, -0.034844182, 0.11678964, -0.021603517, 0.0265344, 0.027604524, 0.04444044, -0.035546, -0.009988767, 0.00062172493, 0.05680115, 0.011371414, 0.060625844, 0.03055796, -0.0023517574, 0.0058452794, -0.017989717, 0.045641422, 0.020985736, -0.024192903, 0.034705274, -0.017244557, 0.0364734, -0.0010525105, -0.052467387, -0.05864681, -0.04490248], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 26, 1963 to June 30, 1963'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.66491, 'id': '8dee24bc-d6d3-4921-a94d-5fb78a1ab30a', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/8dee24bc-d6d3-4921-a94d-5fb78a1ab30a'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/fb2236cf-0d19-493e-a605-52c2b0235aec', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='8e1da339-4591-46d9-92e9-e2552e682886', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:45:25.075776', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '8e1da339-4591-46d9-92e9-e2552e682886', 'create_date': '2021-03-16T06:01:45.567141Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886/thumbnail', 'style_period': [], 'box_number': ['14'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1958 (P. Olivier)'], 'modified_date': '2023-03-27T23:45:26.127905Z', 'accession_number': 'BFMF_B14_F07_032', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['4.5 inches (height) x 3.5 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_032_donut_01', 'duration': None, 'original_filename': 'BFMF_B14_F07_032a.tif', 'mime_type': 'image/tiff', 'width': 2052, 'rank': 0, 'id': '3df8cab2-a13e-464a-b37e-fd2ce6b19702', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/3df8cab2-a13e-464a-b37e-fd2ce6b19702', 'height': 2065}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_032_donut_02', 'duration': None, 'original_filename': 'BFMF_B14_F07_032b.tif', 'mime_type': 'image/tiff', 'width': 2040, 'rank': 1073741824, 'id': 'bdab235c-d4ac-4d4a-a1ed-47be1abfb64d', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/bdab235c-d4ac-4d4a-a1ed-47be1abfb64d', 'height': 2084}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner singing and playing banjo at 1958 Berkeley Folk Music Festival concert'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['7'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e1da339-4591-46d9-92e9-e2552e682886', 'ark': 'ark:/81985/n2fq9qm6q', 'embedding': [0.08913172, 0.0041649938, 0.017636513, -0.045575548, -0.035158183, 0.108172975, -0.0246471, -0.017936047, 0.038586125, -0.006835621, 0.079682484, -0.025086146, 0.055764414, -0.024973137, -0.022806184, 0.0547159, -0.00411084, -0.016605003, 0.011109915, 0.028734481, -0.0019506284, 0.017877959, -0.0337853, 0.00036937525, -0.021852879, -0.059273396, -0.064219214, 0.03692066, -0.04858405, 0.011715804, 0.043747738, 0.05549999, 0.09897097, -0.0012528752, -0.09625303, 0.05250197, 0.00064939953, -0.03243562, -0.06534348, 0.08004121, -0.028718762, 0.05423963, -0.028174734, -0.031326618, -0.0025996182, -0.037407335, -0.014513186, 0.003481907, -0.008788555, -0.009105949, -0.004784085, 0.031421386, 0.029574933, -0.064019, -0.04004235, -0.037947796, 0.015367038, 0.07601738, 0.04412882, 0.025866816, -0.029614074, -0.073501974, -0.07796723, 0.02263328, -0.062130287, 0.006306354, 0.06828181, -0.050477766, -0.010822156, -0.040222354, 0.028223267, 0.02038758, -0.034279086, -0.0852972, 0.04812769, 0.08838662, -0.02998984, -0.062195055, -0.030466799, -0.10667302, -0.01247101, -0.017477348, -0.0011591371, -0.09535678, -0.051576894, -0.013472067, -0.048312273, -0.010661179, -0.060358923, 0.0010056135, -0.08586497, -0.014897064, -0.08538968, -0.08399008, 0.020376815, 0.058176234, 0.013727911, -0.013134874, 0.09004549, 0.06347549, -0.018179247, 0.06497199, -0.074492194, 0.047519203, -0.001188629, -0.07818393, -0.005161407, 0.044445876, -0.01162054, 0.047640942, 0.05402606, -0.060167696, 0.035589233, 0.059045844, 0.10986362, 0.05184872, -0.03647493, 0.07033326, 0.008428311, 0.0038445403, -0.05478022, 0.049210124, 0.02143079, 0.0026415105, -0.11151333, 0.059438575, 0.022785345, 0.06526849, 0.008169349, 0.0023596326, 0.031653922, -0.039810974, 0.039679077, -0.03774645, -0.020098275, 0.013932245, -0.011344794, 0.029994367, 0.103409074, -0.020284133, 0.067869276, 0.016159477, -0.02542051, 0.012051771, 0.03549348, -0.05645184, -0.016472617, -0.025447149, -0.033998426, 0.014654652, 0.021214955, -0.053202413, -0.040116973, 0.0041028066, 0.045679193, 0.04149278, 0.11380067, 0.013507676, -0.00882478, 0.018962644, 0.05791728, 0.0025743993, 0.05490079, 0.014654297, -0.02152687, -0.0036383737, 0.0016444303, -0.10087509, 0.00972449, -0.014700954, -0.03373968, 0.040738955, -0.035792608, 0.11397787, 0.037592247, -0.022461336, -0.0048999023, -0.032412626, -0.0064618005, 0.034831923, 0.0177466, 0.02480255, 0.017839529, -0.013768957, -0.030753111, -0.028598942, 0.004037409, -0.0027376527, 0.062497217, 0.08515869, 0.001286047, -0.010282591, -0.044739887, -0.061590903, -0.02104012, 0.00623389, 0.059309717, -0.09511176, 0.057136025, 0.012105497, -0.07106791, -0.06622057, -0.057037197, 0.042335875, -0.038480178, -0.042528126, 0.0023699591, 0.096139066, -0.016394034, 0.065015756, -0.035144325, -0.06936566, -0.03456241, -0.076368414, 0.008218291, -0.02467444, -0.03206662, -0.068244465, -0.07958187, 0.053578787, 0.031301245, -0.042424098, -0.09083506, -0.03469333, -0.017100511, 0.09963563, 0.037412804, -0.036735542, 0.034783762, 0.08647758, -0.061828863, 0.12636963, 0.060317278, -0.032165334, 0.038188808, 0.0027763469, 0.025154999, -0.096414894, 0.01015213, -0.022114228, -0.04964806, 0.044331394, 0.002615632, 0.016633654, 0.018576827, -0.014834733, -0.05941114, 0.061792478, -0.0051122145, -0.03203771, 0.06659517, 0.0020237057, -0.063104615, 0.0050150068, 0.029806338, -0.068263285, -0.013305379, -0.029433616, 0.02596949, 0.03356565, 0.021898586, -0.041216645, -0.01754942, -0.049709532, -0.01595724, -0.019004242, 0.051458497, 0.07355271, 0.0018717039, -0.045276117, -0.08271892, 0.028104912, -0.0179084, -0.06364448, -0.11715134, 0.0050474284, 0.007158963, -0.03381873, -0.018092485, 0.029995047, 0.030386554, 0.06689112, 0.080222376, 0.07562047, -0.09235914, 0.04286698, -0.021410247, -0.08671022, -0.01663282, 0.076670885, 0.06684856, 0.091133855, -0.08726866, 0.011942453, 0.063445084, 0.10239938, -0.024280906, 0.024045698, -0.12309065, 0.05897579, -0.014530967, 0.10235116, -0.04575254, 0.07421773, 0.01986665, 0.015257022, -0.05449927, 0.029240025, -0.015246805, -0.0023780428, 0.10729878, -0.039211724, -0.032558046, 0.08619318, 0.05986887, -0.086117126, 0.01660329, 0.03545, 0.055007912, 0.01271208, -0.0044646095, 0.018772896, -0.059441745, 0.012408046, 0.11142441, 0.06387311, 0.04168233, -0.06434157, -0.12838729, 0.053826008, -0.054059237, -0.051092703, 0.0018096782, 0.081237145, 0.034472916, -0.101971306, 0.008613415, -0.054992005, 0.0046561277, -0.03678162, -0.017554965, 0.00019365357, 0.07538845, -0.09371486, -0.053211644, -0.060901053, 0.013741197, -0.10067585, -0.059695687, -0.052680444, 0.033313308, 0.045272365, -0.09114027, -0.037695475, 0.033657786, 0.013228345, -0.11549352, -0.04847872, -0.032624453, 0.098026566, -0.016581517, -0.016230166, 0.04456251, 0.057511147, 0.056564853, 0.02527112, 0.039541744, 0.065342076, 0.04857289, 0.06037463, 0.006581818, 0.0033932633, -0.020598749, -0.0019754642, 0.020417474, 0.017766094, -0.032266036, 0.07093509, -0.054935455, 0.025604311, 0.013519077, -0.0055246516, -0.027265117, -0.06251932], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.9937, 'id': '3df8cab2-a13e-464a-b37e-fd2ce6b19702', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/3df8cab2-a13e-464a-b37e-fd2ce6b19702'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/8e1da339-4591-46d9-92e9-e2552e682886', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='8e65cb38-270e-4213-81a8-0b91b68d40a8', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|TOPICAL|Berkeley Folk Music Festival (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:41:14.785741', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '8e65cb38-270e-4213-81a8-0b91b68d40a8', 'create_date': '2021-03-16T06:03:00.052531Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8/thumbnail', 'style_period': [], 'box_number': ['17'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['File copies'], 'modified_date': '2023-03-27T22:56:46.589081Z', 'accession_number': 'BFMF_B17_F14_032', 'license': None, 'date_created_edtf': ['1958~/1970~'], 'physical_description_size': [], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F14_032_donut_01', 'duration': None, 'original_filename': 'BFMF_B17_F14_032a.tif', 'mime_type': 'image/tiff', 'width': 4212, 'rank': 0, 'id': '69c8df19-2098-4d8e-a869-c683216227fd', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/69c8df19-2098-4d8e-a869-c683216227fd', 'height': 3849}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F14_032_donut_02', 'duration': None, 'original_filename': 'BFMF_B17_F14_032b.tif', 'mime_type': 'image/tiff', 'width': 3889, 'rank': 1073741824, 'id': '826f135f-4e7f-4d87-bd14-cd9b30b917d9', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/826f135f-4e7f-4d87-bd14-cd9b30b917d9', 'height': 4212}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Crowd gathered around a woman playing autoharp and man playing guitar during the Berkeley Folk Music Festival'], 'csv_metadata_update_jobs': ['3b4ea97f-54f8-43a1-b027-d600b9673684', '64502329-9646-4bcb-a659-fb6e96277a19'], 'title': 'Berkeley Folk Music Festival performance', 'legacy_identifier': [], 'folder_number': ['14'], 'cultural_context': [], 'contributor': [{'role': 'Contributor', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|ctb|Berkeley Folk Music Festival (Contributor)', 'label_with_role': 'Berkeley Folk Music Festival (Contributor)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8e65cb38-270e-4213-81a8-0b91b68d40a8', 'ark': 'ark:/81985/n28k75c1v', 'embedding': [0.08780651, -0.026985547, 0.0122029325, 0.004835476, -0.07745898, 0.07383715, 0.001694703, -0.013329711, 0.03846493, 0.050063144, 0.063394755, 0.013274021, 0.036700398, -0.053877648, -0.019108957, 0.06555432, 0.023055613, -0.028511634, 0.06580365, 0.044819176, -0.021173107, 0.023104673, -0.041401956, 0.030539816, -0.051947307, -0.074801676, -0.019053908, 0.034767967, -0.07711532, 0.015934339, 0.038152054, 0.0585238, 0.030827899, 0.033508167, -0.111882515, 0.06606359, 0.015966117, -0.03636877, -0.082846195, 0.005750533, -0.05480741, -0.019775486, -0.056916855, -0.053830713, -0.07631869, -0.07105649, 0.00041244016, -0.013197528, -0.025324509, -0.046733886, -0.0043880944, 0.054786682, 0.0074622007, -0.05784383, -0.023704428, -0.08385433, 0.030876417, 0.08190714, 0.020953124, 0.0008616215, 0.014907595, -0.04835366, -0.08107266, 0.0018780781, -0.055815347, -0.007836138, 0.12436169, -0.0070827277, 0.007866417, -0.09475559, -0.040254604, 0.043363027, -0.020081175, -0.041697673, 0.062169954, 0.08421784, -0.005100082, -0.045619752, 0.035119988, -0.10499633, 0.025040042, 0.00046516655, 0.04182079, -0.05221215, -0.06829256, 0.048489448, -0.034960147, -0.017992025, 0.005238171, -0.022870935, -0.117565475, 0.040685415, -0.06577945, -0.13307384, 0.06467853, 0.040348064, -0.015370756, 0.01780015, 0.14533876, 0.10731079, -0.07048716, 0.07588461, -0.030569658, 0.07249252, 0.036186673, -0.12546606, 0.02513872, -0.023746453, -0.06765707, 0.07895529, 0.0608736, -0.07750222, 0.018301278, 0.010514117, 0.03701837, 0.07729968, -0.00888689, 0.063630626, -0.015528507, 0.02927508, -0.031931106, -0.0058895256, 0.00489545, 0.0012464522, -0.02995317, 0.070400484, 0.018793594, 0.05432392, 0.031425815, -0.03854606, 0.052806955, -0.06452763, 0.11557479, -0.04625092, -0.024535032, -0.012049351, 0.010183167, 0.005837204, 0.10545385, -0.034103338, 0.052872393, 0.012923208, -0.01362788, -0.021762503, 0.007371724, -0.046150334, -0.038899295, 0.012287654, -0.030422954, 0.025919782, 0.018161386, -0.031238072, -0.027928831, 0.06815713, 0.09581003, 0.11886212, 0.08889974, 0.00038386066, 0.0015426009, 0.008871205, 0.055769786, 0.019760506, 0.079246365, 0.045642775, -0.026205149, 0.01350108, -0.0132055925, -0.056908883, 0.030311873, 0.013318297, -0.031948775, 0.04906753, -0.09960096, 0.056996554, 0.066606544, 0.010263227, -0.009988527, -0.025069702, -0.050103962, 0.059596706, -0.002193539, 0.06790921, 0.031577095, 0.061465595, -0.012917554, -0.08758149, -0.0010171981, -0.0032919138, 0.04692073, 0.08513999, -0.01232224, -0.022420174, -0.014434686, -0.030294003, -0.00024671567, 0.0018460586, 0.04823513, -0.07799856, 0.090396635, 0.07081493, -0.06412161, -0.014487499, -0.035953984, 0.07546934, -0.043795392, 0.009697074, 0.007153501, 0.05022608, 0.005587055, -0.008350116, 0.0037144362, -0.0054868176, -0.029689148, -0.032513298, -0.007160092, -0.043665417, -0.07081901, -0.053031225, -0.0831939, 0.070969455, 0.0082083605, -0.07709517, -0.05802628, -0.011911173, -0.011535847, 0.08386416, -0.04208009, -0.015428901, 0.024710571, 0.07091339, -0.06860497, 0.06507897, 0.013280674, 0.019419802, 0.016424164, -0.013362306, 0.06760646, -0.07514088, 0.04496284, -0.07716198, 0.0012825797, 0.00409866, -0.052546814, 0.039382648, -0.033163954, 0.0073136673, 0.0003402932, 0.03917314, -0.025677994, -0.029949294, 0.09453984, -0.019348921, -0.07934908, 0.013578475, 0.034613274, -0.06388131, -0.031663235, -0.11663377, 0.049502585, 0.018860817, -0.012026432, -0.05473683, 0.014855589, -0.043261655, -0.0030506907, -0.03630923, 0.04790038, 0.04263254, -0.04674294, 0.0031216578, -0.09149055, 0.016298397, 0.027656475, -0.08968371, -0.052692894, -0.07595415, -0.0007222894, -0.049911175, -0.0051961667, 0.07951236, -0.009571182, 0.05434571, 0.075998455, 0.13418318, -0.10525594, 0.030832546, -0.07800758, -0.07256493, -0.014532943, 0.018546289, 0.007915189, 0.05883609, -0.05135112, 0.022043435, 0.04796296, 0.06815277, -0.042629607, 0.042877782, -0.058713585, 0.00082849886, -0.012671653, 0.036586434, -0.014341365, 0.026809817, 0.024574384, -0.014025444, -0.029641598, -0.012778825, -0.046731856, 0.036868718, 0.025911998, -0.03402049, -0.035812177, 0.08231873, 0.046617188, -0.055243127, -0.019515706, -0.044211935, 0.025813948, -0.022207823, -0.019506559, 0.021991843, -0.032361582, 0.016011268, 0.02585267, 0.0015134051, 0.05033118, -0.0513541, -0.083232306, 0.014146352, -0.13067527, -0.09259781, 0.037802264, 0.05981229, 0.098436914, -0.045491695, 0.06313472, 0.0063540023, -0.050186787, -0.028761584, -0.026673106, -0.024755955, 0.08173261, -0.06699754, -0.075036235, -0.048441444, 0.018916178, -0.06715604, -0.0009816638, -0.063785024, 0.0130965635, 0.083775766, -0.07140031, -0.046874873, 0.024518356, 0.034097616, -0.059051335, -0.045715086, -0.042981926, 0.08756404, -0.023616971, 0.032898247, 0.01304224, 0.07853294, 0.014050227, 0.034862496, -0.025337327, 0.033447355, 0.023841888, 0.07284683, 0.036397047, -0.025732694, 0.012778429, 0.0031597088, 0.027916335, 0.022739483, 0.018699013, 0.024874732, 0.015763747, 0.051558316, 0.020511344, -0.00898547, -0.0642555, -0.005800232], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['circa 1958 to circa 1970'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.09431, 'id': '69c8df19-2098-4d8e-a869-c683216227fd', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/69c8df19-2098-4d8e-a869-c683216227fd'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/8e65cb38-270e-4213-81a8-0b91b68d40a8', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='49f7f5c3-565d-4918-bcad-7e9ae2360bd7', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T15:07:52.845686', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '49f7f5c3-565d-4918-bcad-7e9ae2360bd7', 'create_date': '2021-03-15T20:31:07.602134Z', 'batch_ids': ['0eb078fe-e321-4126-9fc1-7f1304848af3', '1e168ff7-3adb-480a-8c7c-00e6703c369c'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7/thumbnail', 'style_period': [], 'box_number': ['12'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Warner, Frank'], 'modified_date': '2023-03-28T15:51:20.573305Z', 'accession_number': 'BFMF_B12_F17_016', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['4.75 inches (height) x 6 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B12_F17_016_donut_01', 'duration': None, 'original_filename': 'BFMF_B12_F17_016a.tif', 'mime_type': 'image/tiff', 'width': 2597, 'rank': 0, 'id': 'df4c6768-f0bc-415d-8a63-c69b846a76af', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/df4c6768-f0bc-415d-8a63-c69b846a76af', 'height': 2468}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B12_F17_016_donut_02', 'duration': None, 'original_filename': 'BFMF_B12_F17_016b.tif', 'mime_type': 'image/tiff', 'width': 2597, 'rank': 1073741824, 'id': '508057d8-c186-4755-ac42-e3fdbba01c92', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/508057d8-c186-4755-ac42-e3fdbba01c92', 'height': 2450}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner on stage singing and playing banjo at the Berkeley Folk Music Festival'], 'csv_metadata_update_jobs': ['339bc665-5e61-4bda-b402-b6258fb8f5a2', '64502329-9646-4bcb-a659-fb6e96277a19'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['17'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/49f7f5c3-565d-4918-bcad-7e9ae2360bd7', 'ark': 'ark:/81985/n2rf5kw5p', 'embedding': [0.08677775, 0.0004383835, 0.018327825, -0.045013033, -0.029741269, 0.111310706, -0.021486733, -0.01322135, 0.036001876, -0.0014300168, 0.073466755, -0.02159554, 0.056290273, -0.023104692, -0.027203104, 0.051210843, -0.010298385, -0.013322917, 0.0057751485, 0.030462185, -4.251104e-06, 0.017565083, -0.03111266, -0.00337926, -0.0148213385, -0.062146034, -0.062595084, 0.03272553, -0.048360962, 0.005021758, 0.038839675, 0.053109735, 0.09983486, 0.005461703, -0.09739148, 0.052727606, 0.0018531436, -0.025461402, -0.06302351, 0.07386598, -0.029050143, 0.049652714, -0.034755606, -0.028887305, -0.0032972163, -0.03310439, -0.012608985, -0.002879078, -0.0049169254, -0.011589652, -0.0015322487, 0.031485263, 0.0250495, -0.059214458, -0.04199719, -0.0436443, 0.013430867, 0.067988925, 0.054416105, 0.018627072, -0.030418318, -0.07380391, -0.076609954, 0.023519969, -0.060522955, 0.0028500012, 0.06946064, -0.055031247, -0.015820015, -0.04024786, 0.026792886, 0.02322498, -0.03970413, -0.08771739, 0.051646013, 0.0811875, -0.029801447, -0.052862685, -0.03578672, -0.11172387, -0.015873687, -0.021276737, 0.0069840015, -0.08262513, -0.053457823, -0.008806705, -0.0435752, -0.012739402, -0.056041006, 0.005270628, -0.08662364, -0.013761236, -0.07133371, -0.088404216, 0.020380411, 0.05955939, 0.01403915, -0.013655266, 0.09920854, 0.070209414, -0.024853252, 0.06052158, -0.072134055, 0.046937376, -9.160932e-05, -0.08185331, -0.009074721, 0.031994518, -0.010651801, 0.04699336, 0.05631023, -0.06206714, 0.034263186, 0.06318912, 0.10970618, 0.04742946, -0.035487317, 0.06717504, 0.008296112, 0.00114181, -0.04726952, 0.0491604, 0.024117738, 0.007807634, -0.115831666, 0.059975296, 0.022615716, 0.06802939, 0.0034434407, 0.0072923107, 0.03811636, -0.03857304, 0.03975916, -0.05057662, -0.017653637, 0.01176957, -0.0057241255, 0.0217259, 0.09772257, -0.02273648, 0.07021468, 0.01937072, -0.025695827, 0.025292639, 0.04036097, -0.05729475, -0.016510494, -0.022511372, -0.030229535, 0.01919939, 0.023270475, -0.052252613, -0.034033664, 0.005869578, 0.055574942, 0.040749367, 0.11994493, 0.009350763, -0.011622338, 0.023448877, 0.06370321, 0.0071636382, 0.060414877, 0.0056274906, -0.019739902, -0.00082035223, -0.00042581433, -0.10459563, 0.015248085, -0.009643996, -0.027792975, 0.04241155, -0.03430408, 0.116599746, 0.03947752, -0.015385668, -0.012133634, -0.03013127, -0.013036541, 0.0401125, 0.014021113, 0.021456094, 0.01782928, -0.010783065, -0.035843525, -0.034262564, -0.0024479122, -0.0055056987, 0.07090347, 0.07983887, 0.00046428296, -0.014240538, -0.04594446, -0.05434529, -0.019486286, 0.0061392346, 0.056339677, -0.09934426, 0.04758841, 0.012962454, -0.07519808, -0.0645804, -0.056923654, 0.045228463, -0.03944557, -0.041276496, -0.0015527225, 0.08981278, -0.018816529, 0.06954541, -0.039485898, -0.06840899, -0.045931958, -0.08748663, 0.010119097, -0.029226853, -0.032147307, -0.071539186, -0.080088936, 0.057628278, 0.025251523, -0.046296563, -0.09764099, -0.034892704, -0.022537455, 0.09885385, 0.03129504, -0.03271191, 0.03245195, 0.08494041, -0.059746712, 0.120289646, 0.06409265, -0.027062362, 0.03729796, -0.0018847646, 0.018203385, -0.10010877, 0.011921954, -0.016345037, -0.055927265, 0.044038236, 0.0003109859, 0.012471452, 0.011081949, -0.008463905, -0.05321926, 0.064261526, -0.00633526, -0.024024194, 0.06774334, -4.4871398e-05, -0.05800209, 0.0041016988, 0.025008837, -0.06994616, -0.012029384, -0.031048764, 0.021187853, 0.03661286, 0.019233935, -0.04478292, -0.010114004, -0.048188645, -0.011498675, -0.02299834, 0.042962708, 0.072865374, -0.0035979215, -0.0503461, -0.08684662, 0.034398273, -0.024172487, -0.06335583, -0.10997008, 0.011319867, 0.011374311, -0.034516733, -0.01123159, 0.030342337, 0.033525363, 0.06460425, 0.08414722, 0.07711024, -0.09449868, 0.044421222, -0.0287128, -0.08147359, -0.017723205, 0.0688194, 0.062024347, 0.092398934, -0.084872864, 0.015443664, 0.0639939, 0.10778408, -0.017837774, 0.025567448, -0.12919833, 0.06290572, -0.011160303, 0.101168334, -0.049139645, 0.06746768, 0.0055092797, 0.010582667, -0.049836498, 0.036995962, -0.018412653, -0.0039532674, 0.09490279, -0.043993637, -0.0251094, 0.08573006, 0.061079103, -0.09021933, 0.016283846, 0.04371204, 0.055889152, 0.013880389, -0.0024833896, 0.024112258, -0.061852917, 0.0135453325, 0.11123785, 0.064532645, 0.043625586, -0.05082335, -0.13390127, 0.059012726, -0.056651562, -0.05558122, 0.004519802, 0.07524415, 0.039054114, -0.10469413, 0.010973898, -0.051921695, 0.0073153465, -0.041690536, -0.020507151, 0.0035889968, 0.066947885, -0.09146434, -0.058190323, -0.067530975, 0.013802885, -0.09621526, -0.06592647, -0.050785925, 0.032506086, 0.05229868, -0.08329471, -0.042283367, 0.030705325, 0.014259456, -0.11721843, -0.05156095, -0.033014018, 0.10077941, -0.018274507, -0.01612822, 0.044487484, 0.054125667, 0.063128985, 0.02367036, 0.037647855, 0.06567156, 0.049467124, 0.059501275, 0.0064110574, 0.001991271, -0.011441613, 0.006442027, 0.017779937, 0.023405593, -0.03563741, 0.065151244, -0.044410396, 0.02448568, 0.014440459, 0.0072581666, -0.026378267, -0.060173254], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.05226, 'id': 'df4c6768-f0bc-415d-8a63-c69b846a76af', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/df4c6768-f0bc-415d-8a63-c69b846a76af'}, 'api_model': 'Work', 'physical_description_material': [], 'series': [\"Berkeley Folk Music Festival Archive--1. Artists' Photo Archive\"], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/49f7f5c3-565d-4918-bcad-7e9ae2360bd7', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='f36ffcb1-51da-4dc7-888b-0ad3a779ce54', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T17:05:01.995343', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'f36ffcb1-51da-4dc7-888b-0ad3a779ce54', 'create_date': '2021-03-16T21:57:37.858626Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54/thumbnail', 'style_period': [], 'box_number': ['14'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1958 (P. Olivier)'], 'modified_date': '2023-03-27T23:40:59.531171Z', 'accession_number': 'BFMF_B14_F07_031', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['3.5 inches (height) x 4.5 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_031_donut_01', 'duration': None, 'original_filename': 'BFMF_B14_F07_031a.tif', 'mime_type': 'image/tiff', 'width': 2041, 'rank': 0, 'id': 'ffaecc66-6f75-4bae-9a43-4a71f30fa583', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/ffaecc66-6f75-4bae-9a43-4a71f30fa583', 'height': 2106}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_031_donut_02', 'duration': None, 'original_filename': 'BFMF_B14_F07_031b.tif', 'mime_type': 'image/tiff', 'width': 2053, 'rank': 1073741824, 'id': 'f06f18c6-bbf3-4aec-a820-14ca5d845606', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/f06f18c6-bbf3-4aec-a820-14ca5d845606', 'height': 2034}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner gesturing on stage at 1958 Berkeley Folk Music Festival concert'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['7'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/f36ffcb1-51da-4dc7-888b-0ad3a779ce54', 'ark': 'ark:/81985/n2kh0fd9x', 'embedding': [0.089912534, 0.011595238, 0.017517427, -0.04459704, -0.023348346, 0.102325685, -0.034357514, -0.019201944, 0.037569966, -0.012216755, 0.079630084, -0.016189761, 0.064509064, -0.017654404, -0.01910995, 0.05534783, -0.0010265309, -0.022942305, 0.017226128, 0.041915633, 0.0147434585, 0.009614965, -0.032570213, 0.010367542, -0.030084657, -0.06735502, -0.04984005, 0.035244826, -0.05479795, 0.00037626197, 0.03718521, 0.055383634, 0.09470269, -0.007526494, -0.0868555, 0.036522847, -0.011992422, -0.028645754, -0.05687614, 0.07523555, -0.041172545, 0.035145264, -0.019359298, -0.024075357, 0.0032807665, -0.04572546, -0.008565583, 0.013952759, -0.013586202, -0.017169, 0.011423051, 0.019255426, 0.015812567, -0.049468987, -0.040596396, -0.030453388, 0.020039106, 0.057342824, 0.031812415, 0.022472743, -0.010688454, -0.061058637, -0.08660339, 0.026470356, -0.053112023, 0.01518772, 0.058091417, -0.055124428, -0.004914329, -0.036523156, 0.027195945, 0.014289533, -0.006542304, -0.08754809, 0.038394425, 0.08273278, -0.0294535, -0.06841361, -0.043587886, -0.11276548, -0.008009671, -0.02880947, -0.005232925, -0.08527978, -0.05460234, -0.0074461377, -0.04815774, -0.023219822, -0.053417612, 0.0057336334, -0.082231835, -0.018843176, -0.087264545, -0.08912013, 0.01590346, 0.049626704, 0.0030983423, -0.016364975, 0.09952209, 0.06983445, -0.034890763, 0.066542104, -0.06962108, 0.0425576, -0.025385, -0.07898789, -0.011932718, 0.035986617, -0.009875226, 0.06746758, 0.042151995, -0.054139066, 0.04388354, 0.049916733, 0.1021482, 0.06048744, -0.033225097, 0.06343285, 0.0018387941, -0.0071690977, -0.045911692, 0.046469577, 0.03443713, 0.0045066746, -0.10285742, 0.05706382, 0.008401479, 0.06240745, 0.0038847805, 0.005937171, 0.020648511, -0.038897585, 0.046982195, -0.034218434, -0.018543458, 0.014177394, -0.026655473, 0.030917212, 0.119502425, -0.0057650227, 0.061429888, 0.010672786, -0.028577056, 0.008428538, 0.06170369, -0.053334475, -0.025168173, -0.023867048, -0.043106776, 0.020317275, 0.006931728, -0.06226943, -0.040560044, 0.019144068, 0.040747512, 0.069926254, 0.101635985, 0.0072257775, -0.003588287, 0.025727723, 0.06789123, 0.00016630825, 0.06623771, 0.0076882555, -0.030598694, -0.019536542, 0.0076806745, -0.10121841, 0.029685834, 0.00984798, -0.025200123, 0.03897812, -0.037154287, 0.113650955, 0.0356039, -0.012562268, 0.016733829, -0.03859891, -0.008449213, 0.04313919, 0.010681564, 0.022309164, 0.030835845, -0.013536216, -0.021190755, -0.036242068, -0.00084033684, -0.0035163434, 0.055350747, 0.08593354, -0.012330567, -0.008365047, -0.034345426, -0.06158604, -0.016316842, 0.018001985, 0.048653197, -0.08792033, 0.0497767, 0.03752206, -0.070814826, -0.068919964, -0.061439667, 0.026362218, -0.043167096, -0.028382013, 0.00633864, 0.093724996, -0.023931632, 0.058780573, -0.025000334, -0.0717703, -0.043752987, -0.06972337, 0.005284531, -0.0071489885, -0.03777855, -0.085831985, -0.07574698, 0.052991636, 0.047076423, -0.035626322, -0.104517065, -0.034671206, -0.02755269, 0.09081137, 0.021733608, -0.046512756, 0.043494545, 0.09168969, -0.0663946, 0.12729838, 0.06060106, -0.0302055, 0.02222326, 0.0052820886, 0.014547719, -0.10285774, 0.0015922374, -0.030316912, -0.023151366, 0.039931428, -0.01957221, 0.020447461, 0.040382586, -0.00056732085, -0.064721845, 0.054633915, -0.007439076, -0.022440651, 0.09081901, -0.015758919, -0.07040368, 0.024273284, 0.02413742, -0.095725924, -0.0048658364, -0.016026119, 0.029754387, 0.027670804, 0.01978779, -0.039030265, -0.023761032, -0.05538698, -0.021353392, -0.020753933, 0.0368249, 0.059868753, -0.00984889, -0.041459236, -0.085583396, 0.016933283, -0.010350042, -0.078093685, -0.124071255, -0.008918022, 0.005813525, -0.03790663, -0.018854948, 0.040307272, 0.023957724, 0.07096397, 0.09316525, 0.08114187, -0.09056993, 0.046918366, -0.037338488, -0.08815466, -0.030759376, 0.053974822, 0.055049084, 0.10110283, -0.093499266, 0.01797862, 0.0550577, 0.10048032, -0.0236807, 0.02948191, -0.12431886, 0.053704336, -0.008683321, 0.10082331, -0.040214136, 0.07740557, 0.018313572, 0.0010110531, -0.042645313, 0.018747829, -0.0070115337, -0.002168938, 0.09242725, -0.036071554, -0.017237721, 0.0989801, 0.06179428, -0.078038916, 0.034336276, 0.02238978, 0.060192827, 0.017125279, 0.0065843337, -0.0032779262, -0.049435597, 0.011011746, 0.112134844, 0.06154589, 0.03925326, -0.050731886, -0.13177161, 0.037810136, -0.053816363, -0.05747705, 0.008271802, 0.0788588, 0.035837438, -0.109240405, 0.0076297983, -0.048078936, 0.0037221825, -0.02929197, -0.026761297, -0.000662759, 0.07727599, -0.10931881, -0.04670888, -0.04863817, 0.001056848, -0.09366416, -0.052287906, -0.036945634, 0.03404692, 0.04670795, -0.08868638, -0.043558788, 0.052089438, 0.024928149, -0.114979215, -0.05288832, -0.03642453, 0.109428294, -0.0011443166, -0.011400675, 0.05382267, 0.07013771, 0.06261528, 0.041543856, 0.03649573, 0.046694215, 0.049089916, 0.05670224, 0.0053175967, 0.003503649, -0.012021681, -0.010216285, 0.017134665, 0.006239545, -0.02143819, 0.06445067, -0.038638648, 0.04075153, 0.023901487, -0.0012350556, -0.03681693, -0.057303764], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.96913, 'id': 'ffaecc66-6f75-4bae-9a43-4a71f30fa583', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/ffaecc66-6f75-4bae-9a43-4a71f30fa583'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/f36ffcb1-51da-4dc7-888b-0ad3a779ce54', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='93fb4c26-4a31-40df-ad71-fc56531b3ab8', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:32:12.350526', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '93fb4c26-4a31-40df-ad71-fc56531b3ab8', 'create_date': '2021-03-16T06:29:50.419719Z', 'batch_ids': ['0eb078fe-e321-4126-9fc1-7f1304848af3', '1e168ff7-3adb-480a-8c7c-00e6703c369c'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8/thumbnail', 'style_period': [], 'box_number': ['12'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Warner, Frank'], 'modified_date': '2023-03-28T15:47:30.796494Z', 'accession_number': 'BFMF_B12_F17_008_001n', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': [], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B12_F17_008_001n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B12_F17_008_001n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B12_F17_008_001n_am.tif', 'mime_type': 'image/tiff', 'width': 6599, 'rank': 0, 'id': '2d44ff0b-d0ff-46bc-8d09-8a8ddb51a9c9', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/2d44ff0b-d0ff-46bc-8d09-8a8ddb51a9c9', 'height': 8269}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'label': 'Frank Warner on stage with banjo at the Berkeley Folk Music Festival. Digital scan of a black and white negative.', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B12_F17_008_001n_pm', 'duration': None, 'original_filename': 'BFMF_B12_F17_008_001n_pm.tif', 'mime_type': 'image/tiff', 'width': 6599, 'rank': 0, 'id': '0b1afa2f-501f-4e8a-829c-48e8c8c25b13', 'representative_image_url': None, 'height': 8269}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner on stage with banjo at the Berkeley Folk Music Festival. Digital scan of a black and white negative.'], 'csv_metadata_update_jobs': ['339bc665-5e61-4bda-b402-b6258fb8f5a2', '64502329-9646-4bcb-a659-fb6e96277a19'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['17'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/93fb4c26-4a31-40df-ad71-fc56531b3ab8', 'ark': 'ark:/81985/n2np1x016', 'embedding': [0.07970794, 0.013807089, -0.013551264, -0.033451084, -0.031789053, 0.12040054, -0.03826592, -0.030773528, 0.028200136, 0.022260552, 0.05496249, -0.040837318, 0.04741233, -0.016501756, -0.017378146, 0.08235319, -0.014107509, -0.0044804676, 0.054211907, 0.015851403, 0.010884937, 0.01218124, -0.053310663, 0.038100526, 0.0025435027, -0.05758351, -0.01722468, 0.023919942, -0.05893625, 0.018025355, 0.014840388, 0.025464164, 0.10593543, 0.02039529, -0.09275287, -0.005329324, 0.0042397915, 0.019098897, -0.069958724, 0.060659006, -0.0063695363, 0.015767425, -0.031262748, 0.00651908, -0.031519108, -0.04826377, -0.022276232, -0.028362928, -0.016977414, -0.033932928, 0.029868776, 0.06653781, 0.04238086, -0.06647209, -0.0557886, -0.05191957, 0.024116091, 0.066493325, -0.003457076, 0.011876622, -0.036458768, -0.1345332, -0.08385089, 0.0014151222, -0.040235516, 0.011822769, 0.06725743, -0.04248571, -0.0015767372, -0.045736644, 0.011728886, 0.030501243, 0.0055352026, -0.055933136, 0.034722768, 0.09921857, 0.015728708, -0.057287067, -0.017884225, -0.112641886, -0.011676651, 0.012948883, 0.0011117676, -0.050059672, -0.08131366, -0.0033506681, -0.06548685, -0.013599567, -0.0620506, -0.006065737, -0.08419981, -0.017056337, -0.028577354, -0.09907566, 0.046949793, 0.040170655, 0.011689282, 0.0060468432, 0.10257862, 0.07735888, -0.028003898, 0.057446897, -0.10622168, 0.0321875, -0.003192915, -0.08496124, -0.024852619, -0.00052792707, -0.029290397, 0.027028888, 0.05163918, -0.06950655, 0.037962902, 0.051599752, 0.055335756, 0.069343, -0.01931827, 0.10815068, 0.025856223, 0.017910197, -0.04543625, 0.039990347, 0.060637362, 0.015535141, -0.13057913, 0.05597639, -0.006459887, 0.05659255, -0.00010985275, -0.0059328424, -0.018981783, -0.037863467, 0.043402493, -0.032312404, -0.028916424, 0.013432643, 0.0148974005, 0.020113325, 0.14830963, -0.037588656, 0.04041212, 0.0024680593, -0.048644062, 0.029523704, 0.013602916, -0.093510374, -0.0053320187, -0.037209634, -0.00034942184, 0.026937233, -0.021422569, -0.052980985, -0.044946015, 0.0054328744, 0.059291244, 0.04301124, 0.10209895, 0.050153077, 0.00893441, 0.01617591, 0.08662108, -0.0111268, 0.058201123, 0.03440331, -0.03245689, 0.015011154, 0.034011647, -0.0733486, 0.016805626, -0.0025127328, -0.022305435, 0.025944047, 0.009744665, 0.10211368, 0.03831061, -0.023974128, -0.0069376198, -0.023456477, -0.023992555, 0.010215188, -0.01877432, 0.0045784274, 0.01335247, -0.018451909, -0.0036434454, -0.014219707, -0.023507658, -0.044369135, 0.0379402, 0.06745958, -0.036579072, -0.045188535, -0.05186601, -0.0041613216, -0.005591537, -0.0103905415, 0.028255874, -0.13660996, 0.06373704, 0.048779517, -0.106865324, -0.053450312, -0.03313951, 0.059026103, -0.04302754, -0.04483914, 0.0064346693, 0.04549676, 0.007884435, 0.04751749, -0.03880614, -0.03992811, -0.018805875, -0.09693551, 0.00475281, -0.008983508, -0.05101758, -0.06991156, -0.07963016, 0.030416032, 0.020136744, -0.031364888, -0.06044207, -0.0468855, -0.03897611, 0.09982167, 0.022835372, 0.015323539, -0.015747882, 0.074448034, -0.04507912, 0.09915352, 0.08259953, -0.015635846, 0.06037783, 0.025704961, 0.014028666, -0.07646676, 0.040376645, -0.0046787225, -0.0565217, 0.104926325, -0.04142179, 0.00749302, 0.013015087, 0.022710694, -0.08806197, 0.09368245, -0.012118033, 0.014617542, 0.059954595, -0.00029976346, -0.06654236, -0.026216261, 0.050228965, -0.06750865, -0.0064024194, -0.034821417, 0.03487705, 0.06418749, 0.022123454, -0.036661036, -0.06208474, -0.04880934, 0.007732675, 0.034441423, 0.032886922, 0.09066591, -0.036715925, -0.019225787, -0.118301325, 0.0333595, 0.007565694, -0.07351104, -0.09201754, 0.011068126, 0.042242035, 0.006636661, -0.010050587, 0.05732618, 0.0060748737, 0.08035006, 0.062718354, 0.12540206, -0.07816203, 0.06648791, -0.028592588, -0.08042199, -0.010498011, 0.06719612, 0.031389363, 0.08925903, -0.0063082813, 0.015904149, 0.042029403, 0.12545832, -0.06205581, -0.015328684, -0.07896314, 0.059807163, -0.054144878, 0.11012067, -0.07846208, 0.051430598, 0.030809587, 0.0059921667, -0.046781342, 0.008516794, 0.013032655, -0.021645604, 0.07033488, -0.05830946, -6.6234235e-05, 0.053909197, 0.05523599, -0.06398862, 0.0021257582, 0.019044807, 0.028463803, -0.01343933, 0.029400112, 0.0076330686, -0.043775767, 0.021956276, 0.119164884, 0.0594532, 0.030109745, -0.11375001, -0.13524672, 0.06684313, -0.09397243, -0.04449711, -0.076157525, 0.05907787, 0.07127538, -0.051242784, 0.03924554, -0.04266433, -0.0006015571, -0.04450446, -0.017601999, 2.8470458e-05, 0.058654826, -0.055703484, -0.050653536, -0.03977983, 0.032860532, -0.088620074, -0.009178492, -0.030228214, 0.042068608, 0.04827935, -0.04484605, -0.02303779, 0.03780271, 0.011113649, -0.091338895, -0.052647233, -0.028468182, 0.09082783, 0.00040620787, -0.0023194966, -0.00213553, 0.058794376, 0.05891419, -0.016674537, 0.006364407, 0.044723958, 0.017227221, 0.0023948227, -0.0059113996, 0.017846711, -0.013609093, -0.01688288, 0.03898503, 0.003257058, -0.013603808, 0.037284512, -0.044246223, 0.034597445, 0.02146726, -0.017526697, -0.0055443114, -0.07612539], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.79804, 'id': '2d44ff0b-d0ff-46bc-8d09-8a8ddb51a9c9', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/2d44ff0b-d0ff-46bc-8d09-8a8ddb51a9c9'}, 'api_model': 'Work', 'physical_description_material': [], 'series': [\"Berkeley Folk Music Festival Archive--1. Artists' Photo Archive\"], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/93fb4c26-4a31-40df-ad71-fc56531b3ab8', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='fb69f0bd-505f-44ad-97c5-d9b9445b6cbe', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164238', 'label': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)', 'variants': ['A.S.U.C. Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164238|TOPICAL|Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T17:06:30.663265', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'fb69f0bd-505f-44ad-97c5-d9b9445b6cbe', 'create_date': '2021-03-16T22:44:56.804418Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe/thumbnail', 'style_period': [], 'box_number': ['17'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley slides'], 'modified_date': '2023-03-27T22:58:09.670940Z', 'accession_number': 'BFMF_B17_F09_014s', 'license': None, 'date_created_edtf': ['1968-07-04/1968-07-07'], 'physical_description_size': [], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B17_F09_014s.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F09_014s_donut_01', 'duration': None, 'original_filename': 'BFMF_B17_F09_014s.tif', 'mime_type': 'image/tiff', 'width': 5037, 'rank': 0, 'id': 'c3357489-7cf5-477b-b97c-51fdb3ca6d7c', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/c3357489-7cf5-477b-b97c-51fdb3ca6d7c', 'height': 3349}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Band on stage at the 1968 Berkeley Folk Music Festival'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': '1968 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['9'], 'cultural_context': [], 'contributor': [], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128366', 'label': 'color slides', 'variants': ['color slide', 'slides, color', 'diapositivas en color', 'colour slide', 'slides, colour', 'kleurendia', 'diapositive couleur (slide)', 'diapositive en couleur (color slide)', 'diapositive en couleurs (color slides)', 'diapositives couleur (color slide)', 'diapositives en couleurs (color slides)', 'Farbdias', 'diapositiva en color'], 'facet': 'http://vocab.getty.edu/aat/300128366||color slides'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe', 'ark': 'ark:/81985/n2pk07h21', 'embedding': [0.081985585, -0.017119203, 0.018096033, -0.045501333, -0.063473925, 0.062463902, -0.040650383, -0.042620227, 0.053696163, 0.04188133, -0.00720488, 0.006411817, 0.047632944, -0.025216522, 0.028075488, 0.05420937, 0.0033718871, -0.05546962, 0.053477764, 0.0062510786, 0.012378704, 0.024024954, -0.07292552, 0.06119185, -0.04897981, -0.04311258, 0.017819278, 0.035047248, -0.08323956, -0.011013835, 0.0034104101, 0.06048809, 0.046005573, 0.03540031, -0.069973506, 0.02036946, 0.03162465, -0.056286268, -0.058888964, 0.03995044, -0.026940249, -0.008583438, -0.011497512, -0.043613542, -0.0012646293, -0.034147784, -0.0037097004, -0.05527927, -0.03247608, -0.01014392, 0.042747173, 0.07381421, 0.010054287, -0.048881445, -0.029289067, -0.041795682, 0.054703142, 0.063366935, -0.008959383, 0.0031749012, 0.02023751, -0.057969987, -0.03819254, -0.01978699, -0.07009945, -0.041152902, 0.059828103, -0.03768434, 0.041721575, -0.10914311, -0.004500919, 0.02845972, 0.038278565, -0.05152446, 0.050067395, 0.10366082, -0.009777474, -0.072594866, -0.024591215, -0.1367184, -0.04158966, -0.019521695, -0.005178349, -0.05786228, -0.0281115, 0.031974666, -0.057111643, -0.008951966, 0.003278593, 0.047228824, -0.065256774, 0.029704686, -0.024396908, -0.09896768, 0.05555762, 0.027570976, -0.010688073, -0.012860731, 0.14861019, 0.049252544, -0.06102597, 0.06779186, -0.08413321, 0.0025347732, 0.0097324895, -0.12722646, 0.00030551341, -0.033105057, -0.07343447, 0.046224225, 0.07032865, -0.07231328, 0.12891291, 0.041660085, -0.030224957, 0.09802437, -0.024141256, 0.0607161, -0.014473756, 0.04394207, -0.020742102, 0.020986727, 0.019923393, 0.030059136, -0.042054612, 0.055791445, -0.00031714933, 0.03350915, 0.0271248, -0.03165407, 0.006722438, -0.08162069, 0.045254536, -0.032772623, -0.0038610164, -0.0472885, -0.002169755, -0.024807751, 0.112843215, -0.0024611081, 0.058929853, 0.009100337, 0.004046061, -0.019769771, 0.01031152, -0.07431543, -0.014974272, -0.012428058, -0.033447538, 0.00322266, -0.068066284, -0.0038435112, -0.03234498, 0.04276101, 0.044070452, 0.099193, 0.08790896, -1.9764855e-05, 0.022676207, 0.016619993, 0.11486731, 0.00041474192, 0.05243825, -0.01046877, -0.042877555, 0.029029025, 0.017135125, -0.07669482, 0.024304297, -0.0059610144, -0.03674079, 0.054307688, -0.017130172, 0.07972128, 0.028733596, 0.0196491, 0.037448227, -0.040942788, -0.02321667, 0.064119644, 0.01850552, -0.01678036, 0.05582799, 0.0013111159, -0.026366513, -0.071691014, -0.043422394, -0.025549997, 0.055974334, 0.10575461, -0.032507855, -0.041100726, -0.04104785, -0.032294314, 0.030741768, 0.015538572, 0.049393468, -0.13346279, 0.11855225, 0.06974757, -0.08530946, -0.029394517, -0.051224634, 0.04935997, -0.039563324, 0.008181554, 0.005340451, 0.03369951, 0.020083966, 0.014632043, -0.00439629, -0.012004297, -0.010334118, -0.03542795, 0.03306652, -0.0016686807, -0.064439125, -0.07700637, -0.111605, 0.04265555, 0.054936506, -0.018274164, -0.084290646, 0.0010756998, -0.03673473, 0.11135959, -0.04324748, 0.033028305, 0.011067526, 0.08202445, -0.07495985, 0.07996364, 0.033691105, 0.010374421, 0.0658754, 0.034063667, 0.03469999, -0.08943718, 0.03965827, -0.038219977, -0.022894531, 0.08091288, -0.02441427, 0.051411852, -0.010112318, 7.276867e-05, -0.07619487, 0.054305203, -0.05259412, -0.033801373, 0.08540783, -0.025595281, -0.088224016, 0.0025836688, 0.036550447, -0.11074533, -0.051172346, -0.059028875, 0.054656494, -0.0022639881, -0.010057594, -0.055574633, -0.06664945, -0.03991357, 0.035095915, -0.033566445, 0.016415467, 0.05279829, -0.06595191, -0.017884994, -0.07039129, 0.052285694, -0.021106036, -0.08403384, -0.059661392, -0.050156996, 0.054953914, -0.0050000725, 0.018709406, 0.08811146, -0.011697955, 0.070841335, 0.02634898, 0.10118521, -0.04874857, 0.048802428, -0.0520509, -0.052506253, -0.029926457, 0.010875559, 0.010049367, 0.057815213, -0.036375485, -0.0057774694, 0.03862346, 0.10529388, -0.044681218, 0.045087837, -0.04119628, 0.037005745, -0.009035835, 0.075630024, -0.036319446, 0.03244231, 0.0014990481, -0.013193363, -0.046370372, -0.020268973, -0.021357875, 0.01454104, 0.02883637, -0.040490102, 0.0097148055, 0.084707886, 0.051295333, -0.06679011, -0.04251381, -0.038199782, 0.040486533, 0.011966037, 0.048437823, 0.00085890485, -0.042892504, 0.03476456, 0.08054509, 0.008122041, 0.09523675, -0.03402937, -0.105757765, 0.038450874, -0.13101132, -0.109718375, -0.030299464, 0.035748042, 0.10364285, -0.04167556, 0.066129714, -0.03982351, 0.0040920954, -0.0680206, -0.0408003, 0.004243677, 0.06728207, -0.056246493, -0.07441755, -0.04993625, 0.04290625, -0.041874286, -0.020244842, -0.032166597, 0.018706122, 0.05454083, -0.062204365, -0.06899602, 0.008802996, 0.02952317, -0.07707624, -0.03045486, -0.027676703, 0.11579698, 0.023970438, 0.009725157, 0.041520696, 0.03855106, 0.015255261, -0.030223308, 0.012378891, 0.06506479, 0.015963951, 0.038586356, 0.018020747, -0.028663894, 0.028389687, -0.03455017, 0.04279433, 0.009741199, 0.0016419269, 0.032882147, -0.0065980675, 0.073337644, 0.015233876, 0.059553668, -0.03548486, -0.027859928], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['July 4, 1968 to July 7, 1968'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.50403, 'id': 'c3357489-7cf5-477b-b97c-51fdb3ca6d7c', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/c3357489-7cf5-477b-b97c-51fdb3ca6d7c'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/fb69f0bd-505f-44ad-97c5-d9b9445b6cbe', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='b172fba8-13d4-4e57-a8b0-fb9286843226', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:51:26.484462', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'b172fba8-13d4-4e57-a8b0-fb9286843226', 'create_date': '2021-03-16T14:22:10.212956Z', 'batch_ids': ['94eb5558-0903-43cc-9fe0-8584b03f05a1'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226/thumbnail', 'style_period': [], 'box_number': ['55'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Photographs, workshop, 1958'], 'modified_date': '2023-03-27T23:10:51.025723Z', 'accession_number': 'BFMF_B55_F01_012', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['4.75 inches (height) x 6.75 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B55_F01_012_donut_01', 'duration': None, 'original_filename': 'BFMF_B55_F01_012a.tif', 'mime_type': 'image/tiff', 'width': 2963, 'rank': 0, 'id': '0dfc6a6c-3d67-44ac-9e86-631f19f92640', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/0dfc6a6c-3d67-44ac-9e86-631f19f92640', 'height': 2186}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B55_F01_012_donut_02', 'duration': None, 'original_filename': 'BFMF_B55_F01_012b.tif', 'mime_type': 'image/tiff', 'width': 2890, 'rank': 1073741824, 'id': 'd2d25298-5394-4479-a5a0-cfc6d56a3b19', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/d2d25298-5394-4479-a5a0-cfc6d56a3b19', 'height': 2122}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner playing banjo at 1958 Berkeley Folk Music Festival concert'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['1'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/b172fba8-13d4-4e57-a8b0-fb9286843226', 'ark': 'ark:/81985/n2w08wx5r', 'embedding': [0.08080721, 0.006102217, 0.018279584, -0.043870863, -0.033460412, 0.114285804, -0.02116766, -0.0142153315, 0.04215871, 0.0013571067, 0.06840242, -0.021116083, 0.04505102, -0.02688174, -0.029501658, 0.04747396, -0.004881528, -0.021633618, 0.0018876201, 0.031250387, -0.006879921, 0.017097013, -0.03779597, -0.0033863522, -0.027720625, -0.059465382, -0.06125457, 0.037925307, -0.04938386, 0.004679748, 0.03880762, 0.057449415, 0.09395442, 0.0045587895, -0.093467645, 0.04994986, -0.0034922666, -0.025475837, -0.069506854, 0.07439145, -0.022970024, 0.05165449, -0.028470218, -0.026811797, 0.0010836335, -0.03688852, -0.013354853, -0.0024393906, -0.0051405653, -0.006215323, -0.002577236, 0.04265241, 0.030985612, -0.07281663, -0.03894012, -0.04064944, 0.015820751, 0.07210143, 0.053972553, 0.025311392, -0.022162862, -0.08154203, -0.08085656, 0.019784885, -0.059840154, 0.005430861, 0.061918654, -0.05518441, -0.014371694, -0.04132908, 0.025071984, 0.027833916, -0.03493711, -0.08720092, 0.04237629, 0.07408716, -0.03046367, -0.061571606, -0.03601521, -0.10204098, -0.0104906075, -0.022275696, -0.00029565615, -0.09714878, -0.054060236, -0.008807228, -0.052361827, -0.008908866, -0.054393806, -0.0022342613, -0.068297885, -0.011975544, -0.08750124, -0.0861236, 0.01970952, 0.05791733, 0.008620921, -0.016227435, 0.08982958, 0.0722255, -0.024333885, 0.059274066, -0.07863318, 0.053591505, -0.00082290306, -0.073055714, -0.018972581, 0.040266782, -0.009993244, 0.05618853, 0.053469922, -0.059518494, 0.03176349, 0.06612576, 0.10455456, 0.046292428, -0.03992712, 0.0681637, 0.016584123, 0.000784788, -0.04643414, 0.037737135, 0.02755057, 0.008700439, -0.11200611, 0.052787054, 0.025028123, 0.07097269, -0.0055458597, 0.0020078227, 0.029460624, -0.03887984, 0.039342344, -0.045878153, -0.016645445, 0.021664074, -0.008292288, 0.03091651, 0.10142127, -0.013311455, 0.059563294, 0.018997012, -0.02966684, 0.016790938, 0.04037236, -0.05876688, -0.0056051756, -0.03098962, -0.032488853, 0.02360322, 0.024344943, -0.053964358, -0.03764803, 0.010033788, 0.05517764, 0.040667027, 0.11492867, 0.01097815, -0.0040912866, 0.016193189, 0.058266077, -0.002666739, 0.070489034, 0.013807333, -0.03075251, 0.010790032, 0.0075744865, -0.117566526, 0.0056035034, -0.0074593346, -0.037755, 0.03683556, -0.030163338, 0.109697, 0.032130573, -0.021162175, -0.0081483, -0.029263163, -0.0011983494, 0.043333344, 0.026977314, 0.024447493, 0.024987383, -0.016327508, -0.030533068, -0.02454875, 0.009557413, 0.003042915, 0.0681807, 0.0823921, -0.0057688556, -0.0071807033, -0.0388503, -0.05685223, -0.02088661, 0.0072759176, 0.0560762, -0.09928932, 0.053259935, 0.022838803, -0.069349915, -0.06859627, -0.057517108, 0.04639382, -0.042293016, -0.04135881, -6.04192e-05, 0.0874456, -0.022625005, 0.06305688, -0.026058253, -0.07634318, -0.054991644, -0.08102523, 0.009549582, -0.009801085, -0.03970261, -0.08398765, -0.07805862, 0.06348869, 0.02598149, -0.035827752, -0.08059148, -0.02871981, -0.024527915, 0.08802895, 0.02887703, -0.038107116, 0.032929122, 0.07722373, -0.061287213, 0.12600048, 0.05965412, -0.030275382, 0.033692904, 0.0015379225, 0.01688131, -0.09906253, 0.012880795, -0.01701154, -0.055188406, 0.047078703, -0.010429117, 0.009107769, 0.011583903, -0.00044175374, -0.050138228, 0.06433991, -0.0027077931, -0.03237209, 0.06812415, 0.0040838043, -0.06348504, 0.013383267, 0.028237524, -0.08101673, -0.0084716035, -0.03452992, 0.03168621, 0.03792622, 0.020780249, -0.039837025, -0.011639966, -0.055857904, -0.008500403, -0.0130595, 0.047101535, 0.06686923, -0.0002604402, -0.04474689, -0.08232897, 0.025249973, -0.019545896, -0.07761946, -0.11322073, 0.009402847, 0.009469706, -0.029079204, -0.011061138, 0.039849643, 0.0350206, 0.070884325, 0.08067656, 0.0831625, -0.09496184, 0.03669817, -0.030472336, -0.08878363, -0.022021214, 0.07195285, 0.060049243, 0.0959238, -0.087835304, 0.018727213, 0.060836423, 0.11302894, -0.019822756, 0.019664535, -0.121193156, 0.06348032, -0.0018116008, 0.11461394, -0.047775134, 0.078014076, 0.018726487, 0.02370524, -0.04172337, 0.035197295, -0.021245828, -0.0023215266, 0.10651088, -0.049367275, -0.025000786, 0.084061705, 0.055511154, -0.08955014, 0.018619211, 0.04112456, 0.0588831, 0.021934507, 0.000801354, 0.012307193, -0.05888133, 0.00702477, 0.10999492, 0.06542046, 0.042831954, -0.05274516, -0.13005462, 0.05328298, -0.05174487, -0.052230403, 0.004142349, 0.07970925, 0.032527428, -0.09554582, 0.0058588707, -0.050695244, 0.010173574, -0.028886244, -0.020159928, -0.008600337, 0.08296214, -0.08761086, -0.056122586, -0.06511355, 0.0044797272, -0.10718541, -0.042269733, -0.048084285, 0.03131925, 0.045190223, -0.085791215, -0.039061945, 0.04332866, 0.01693006, -0.122564495, -0.047723934, -0.034879703, 0.09557672, -0.032149445, -0.019104678, 0.04310654, 0.05584895, 0.059294052, 0.017216526, 0.03360469, 0.06232957, 0.039546415, 0.05820275, -0.005385935, 0.009656462, -0.0147404475, -0.0013647159, 0.024501935, 0.0067777736, -0.03421487, 0.06645656, -0.044366006, 0.017375924, 0.007082464, -0.003651085, -0.0317003, -0.055925984], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.35544, 'id': '0dfc6a6c-3d67-44ac-9e86-631f19f92640', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/0dfc6a6c-3d67-44ac-9e86-631f19f92640'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--6. Festival Programs & Additional Operating Files--6.4 Berkeley Graphics and Programs'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/b172fba8-13d4-4e57-a8b0-fb9286843226', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='ebfa78a6-53e0-4291-8f3a-575439d62431', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T17:02:48.558448', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'ebfa78a6-53e0-4291-8f3a-575439d62431', 'create_date': '2021-03-16T21:14:01.928517Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431/thumbnail', 'style_period': [], 'box_number': ['14'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1958 (P. Olivier)'], 'modified_date': '2023-03-27T23:36:29.126349Z', 'accession_number': 'BFMF_B14_F07_023', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['4.75 inches (height) x 6.75 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_023_donut_01', 'duration': None, 'original_filename': 'BFMF_B14_F07_023a.tif', 'mime_type': 'image/tiff', 'width': 4142, 'rank': 0, 'id': 'bbf06f90-872d-4e8e-a49c-28f6d0fcb6d3', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/bbf06f90-872d-4e8e-a49c-28f6d0fcb6d3', 'height': 2960}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_023_donut_02', 'duration': None, 'original_filename': 'BFMF_B14_F07_023b.tif', 'mime_type': 'image/tiff', 'width': 4227, 'rank': 1073741824, 'id': '64cefdcd-5844-4e7b-8065-5b921c6f9f45', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/64cefdcd-5844-4e7b-8065-5b921c6f9f45', 'height': 2745}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner playing banjo at 1958 Berkeley Folk Music Festival concert'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['7'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/ebfa78a6-53e0-4291-8f3a-575439d62431', 'ark': 'ark:/81985/n2mc8rx5d', 'embedding': [0.08080721, 0.006102217, 0.018279584, -0.043870863, -0.033460412, 0.114285804, -0.02116766, -0.0142153315, 0.04215871, 0.0013571067, 0.06840242, -0.021116083, 0.04505102, -0.02688174, -0.029501658, 0.04747396, -0.004881528, -0.021633618, 0.0018876201, 0.031250387, -0.006879921, 0.017097013, -0.03779597, -0.0033863522, -0.027720625, -0.059465382, -0.06125457, 0.037925307, -0.04938386, 0.004679748, 0.03880762, 0.057449415, 0.09395442, 0.0045587895, -0.093467645, 0.04994986, -0.0034922666, -0.025475837, -0.069506854, 0.07439145, -0.022970024, 0.05165449, -0.028470218, -0.026811797, 0.0010836335, -0.03688852, -0.013354853, -0.0024393906, -0.0051405653, -0.006215323, -0.002577236, 0.04265241, 0.030985612, -0.07281663, -0.03894012, -0.04064944, 0.015820751, 0.07210143, 0.053972553, 0.025311392, -0.022162862, -0.08154203, -0.08085656, 0.019784885, -0.059840154, 0.005430861, 0.061918654, -0.05518441, -0.014371694, -0.04132908, 0.025071984, 0.027833916, -0.03493711, -0.08720092, 0.04237629, 0.07408716, -0.03046367, -0.061571606, -0.03601521, -0.10204098, -0.0104906075, -0.022275696, -0.00029565615, -0.09714878, -0.054060236, -0.008807228, -0.052361827, -0.008908866, -0.054393806, -0.0022342613, -0.068297885, -0.011975544, -0.08750124, -0.0861236, 0.01970952, 0.05791733, 0.008620921, -0.016227435, 0.08982958, 0.0722255, -0.024333885, 0.059274066, -0.07863318, 0.053591505, -0.00082290306, -0.073055714, -0.018972581, 0.040266782, -0.009993244, 0.05618853, 0.053469922, -0.059518494, 0.03176349, 0.06612576, 0.10455456, 0.046292428, -0.03992712, 0.0681637, 0.016584123, 0.000784788, -0.04643414, 0.037737135, 0.02755057, 0.008700439, -0.11200611, 0.052787054, 0.025028123, 0.07097269, -0.0055458597, 0.0020078227, 0.029460624, -0.03887984, 0.039342344, -0.045878153, -0.016645445, 0.021664074, -0.008292288, 0.03091651, 0.10142127, -0.013311455, 0.059563294, 0.018997012, -0.02966684, 0.016790938, 0.04037236, -0.05876688, -0.0056051756, -0.03098962, -0.032488853, 0.02360322, 0.024344943, -0.053964358, -0.03764803, 0.010033788, 0.05517764, 0.040667027, 0.11492867, 0.01097815, -0.0040912866, 0.016193189, 0.058266077, -0.002666739, 0.070489034, 0.013807333, -0.03075251, 0.010790032, 0.0075744865, -0.117566526, 0.0056035034, -0.0074593346, -0.037755, 0.03683556, -0.030163338, 0.109697, 0.032130573, -0.021162175, -0.0081483, -0.029263163, -0.0011983494, 0.043333344, 0.026977314, 0.024447493, 0.024987383, -0.016327508, -0.030533068, -0.02454875, 0.009557413, 0.003042915, 0.0681807, 0.0823921, -0.0057688556, -0.0071807033, -0.0388503, -0.05685223, -0.02088661, 0.0072759176, 0.0560762, -0.09928932, 0.053259935, 0.022838803, -0.069349915, -0.06859627, -0.057517108, 0.04639382, -0.042293016, -0.04135881, -6.04192e-05, 0.0874456, -0.022625005, 0.06305688, -0.026058253, -0.07634318, -0.054991644, -0.08102523, 0.009549582, -0.009801085, -0.03970261, -0.08398765, -0.07805862, 0.06348869, 0.02598149, -0.035827752, -0.08059148, -0.02871981, -0.024527915, 0.08802895, 0.02887703, -0.038107116, 0.032929122, 0.07722373, -0.061287213, 0.12600048, 0.05965412, -0.030275382, 0.033692904, 0.0015379225, 0.01688131, -0.09906253, 0.012880795, -0.01701154, -0.055188406, 0.047078703, -0.010429117, 0.009107769, 0.011583903, -0.00044175374, -0.050138228, 0.06433991, -0.0027077931, -0.03237209, 0.06812415, 0.0040838043, -0.06348504, 0.013383267, 0.028237524, -0.08101673, -0.0084716035, -0.03452992, 0.03168621, 0.03792622, 0.020780249, -0.039837025, -0.011639966, -0.055857904, -0.008500403, -0.0130595, 0.047101535, 0.06686923, -0.0002604402, -0.04474689, -0.08232897, 0.025249973, -0.019545896, -0.07761946, -0.11322073, 0.009402847, 0.009469706, -0.029079204, -0.011061138, 0.039849643, 0.0350206, 0.070884325, 0.08067656, 0.0831625, -0.09496184, 0.03669817, -0.030472336, -0.08878363, -0.022021214, 0.07195285, 0.060049243, 0.0959238, -0.087835304, 0.018727213, 0.060836423, 0.11302894, -0.019822756, 0.019664535, -0.121193156, 0.06348032, -0.0018116008, 0.11461394, -0.047775134, 0.078014076, 0.018726487, 0.02370524, -0.04172337, 0.035197295, -0.021245828, -0.0023215266, 0.10651088, -0.049367275, -0.025000786, 0.084061705, 0.055511154, -0.08955014, 0.018619211, 0.04112456, 0.0588831, 0.021934507, 0.000801354, 0.012307193, -0.05888133, 0.00702477, 0.10999492, 0.06542046, 0.042831954, -0.05274516, -0.13005462, 0.05328298, -0.05174487, -0.052230403, 0.004142349, 0.07970925, 0.032527428, -0.09554582, 0.0058588707, -0.050695244, 0.010173574, -0.028886244, -0.020159928, -0.008600337, 0.08296214, -0.08761086, -0.056122586, -0.06511355, 0.0044797272, -0.10718541, -0.042269733, -0.048084285, 0.03131925, 0.045190223, -0.085791215, -0.039061945, 0.04332866, 0.01693006, -0.122564495, -0.047723934, -0.034879703, 0.09557672, -0.032149445, -0.019104678, 0.04310654, 0.05584895, 0.059294052, 0.017216526, 0.03360469, 0.06232957, 0.039546415, 0.05820275, -0.005385935, 0.009656462, -0.0147404475, -0.0013647159, 0.024501935, 0.0067777736, -0.03421487, 0.06645656, -0.044366006, 0.017375924, 0.007082464, -0.003651085, -0.0317003, -0.055925984], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.39932, 'id': 'bbf06f90-872d-4e8e-a49c-28f6d0fcb6d3', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/bbf06f90-872d-4e8e-a49c-28f6d0fcb6d3'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/ebfa78a6-53e0-4291-8f3a-575439d62431', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='33fa709b-4e05-479d-8e8f-0a5dc13b6ac6', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164235', 'label': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (8th : 1965 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164235|TOPICAL|Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T15:27:30.415985', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '33fa709b-4e05-479d-8e8f-0a5dc13b6ac6', 'create_date': '2021-03-15T18:53:47.634057Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6/thumbnail', 'style_period': [], 'box_number': ['16'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1965'], 'modified_date': '2023-03-27T22:10:49.459344Z', 'accession_number': 'BFMF_B16_F06_019_004n', 'license': None, 'date_created_edtf': ['1965-06-23/1965-06-27'], 'physical_description_size': ['35 mm'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B16_F06_019_004n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B16_F06_019_004n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B16_F06_019_004n_am.tif', 'mime_type': 'image/tiff', 'width': 4582, 'rank': 0, 'id': '2843c982-f6f2-474a-8a86-fbf0a6fc552a', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/2843c982-f6f2-474a-8a86-fbf0a6fc552a', 'height': 3164}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Berkeley Folk Music Festival performer', 'label': 'Unidentified man performing at a Berkeley Folk Music Festival event', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B16_F06_019_004n_pm', 'duration': None, 'original_filename': 'BFMF_B16_F06_019_004n_pm.tif', 'mime_type': 'image/tiff', 'width': 4582, 'rank': 0, 'id': '06a9a8ad-fbbf-4fcb-a413-8a74bdb8bda5', 'representative_image_url': None, 'height': 3164}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Berkeley Folk Music Festival performer', 'legacy_identifier': [], 'folder_number': ['6'], 'cultural_context': [], 'contributor': [], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6', 'ark': 'ark:/81985/n2kd1r205', 'embedding': [0.0887877, 0.020460214, -0.010416627, -0.031917054, -0.030359933, 0.06336224, 0.018964225, -0.02588553, 0.023598626, 0.0058506294, 0.051783357, -0.004723927, 0.05202528, -0.010120009, 0.01927801, 0.05733218, -0.019843807, -0.012480724, 0.082634784, -0.0031567572, 0.05608274, 0.05718116, -0.06264134, 0.022117576, -0.02649339, -0.090145834, -0.0062152036, 0.04881086, -0.06385822, 0.009331131, 0.028904865, 0.0096202325, 0.063053116, 0.021959655, -0.08938978, 0.0038202405, 0.0078087794, -0.005762033, -0.08094105, 0.059579175, -0.04477887, 0.011505556, -0.037027434, 0.0031178736, -0.040118095, -0.053019907, -0.036043424, -0.034444276, -0.03789657, -0.019448994, 0.011367508, 0.049165834, 0.044687323, -0.03276376, -0.051466372, -0.053764287, 0.04158547, 0.049767416, 0.0013775647, -0.018416982, -0.017881257, -0.08094455, -0.08031217, -0.012879621, -0.031247037, -0.00045865393, 0.050120432, -0.06650895, 0.055828568, -0.04231948, 0.021202398, 0.028978031, 0.007599644, -0.038890343, 0.046876322, 0.06731154, -0.0110616, -0.036518846, 0.0034876314, -0.12170853, -0.007829019, 0.01574286, -0.00020804645, -0.05059151, -0.034176666, 0.022275863, -0.03184569, 0.022944134, -0.03475433, 0.039528366, -0.0948977, 0.022046931, -0.049399298, -0.116798066, 0.0818189, 0.021544572, 0.017112745, 0.006693224, 0.087279536, 0.10084855, -0.018100848, 0.06533938, -0.06337894, 0.06139082, 0.024820369, -0.07986952, -0.004197447, -0.0017888532, -0.045011792, 0.06939021, 0.038353007, -0.0761573, 0.05966529, 0.024073528, 0.028532637, 0.12447436, -0.022117225, 0.09569636, -0.045851585, 0.057082992, -0.06931716, 0.06877646, 0.0151432995, 0.032768987, -0.07186764, 0.06339646, 0.00978648, 0.04718687, -0.0030910517, 0.0004019626, 0.0112836845, -0.074220404, 0.061918136, -0.017685361, -0.037606366, -0.042326014, 0.023625683, 0.011703365, 0.12064674, -0.016565626, 0.065245405, 0.039320007, -0.07723418, 0.00838171, 0.04470556, -0.05618648, -0.02640182, -0.05538696, -0.017494235, -0.009306811, -0.045768946, -0.026947262, -0.062331427, 0.058583904, 0.054531194, 0.09413019, 0.07414774, -0.012061679, -0.02186312, 0.03763809, 0.088465944, -0.007249793, 0.0527192, 0.031435903, -0.02821495, 0.0272726, 0.0026483948, -0.046252582, 0.04244317, -0.012022583, 0.026674835, 0.049513906, -0.04942225, 0.06209774, 0.05081174, -0.011270485, 0.019920047, -0.07229537, -0.017580736, 0.023837449, -0.0042190338, 0.0043716137, 0.029226065, -0.00494524, -0.03219142, -0.061582457, -0.06102146, -0.03447708, 0.06257365, 0.07360871, -0.013620583, -0.03349137, -0.00888306, -0.046846095, -0.016464053, -0.0065817307, -0.004591836, -0.12133568, 0.089339525, 0.06031887, -0.047683768, -0.0706956, -0.069644384, 0.03641127, -0.061030112, 0.00065445126, -0.011544561, 0.04729848, -0.0037547133, 0.026011752, -0.006550319, -0.027983028, -0.0010251025, -0.051672235, 0.02732637, -0.024592793, -0.026653634, -0.04240202, -0.063002594, 0.024268186, 0.022590257, -0.022099104, -0.10573048, -0.0147506595, -0.045244243, 0.11867938, 0.01853206, -0.002688405, 0.008100876, 0.1059323, -0.037787996, 0.11621552, 0.055105124, -0.012721307, 0.046613082, 0.039506365, 0.07365354, -0.084327385, 0.024061246, -0.017998815, -0.054133568, 0.07958051, -0.054607317, 0.04927298, 0.024698058, 0.00085711223, -0.08794361, 0.05579289, -0.037704527, 0.0033235634, 0.121072955, -0.015949696, -0.09678716, -0.033580624, 0.03523297, -0.043428034, -0.04977956, -0.07877743, 0.040329628, -0.0009659544, -0.035013705, -0.046178095, -0.025751032, -0.053037804, 0.028119864, 0.021962354, 0.058869425, 0.057552923, -0.05424457, -0.044818245, -0.087882474, 0.025940433, 0.016956108, -0.048252285, -0.10329049, -0.032758046, 0.028829863, 0.000923832, -0.018891191, 0.04072716, -0.054562263, 0.061396666, 0.037791573, 0.12011426, -0.08081856, 0.058716204, -0.04741204, -0.05281902, -0.0159612, 0.06141363, 0.00040643223, 0.11364752, 0.0056503406, -0.0012923862, 0.07162427, 0.085459866, -0.03313117, 0.02077577, -0.049460787, 0.009068522, -0.038272407, 0.06337818, -0.019047316, -0.0063738297, 0.038217064, -0.05246291, -0.056608416, -0.03118085, 0.025086407, 0.00013033263, 0.03740531, -0.026564086, -0.008662772, 0.07808861, 0.0718673, -0.026914004, -0.0396881, -0.01624717, 0.03156823, -0.0061729723, -0.0019210256, -0.032783918, -0.02894451, -0.008280114, 0.10946924, 0.043056387, 0.05452452, -0.1102277, -0.14543466, 0.027166488, -0.11953114, -0.10381173, -0.04385811, 0.0578982, 0.07399451, -0.0714234, 0.04517671, -0.037645858, -0.012161395, -0.06721747, -0.07298873, -0.012827788, 0.041561317, -0.07087514, -0.06484522, -0.041456684, 0.011417631, -0.05832436, -0.056014456, -0.040973444, 0.018332778, 0.0863373, -0.061423223, -0.048916645, 0.04307991, 0.033706356, -0.055524074, -0.050543126, -0.04038386, 0.12552992, -0.009054564, 0.012704812, 0.043672573, 0.036344398, -0.0075486596, 0.0013896843, -0.0024946763, 0.049320273, 0.037311535, 0.078588545, 0.035058912, -0.009829693, 0.057434402, -0.0026097847, 0.04546439, 0.033444643, -0.027293772, 0.017179776, -0.03533166, 0.056100048, 0.02783792, -0.02388905, -0.03481747, -0.029994622], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 23, 1965 to June 27, 1965'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.44816, 'id': '2843c982-f6f2-474a-8a86-fbf0a6fc552a', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/2843c982-f6f2-474a-8a86-fbf0a6fc552a'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/33fa709b-4e05-479d-8e8f-0a5dc13b6ac6', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='bd47d447-5f87-4dae-88b7-6e96e083094b', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164235', 'label': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (8th : 1965 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164235|TOPICAL|Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T15:32:18.248279', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'bd47d447-5f87-4dae-88b7-6e96e083094b', 'create_date': '2021-03-16T15:28:52.095055Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b/thumbnail', 'style_period': [], 'box_number': ['16'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1965'], 'modified_date': '2023-03-27T22:13:18.982220Z', 'accession_number': 'BFMF_B16_F06_019_001n', 'license': None, 'date_created_edtf': ['1965-06-23/1965-06-27'], 'physical_description_size': ['35 mm'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B16_F06_019_001n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B16_F06_019_001n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B16_F06_019_001n_am.tif', 'mime_type': 'image/tiff', 'width': 4314, 'rank': 0, 'id': '1fbc464e-848c-4386-8a1a-a313afb61c5b', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/1fbc464e-848c-4386-8a1a-a313afb61c5b', 'height': 3124}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Berkeley Folk Music Festival performer', 'label': 'Unidentified man performing at a Berkeley Folk Music Festival event', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B16_F06_019_001n_pm', 'duration': None, 'original_filename': 'BFMF_B16_F06_019_001n_pm.tif', 'mime_type': 'image/tiff', 'width': 4314, 'rank': 0, 'id': 'b3bb9cfe-3461-4400-a2c3-cc16b1fc7d27', 'representative_image_url': None, 'height': 3124}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Berkeley Folk Music Festival performer', 'legacy_identifier': [], 'folder_number': ['6'], 'cultural_context': [], 'contributor': [], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/bd47d447-5f87-4dae-88b7-6e96e083094b', 'ark': 'ark:/81985/n2xd0rd5s', 'embedding': [0.0887877, 0.020460214, -0.010416627, -0.031917054, -0.030359933, 0.06336224, 0.018964225, -0.02588553, 0.023598626, 0.0058506294, 0.051783357, -0.004723927, 0.05202528, -0.010120009, 0.01927801, 0.05733218, -0.019843807, -0.012480724, 0.082634784, -0.0031567572, 0.05608274, 0.05718116, -0.06264134, 0.022117576, -0.02649339, -0.090145834, -0.0062152036, 0.04881086, -0.06385822, 0.009331131, 0.028904865, 0.0096202325, 0.063053116, 0.021959655, -0.08938978, 0.0038202405, 0.0078087794, -0.005762033, -0.08094105, 0.059579175, -0.04477887, 0.011505556, -0.037027434, 0.0031178736, -0.040118095, -0.053019907, -0.036043424, -0.034444276, -0.03789657, -0.019448994, 0.011367508, 0.049165834, 0.044687323, -0.03276376, -0.051466372, -0.053764287, 0.04158547, 0.049767416, 0.0013775647, -0.018416982, -0.017881257, -0.08094455, -0.08031217, -0.012879621, -0.031247037, -0.00045865393, 0.050120432, -0.06650895, 0.055828568, -0.04231948, 0.021202398, 0.028978031, 0.007599644, -0.038890343, 0.046876322, 0.06731154, -0.0110616, -0.036518846, 0.0034876314, -0.12170853, -0.007829019, 0.01574286, -0.00020804645, -0.05059151, -0.034176666, 0.022275863, -0.03184569, 0.022944134, -0.03475433, 0.039528366, -0.0948977, 0.022046931, -0.049399298, -0.116798066, 0.0818189, 0.021544572, 0.017112745, 0.006693224, 0.087279536, 0.10084855, -0.018100848, 0.06533938, -0.06337894, 0.06139082, 0.024820369, -0.07986952, -0.004197447, -0.0017888532, -0.045011792, 0.06939021, 0.038353007, -0.0761573, 0.05966529, 0.024073528, 0.028532637, 0.12447436, -0.022117225, 0.09569636, -0.045851585, 0.057082992, -0.06931716, 0.06877646, 0.0151432995, 0.032768987, -0.07186764, 0.06339646, 0.00978648, 0.04718687, -0.0030910517, 0.0004019626, 0.0112836845, -0.074220404, 0.061918136, -0.017685361, -0.037606366, -0.042326014, 0.023625683, 0.011703365, 0.12064674, -0.016565626, 0.065245405, 0.039320007, -0.07723418, 0.00838171, 0.04470556, -0.05618648, -0.02640182, -0.05538696, -0.017494235, -0.009306811, -0.045768946, -0.026947262, -0.062331427, 0.058583904, 0.054531194, 0.09413019, 0.07414774, -0.012061679, -0.02186312, 0.03763809, 0.088465944, -0.007249793, 0.0527192, 0.031435903, -0.02821495, 0.0272726, 0.0026483948, -0.046252582, 0.04244317, -0.012022583, 0.026674835, 0.049513906, -0.04942225, 0.06209774, 0.05081174, -0.011270485, 0.019920047, -0.07229537, -0.017580736, 0.023837449, -0.0042190338, 0.0043716137, 0.029226065, -0.00494524, -0.03219142, -0.061582457, -0.06102146, -0.03447708, 0.06257365, 0.07360871, -0.013620583, -0.03349137, -0.00888306, -0.046846095, -0.016464053, -0.0065817307, -0.004591836, -0.12133568, 0.089339525, 0.06031887, -0.047683768, -0.0706956, -0.069644384, 0.03641127, -0.061030112, 0.00065445126, -0.011544561, 0.04729848, -0.0037547133, 0.026011752, -0.006550319, -0.027983028, -0.0010251025, -0.051672235, 0.02732637, -0.024592793, -0.026653634, -0.04240202, -0.063002594, 0.024268186, 0.022590257, -0.022099104, -0.10573048, -0.0147506595, -0.045244243, 0.11867938, 0.01853206, -0.002688405, 0.008100876, 0.1059323, -0.037787996, 0.11621552, 0.055105124, -0.012721307, 0.046613082, 0.039506365, 0.07365354, -0.084327385, 0.024061246, -0.017998815, -0.054133568, 0.07958051, -0.054607317, 0.04927298, 0.024698058, 0.00085711223, -0.08794361, 0.05579289, -0.037704527, 0.0033235634, 0.121072955, -0.015949696, -0.09678716, -0.033580624, 0.03523297, -0.043428034, -0.04977956, -0.07877743, 0.040329628, -0.0009659544, -0.035013705, -0.046178095, -0.025751032, -0.053037804, 0.028119864, 0.021962354, 0.058869425, 0.057552923, -0.05424457, -0.044818245, -0.087882474, 0.025940433, 0.016956108, -0.048252285, -0.10329049, -0.032758046, 0.028829863, 0.000923832, -0.018891191, 0.04072716, -0.054562263, 0.061396666, 0.037791573, 0.12011426, -0.08081856, 0.058716204, -0.04741204, -0.05281902, -0.0159612, 0.06141363, 0.00040643223, 0.11364752, 0.0056503406, -0.0012923862, 0.07162427, 0.085459866, -0.03313117, 0.02077577, -0.049460787, 0.009068522, -0.038272407, 0.06337818, -0.019047316, -0.0063738297, 0.038217064, -0.05246291, -0.056608416, -0.03118085, 0.025086407, 0.00013033263, 0.03740531, -0.026564086, -0.008662772, 0.07808861, 0.0718673, -0.026914004, -0.0396881, -0.01624717, 0.03156823, -0.0061729723, -0.0019210256, -0.032783918, -0.02894451, -0.008280114, 0.10946924, 0.043056387, 0.05452452, -0.1102277, -0.14543466, 0.027166488, -0.11953114, -0.10381173, -0.04385811, 0.0578982, 0.07399451, -0.0714234, 0.04517671, -0.037645858, -0.012161395, -0.06721747, -0.07298873, -0.012827788, 0.041561317, -0.07087514, -0.06484522, -0.041456684, 0.011417631, -0.05832436, -0.056014456, -0.040973444, 0.018332778, 0.0863373, -0.061423223, -0.048916645, 0.04307991, 0.033706356, -0.055524074, -0.050543126, -0.04038386, 0.12552992, -0.009054564, 0.012704812, 0.043672573, 0.036344398, -0.0075486596, 0.0013896843, -0.0024946763, 0.049320273, 0.037311535, 0.078588545, 0.035058912, -0.009829693, 0.057434402, -0.0026097847, 0.04546439, 0.033444643, -0.027293772, 0.017179776, -0.03533166, 0.056100048, 0.02783792, -0.02388905, -0.03481747, -0.029994622], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 23, 1965 to June 27, 1965'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.38092, 'id': '1fbc464e-848c-4386-8a1a-a313afb61c5b', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/1fbc464e-848c-4386-8a1a-a313afb61c5b'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/bd47d447-5f87-4dae-88b7-6e96e083094b', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164235', 'label': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.)', 'variants': ['Folk Music Festival (8th : 1965 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164235|TOPICAL|Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (8th : 1965 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T15:32:26.224838', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2', 'create_date': '2021-03-16T21:06:33.590286Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2/thumbnail', 'style_period': [], 'box_number': ['16'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1965'], 'modified_date': '2023-03-27T22:13:36.441074Z', 'accession_number': 'BFMF_B16_F06_019_002n', 'license': None, 'date_created_edtf': ['1965-06-23/1965-06-27'], 'physical_description_size': ['35 mm'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B16_F06_019_002n_am.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B16_F06_019_002n_am_donut_01', 'duration': None, 'original_filename': 'BFMF_B16_F06_019_002n_am.tif', 'mime_type': 'image/tiff', 'width': 4582, 'rank': 0, 'id': '8c665fea-9e03-4ee0-a9e7-538ec90c31cc', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/8c665fea-9e03-4ee0-a9e7-538ec90c31cc', 'height': 3164}, {'role': 'Preservation', 'streaming_url': None, 'description': 'Berkeley Folk Music Festival performer', 'label': 'Unidentified man performing at a Berkeley Folk Music Festival event', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B16_F06_019_002n_pm', 'duration': None, 'original_filename': 'BFMF_B16_F06_019_002n_pm.tif', 'mime_type': 'image/tiff', 'width': 4582, 'rank': 0, 'id': 'b227ad97-7639-4120-a2b2-8d386c279f27', 'representative_image_url': None, 'height': 3164}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Unidentified man performing at a Berkeley Folk Music Festival event. Digital image scanned from black and white negative.'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Berkeley Folk Music Festival performer', 'legacy_identifier': [], 'folder_number': ['6'], 'cultural_context': [], 'contributor': [], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128343', 'label': 'black-and-white negatives', 'variants': ['black-and-white negative', 'black and white negatives', 'negatives, black-and-white', 'zwart-wit negatief', 'négatif en noir et blanc', 'Schwarzweiß-Negative', 'Schwarzweißnegativ', 'Schwarzweißnegative', 'negativi b/n', 'negativo blanco y negro'], 'facet': 'http://vocab.getty.edu/aat/300128343||black-and-white negatives'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2', 'ark': 'ark:/81985/n2rn30p96', 'embedding': [0.0887877, 0.020460214, -0.010416627, -0.031917054, -0.030359933, 0.06336224, 0.018964225, -0.02588553, 0.023598626, 0.0058506294, 0.051783357, -0.004723927, 0.05202528, -0.010120009, 0.01927801, 0.05733218, -0.019843807, -0.012480724, 0.082634784, -0.0031567572, 0.05608274, 0.05718116, -0.06264134, 0.022117576, -0.02649339, -0.090145834, -0.0062152036, 0.04881086, -0.06385822, 0.009331131, 0.028904865, 0.0096202325, 0.063053116, 0.021959655, -0.08938978, 0.0038202405, 0.0078087794, -0.005762033, -0.08094105, 0.059579175, -0.04477887, 0.011505556, -0.037027434, 0.0031178736, -0.040118095, -0.053019907, -0.036043424, -0.034444276, -0.03789657, -0.019448994, 0.011367508, 0.049165834, 0.044687323, -0.03276376, -0.051466372, -0.053764287, 0.04158547, 0.049767416, 0.0013775647, -0.018416982, -0.017881257, -0.08094455, -0.08031217, -0.012879621, -0.031247037, -0.00045865393, 0.050120432, -0.06650895, 0.055828568, -0.04231948, 0.021202398, 0.028978031, 0.007599644, -0.038890343, 0.046876322, 0.06731154, -0.0110616, -0.036518846, 0.0034876314, -0.12170853, -0.007829019, 0.01574286, -0.00020804645, -0.05059151, -0.034176666, 0.022275863, -0.03184569, 0.022944134, -0.03475433, 0.039528366, -0.0948977, 0.022046931, -0.049399298, -0.116798066, 0.0818189, 0.021544572, 0.017112745, 0.006693224, 0.087279536, 0.10084855, -0.018100848, 0.06533938, -0.06337894, 0.06139082, 0.024820369, -0.07986952, -0.004197447, -0.0017888532, -0.045011792, 0.06939021, 0.038353007, -0.0761573, 0.05966529, 0.024073528, 0.028532637, 0.12447436, -0.022117225, 0.09569636, -0.045851585, 0.057082992, -0.06931716, 0.06877646, 0.0151432995, 0.032768987, -0.07186764, 0.06339646, 0.00978648, 0.04718687, -0.0030910517, 0.0004019626, 0.0112836845, -0.074220404, 0.061918136, -0.017685361, -0.037606366, -0.042326014, 0.023625683, 0.011703365, 0.12064674, -0.016565626, 0.065245405, 0.039320007, -0.07723418, 0.00838171, 0.04470556, -0.05618648, -0.02640182, -0.05538696, -0.017494235, -0.009306811, -0.045768946, -0.026947262, -0.062331427, 0.058583904, 0.054531194, 0.09413019, 0.07414774, -0.012061679, -0.02186312, 0.03763809, 0.088465944, -0.007249793, 0.0527192, 0.031435903, -0.02821495, 0.0272726, 0.0026483948, -0.046252582, 0.04244317, -0.012022583, 0.026674835, 0.049513906, -0.04942225, 0.06209774, 0.05081174, -0.011270485, 0.019920047, -0.07229537, -0.017580736, 0.023837449, -0.0042190338, 0.0043716137, 0.029226065, -0.00494524, -0.03219142, -0.061582457, -0.06102146, -0.03447708, 0.06257365, 0.07360871, -0.013620583, -0.03349137, -0.00888306, -0.046846095, -0.016464053, -0.0065817307, -0.004591836, -0.12133568, 0.089339525, 0.06031887, -0.047683768, -0.0706956, -0.069644384, 0.03641127, -0.061030112, 0.00065445126, -0.011544561, 0.04729848, -0.0037547133, 0.026011752, -0.006550319, -0.027983028, -0.0010251025, -0.051672235, 0.02732637, -0.024592793, -0.026653634, -0.04240202, -0.063002594, 0.024268186, 0.022590257, -0.022099104, -0.10573048, -0.0147506595, -0.045244243, 0.11867938, 0.01853206, -0.002688405, 0.008100876, 0.1059323, -0.037787996, 0.11621552, 0.055105124, -0.012721307, 0.046613082, 0.039506365, 0.07365354, -0.084327385, 0.024061246, -0.017998815, -0.054133568, 0.07958051, -0.054607317, 0.04927298, 0.024698058, 0.00085711223, -0.08794361, 0.05579289, -0.037704527, 0.0033235634, 0.121072955, -0.015949696, -0.09678716, -0.033580624, 0.03523297, -0.043428034, -0.04977956, -0.07877743, 0.040329628, -0.0009659544, -0.035013705, -0.046178095, -0.025751032, -0.053037804, 0.028119864, 0.021962354, 0.058869425, 0.057552923, -0.05424457, -0.044818245, -0.087882474, 0.025940433, 0.016956108, -0.048252285, -0.10329049, -0.032758046, 0.028829863, 0.000923832, -0.018891191, 0.04072716, -0.054562263, 0.061396666, 0.037791573, 0.12011426, -0.08081856, 0.058716204, -0.04741204, -0.05281902, -0.0159612, 0.06141363, 0.00040643223, 0.11364752, 0.0056503406, -0.0012923862, 0.07162427, 0.085459866, -0.03313117, 0.02077577, -0.049460787, 0.009068522, -0.038272407, 0.06337818, -0.019047316, -0.0063738297, 0.038217064, -0.05246291, -0.056608416, -0.03118085, 0.025086407, 0.00013033263, 0.03740531, -0.026564086, -0.008662772, 0.07808861, 0.0718673, -0.026914004, -0.0396881, -0.01624717, 0.03156823, -0.0061729723, -0.0019210256, -0.032783918, -0.02894451, -0.008280114, 0.10946924, 0.043056387, 0.05452452, -0.1102277, -0.14543466, 0.027166488, -0.11953114, -0.10381173, -0.04385811, 0.0578982, 0.07399451, -0.0714234, 0.04517671, -0.037645858, -0.012161395, -0.06721747, -0.07298873, -0.012827788, 0.041561317, -0.07087514, -0.06484522, -0.041456684, 0.011417631, -0.05832436, -0.056014456, -0.040973444, 0.018332778, 0.0863373, -0.061423223, -0.048916645, 0.04307991, 0.033706356, -0.055524074, -0.050543126, -0.04038386, 0.12552992, -0.009054564, 0.012704812, 0.043672573, 0.036344398, -0.0075486596, 0.0013896843, -0.0024946763, 0.049320273, 0.037311535, 0.078588545, 0.035058912, -0.009829693, 0.057434402, -0.0026097847, 0.04546439, 0.033444643, -0.027293772, 0.017179776, -0.03533166, 0.056100048, 0.02783792, -0.02388905, -0.03481747, -0.029994622], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 23, 1965 to June 27, 1965'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.44816, 'id': '8c665fea-9e03-4ee0-a9e7-538ec90c31cc', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/8c665fea-9e03-4ee0-a9e7-538ec90c31cc'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/eaae6724-dfcc-4d13-bf5e-0f27f83f7ba2', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='09b79516-1fdc-4cd5-8667-dfeefd0fca92', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'https://sws.geonames.org/5346984/', 'label': 'Eucalyptus Grove', 'variants': [], 'facet': 'https://sws.geonames.org/5346984/|GEOGRAPHICAL|Eucalyptus Grove (Geographical)', 'label_with_role': 'Eucalyptus Grove (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164237', 'label': 'Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.)', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018164237|TOPICAL|Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (10th : 1967 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:27:27.295172', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '09b79516-1fdc-4cd5-8667-dfeefd0fca92', 'create_date': '2021-03-15T16:07:04.648200Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92/thumbnail', 'style_period': [], 'box_number': ['17'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1967'], 'modified_date': '2023-03-27T22:50:48.544693Z', 'accession_number': 'BFMF_B17_F02_001', 'license': None, 'date_created_edtf': ['1967-07-04'], 'physical_description_size': [], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F02_001_donut_01', 'duration': None, 'original_filename': 'BFMF_B17_F02_001a.tif', 'mime_type': 'image/tiff', 'width': 4007, 'rank': 0, 'id': '7925d8e1-65b3-408d-882f-af476f1dfcc5', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/7925d8e1-65b3-408d-882f-af476f1dfcc5', 'height': 4246}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F02_001_donut_02', 'duration': None, 'original_filename': 'BFMF_B17_F02_001b.tif', 'mime_type': 'image/tiff', 'width': 3980, 'rank': 1073741824, 'id': '167ef0f7-ed7c-429c-9641-be7419ce6564', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/167ef0f7-ed7c-429c-9641-be7419ce6564', 'height': 4229}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Audience watching a performer at the Berkeley Folk Music Festival campfire in Eucalyptus Grove'], 'csv_metadata_update_jobs': ['3b4ea97f-54f8-43a1-b027-d600b9673684', '64502329-9646-4bcb-a659-fb6e96277a19'], 'title': 'Audience at Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['2'], 'cultural_context': [], 'contributor': [], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/09b79516-1fdc-4cd5-8667-dfeefd0fca92', 'ark': 'ark:/81985/n2x92206b', 'embedding': [0.1038575, 0.0027636057, -0.00811273, -0.00571256, 0.0104657635, 0.09706197, 0.0015292102, -0.005891333, 0.06453152, 0.061318014, 0.038358018, 0.0052473275, 0.0050691376, 0.013974277, 0.0042100954, 0.08776216, -0.0001230238, -0.04249232, 0.046146408, 0.021119757, 0.022596307, 0.0074151764, -0.017388372, 0.03923372, -0.050043073, -0.088322714, -0.019488724, 0.030683286, -0.07577962, -0.01863558, 0.05601624, 0.025679125, 0.023673493, 0.031049171, -0.08174761, 0.029780174, 0.026635798, -0.03687644, -0.056953575, 0.06407476, -0.026827887, 0.015812663, -0.031557567, -0.028977562, -0.058239438, -0.06697319, -0.027036382, -0.044924967, -0.02438462, -0.043292996, -0.010637256, 0.024328012, 0.050365407, -0.037314158, -0.047083594, -0.05848996, 0.021963932, 0.056672238, 0.033163566, 0.00021354409, 0.033245217, -0.050151594, -0.09966799, 0.011739833, -0.056184266, 0.0039689834, 0.052702405, -0.03440166, 0.062054858, -0.09828634, 0.001238831, 0.060495455, 0.021892468, -0.064627945, 0.026173458, 0.07547728, -0.004441307, -0.0087545635, 0.015408761, -0.1216966, -0.00365534, -0.022162335, -0.005213193, -0.051307034, -0.024943948, 0.061375324, -0.037881427, -0.0063969363, -0.034814805, -0.011845917, -0.08898739, 0.028211545, -0.036836468, -0.0820969, 0.05286933, 0.046064172, 0.034943007, -0.014751401, 0.13324365, 0.08956009, -0.042787146, 0.062273566, -0.0295333, 0.035449266, 0.040505975, -0.117645, -0.01976844, 0.024471715, -0.017318401, 0.08071893, 0.059967443, -0.078467585, 0.058315314, 0.059957698, 0.026643211, 0.082290344, -0.011102935, 0.059703343, -0.00085918425, 0.0522997, -0.017738378, 0.046273444, 0.030318866, 0.011211694, -0.05451864, 0.00032807115, 0.0061319815, 0.055730104, 0.013433161, -0.0062389835, 0.013291258, -0.07391338, 0.11409558, -0.04435598, -0.074267924, 0.004717301, 0.013883058, -0.0072248797, 0.08908204, -0.021504926, 0.064643204, 0.013537156, -0.066096514, 0.006228393, -0.0043781563, -0.05712464, -0.05575066, -0.050479416, -0.05541147, 0.013107672, -0.019415513, -0.02783744, -0.03014371, 0.041267756, 0.09619692, 0.09728712, 0.06764259, 0.010217109, 0.032430522, 0.027929226, 0.07588213, 0.008133425, 0.03938635, 0.010199838, -0.031963576, 0.021911168, 0.012099219, -0.07102886, 0.0064628236, 0.016076826, 0.025685899, 0.06831147, -0.055981997, 0.07853801, 0.047428858, 0.014326169, -0.0044726687, -0.053133134, -0.026791284, 0.05684418, 0.006313256, 0.034719817, 0.02846358, 0.0037866107, -0.030774146, -0.058506623, -0.0036896325, -0.045121077, 0.09071961, 0.058104493, -0.015610586, -0.01899568, -0.028446505, -0.057634953, -0.038241744, 0.042117048, 0.050487038, -0.134957, 0.08027745, 0.055587165, -0.06599496, -0.07161115, -0.10015082, 0.03157197, -0.05278927, -0.0040091877, 0.015435997, 0.094117954, 0.023026867, -0.040794082, 0.0056448244, -0.014658706, -0.022385301, -0.051616844, 0.02148128, -0.04447353, -0.07966208, -0.038988113, -0.10626585, 0.06831249, 0.06813531, -0.07431795, -0.05088885, -0.03003778, -0.030183377, 0.09595829, -0.0041566533, -0.03937243, 0.05636653, 0.088117436, -0.035844345, 0.07781685, -0.015596962, -0.018663146, 0.01458702, 0.047189426, 0.052485492, -0.06617349, 0.0019754178, -0.04559608, -0.046906665, 0.04357927, -0.03925531, 0.045991488, -0.0054942956, 0.002959201, -0.06997063, 0.051498514, -0.041280232, 0.012063338, 0.14752875, -0.048388306, -0.06661813, -0.017264608, 0.0321169, -0.0452236, -0.08371444, -0.08197754, 0.04532973, 0.014451026, 0.013561303, -0.0641362, -0.022396384, -0.03584389, 0.05201741, -0.02213263, 0.042461812, 0.02204548, -0.031770717, 0.00047391286, -0.069137506, 0.030889481, -0.018334411, -0.05968449, -0.08755996, -0.045265373, 0.018543452, 0.0054525984, 0.024908049, 0.042872902, -0.009949873, 0.0670928, 0.01590791, 0.11307658, -0.09586955, 0.0067804726, -0.072488554, -0.01916264, -0.022376867, 0.021066038, -0.03569449, 0.07304173, -0.013128415, -0.0083704395, 0.01707915, 0.07869916, -0.060448077, 0.06079369, -0.025330579, 0.06448828, -0.031308085, 0.035501014, -0.03868871, 0.014055983, 0.025751505, -0.054855715, -0.034643847, -0.024188424, 0.021152468, 0.011793232, 0.09024168, -0.035325266, -0.011562335, 0.08249715, 0.04266538, -0.041899204, -0.032687902, -0.056218393, 0.069990925, -0.025462922, -0.035318412, 0.0033678103, -0.050764203, -0.012470795, 0.043701086, 0.042027336, 0.047331177, -0.053133033, -0.14840704, 0.01517599, -0.1393852, -0.08455849, -0.028806757, 0.07512301, 0.097401, -0.059901364, 0.061161067, -0.04889018, 0.0064079063, -0.029662369, -0.041506756, -0.0035209858, 0.052685738, -0.05701344, -0.0487247, -0.047935124, -0.016543683, -0.043475132, -0.020997683, -0.03145462, 0.010430846, 0.08942219, -0.11219543, -0.037574913, 0.029050576, 0.03286267, -0.07952473, -0.039864752, -0.022426546, 0.08202525, 0.021350734, 0.009099594, 0.032403626, 0.05470348, 0.013065291, 0.006646081, 0.029599173, 0.06425551, 0.013472334, 0.11736475, 0.006944332, -0.055395257, 0.050383233, -0.038115423, 0.0574814, 0.020765854, 0.0031542098, 0.010072411, -0.030456834, 0.015971692, 0.06789996, -0.0029375101, -0.06599901, -0.031182026], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['July 4, 1967'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.94371, 'id': '7925d8e1-65b3-408d-882f-af476f1dfcc5', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/7925d8e1-65b3-408d-882f-af476f1dfcc5'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/09b79516-1fdc-4cd5-8667-dfeefd0fca92', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='c45a76c9-adcc-42b3-9193-0e4da5b14a17', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Geographical', 'id': 'https://sws.geonames.org/5398331/', 'label': 'Sproul Plaza', 'variants': [], 'facet': 'https://sws.geonames.org/5398331/|GEOGRAPHICAL|Sproul Plaza (Geographical)', 'label_with_role': 'Sproul Plaza (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n94014518', 'label': 'Carlebach, Shlomo, 1925-1994', 'variants': ['Ḳarlibakh, Shelomoh, 1925-1994', 'קרליבך, שלמה', 'קרליבך, שלמה בן נפתלי'], 'facet': 'http://id.loc.gov/authorities/names/n94014518|TOPICAL|Carlebach, Shlomo, 1925-1994 (Topical)', 'label_with_role': 'Carlebach, Shlomo, 1925-1994 (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164238', 'label': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)', 'variants': ['A.S.U.C. Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164238|TOPICAL|Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (11th : 1968 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:55:06.943016', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'c45a76c9-adcc-42b3-9193-0e4da5b14a17', 'create_date': '2021-03-16T16:09:16.826723Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17/thumbnail', 'style_period': [], 'box_number': ['17'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1968 (slides)'], 'modified_date': '2023-03-27T22:16:50.364870Z', 'accession_number': 'BFMF_B17_F03_009s', 'license': None, 'date_created_edtf': ['1968-07-04'], 'physical_description_size': [], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'BFMF_B17_F03_009s.tif', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F03_009s_donut_01', 'duration': None, 'original_filename': 'BFMF_B17_F03_009s.tif', 'mime_type': 'image/tiff', 'width': 5035, 'rank': 0, 'id': '4e5867a6-4e85-4620-8ad5-0c77cfb49702', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/4e5867a6-4e85-4620-8ad5-0c77cfb49702', 'height': 3347}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['People dancing in Sproul Plaza as Shlomo Carlebach performs on stage during the 1968 Berkeley Folk Music Festival'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Audience at 1968 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['3'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128366', 'label': 'color slides', 'variants': ['color slide', 'slides, color', 'diapositivas en color', 'colour slide', 'slides, colour', 'kleurendia', 'diapositive couleur (slide)', 'diapositive en couleur (color slide)', 'diapositive en couleurs (color slides)', 'diapositives couleur (color slide)', 'diapositives en couleurs (color slides)', 'Farbdias', 'diapositiva en color'], 'facet': 'http://vocab.getty.edu/aat/300128366||color slides'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/c45a76c9-adcc-42b3-9193-0e4da5b14a17', 'ark': 'ark:/81985/n2m32nr7v', 'embedding': [0.10382053, -0.022191964, -0.010555267, -0.03748148, -0.087388866, 0.06118203, 0.011435765, -0.026747592, 0.039685518, 0.019321134, 0.041039467, 0.0026992064, 0.03471279, -0.023442358, 0.031949572, 0.017640391, 0.009446767, -0.025525216, 0.06286411, 0.011576029, 0.010014938, -0.0057870373, -0.037875205, 0.060224447, -0.07831003, -0.06540982, 0.020531494, 0.010198582, -0.0837716, 0.014302891, 0.02650426, 0.072615534, 0.10136925, 0.040099494, -0.0538506, 0.018971602, 0.0036294044, -0.03080419, -0.07295756, 0.04555091, -0.04837658, -0.017049175, -0.0036843375, -0.04138709, -0.001892054, -0.010946066, 0.0047613764, 0.003602109, -0.025464796, -0.004707443, 0.0061018965, 0.049451623, 0.00813008, -0.042490084, -0.038331658, -0.055227, 0.034308672, 0.065734565, 0.011848931, -0.010317307, 0.044025984, -0.017047605, -0.068977036, -0.026040638, -0.07902195, -0.031953454, 0.08969259, -0.047774475, 0.021443784, -0.08482131, -0.027160706, 0.06516086, -0.0003993015, -0.07252636, 0.044591833, 0.07558005, -0.025499718, -0.060980104, -0.050000135, -0.1355867, 0.020382762, -0.056175563, -0.011529124, -0.054310825, -0.02192247, 0.04254074, -0.036106348, 0.002111791, 0.0024332902, 0.032612313, -0.0886612, 0.026545672, -0.05575484, -0.12551023, 0.027114008, 0.041827455, -0.034314748, 0.0070539834, 0.1499894, 0.06546157, -0.047899522, 0.06394722, -0.04139614, 0.04455455, 0.036701, -0.15003757, 0.03382427, 0.009424137, -0.03818623, 0.06297629, 0.032937184, -0.050766345, 0.11357029, 0.009778073, 0.008297384, 0.10107189, -0.006239962, 0.083188124, -0.014660372, 0.051690634, -0.013783126, 0.052886654, 0.025896324, 0.027090264, -0.0010072733, 0.04002893, 0.018362856, 0.06574672, 0.010804326, -0.05128954, 0.017482612, -0.0413363, 0.032616537, -0.04662724, -0.056580335, -0.07461261, 0.019608079, -0.015426955, 0.11648352, -0.04833273, 0.080736645, 0.019430304, 0.011164889, -0.0051303683, 0.027267536, -0.06494946, -0.041685678, 0.01420367, -0.0029122885, 0.017263712, -0.05063938, -0.02423024, -0.03797301, 0.072745025, 0.048260238, 0.10869885, 0.076985344, 0.00690471, 0.023791768, 0.0070201266, 0.09607919, 0.010068054, 0.06402833, -0.022580488, -0.034825455, 0.0054212837, 0.010023466, -0.059162874, 0.008259621, 0.008555672, -0.008497627, 0.075173184, -0.0042026173, 0.0649207, 0.048244875, 0.032326337, 0.03205896, -0.020052787, -0.0196831, 0.04421804, 0.019519482, -0.025893552, 0.038147654, -0.0116011845, -0.019790012, -0.07447737, -0.0102871135, -0.0063561066, 0.0465771, 0.082120694, -0.027930593, -0.056738257, -0.056049768, -0.04936026, -0.015545955, 0.03206595, 0.034025267, -0.094004735, 0.07308744, 0.05722891, -0.12393671, -0.042077497, -0.049040176, 0.052200716, -0.02859867, 0.0012476799, -0.0063596517, 0.03893619, 0.025254898, 0.004221808, -0.013876979, -0.025642667, -0.02533914, -0.039793763, 0.04058092, -0.00118779, -0.047652587, -0.045779448, -0.1239293, 0.039264176, 0.020334216, -0.060006455, -0.071822666, -0.021921368, -0.05526336, 0.10512353, -0.032187663, -0.011431456, -0.006301038, 0.10118983, -0.07623745, 0.06348089, 0.034899283, -0.007763305, 0.026102148, -0.020708041, 0.051541153, -0.036442522, 0.004824413, -0.068810314, -0.012039272, 0.037096415, -0.034764268, 0.057361048, -0.028732138, -0.02268152, -0.05204137, 0.07878271, -0.046004657, -0.0021235424, 0.08176114, -0.030118553, -0.07161382, 0.017555024, 0.021777872, -0.082283944, -0.03437441, -0.09573651, 0.041074425, 0.04421196, -0.033471975, -0.03561188, -0.05826677, -0.035705455, 0.029333862, -0.04312467, 0.016029106, 0.050085366, -0.048494454, -0.0027973242, -0.069260135, 0.002001304, -0.037499823, -0.10234983, -0.07417194, -0.035592362, 0.030294208, -0.040683504, 0.016667314, 0.09169043, -0.017112246, 0.04099558, 0.058967587, 0.07684715, -0.06309478, 0.06177176, -0.026354501, -0.01760151, 0.038118795, 0.019477185, 0.0074947136, 0.07581561, -0.03051067, -0.00065616996, 0.04222359, 0.106673405, -0.053857442, 0.062844805, -0.073839724, 0.028567988, -0.014578591, 0.12274805, -0.004043591, 0.024310406, -0.008009912, -0.012543548, -0.033335302, -0.03882879, -0.033674363, 0.034510445, 0.0205588, -0.036213204, 0.00387091, 0.07632969, 0.08499678, 0.0049929987, 0.028326131, -0.03432946, 0.045779973, -0.015650973, 0.015393789, -0.0036171204, -0.06717776, 0.01869453, 0.04028251, 0.031039044, 0.095574945, -0.05920194, -0.11248598, 0.034556948, -0.1474138, -0.09518408, -0.011189223, 0.01781353, 0.11251118, -0.0003568761, 0.042633858, -0.042083964, -0.008026583, -0.054654352, -0.025723223, 0.014698211, 0.07421327, -0.06913179, -0.045443263, -0.013871329, 0.027362678, -0.041403085, -0.065507546, -0.037876725, 0.010601226, 0.031311087, -0.09032181, -0.087632366, -0.009441384, 0.02871868, -0.08844712, -0.07746625, -0.03528634, 0.11153826, 0.009783458, -0.0027239532, 0.047511376, 0.04947645, 0.03518139, 9.587197e-05, 0.01911397, 0.07121589, 0.018992605, 0.073774174, -0.013386172, -0.03168705, -9.537802e-05, -0.004145297, 0.033823237, 0.00018894335, 0.0032797616, 0.057922505, -0.023644974, 0.055257514, 0.0007741539, 0.07982807, -0.08054808, 0.0046865335], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['July 4, 1968'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.50433, 'id': '4e5867a6-4e85-4620-8ad5-0c77cfb49702', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/4e5867a6-4e85-4620-8ad5-0c77cfb49702'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/c45a76c9-adcc-42b3-9193-0e4da5b14a17', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='8562d006-4c78-4033-8a83-75fab0b7a4c1', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/no2018001224', 'label': 'Pauley Ballroom (Berkeley, Calif.)', 'variants': ['University of California, Berkeley. Pauley Ballroom (Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018001224|GEOGRAPHICAL|Pauley Ballroom (Berkeley, Calif.) (Geographical)', 'label_with_role': 'Pauley Ballroom (Berkeley, Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164123', 'label': 'Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.)', 'variants': ['ASUC-SUPERB Bekeley Folk Music Festival (15th : 1970 : Berkeley, Calif.)', 'Berkeley Folk Festival (15th : 1970 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164123|TOPICAL|Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (15th : 1970 : Berkeley, Calif.) (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T15:15:31.854949', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '8562d006-4c78-4033-8a83-75fab0b7a4c1', 'create_date': '2021-03-16T05:23:12.707271Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1/thumbnail', 'style_period': [], 'box_number': ['17'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1970 (John Bishop, photographs)'], 'modified_date': '2023-03-27T22:26:54.334962Z', 'accession_number': 'BFMF_B17_F05_023', 'license': None, 'date_created_edtf': ['1970-10-09'], 'physical_description_size': [], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F05_023_donut_01', 'duration': None, 'original_filename': 'BFMF_B17_F05_023a.tif', 'mime_type': 'image/tiff', 'width': 4212, 'rank': 0, 'id': '5b08e2a6-c87a-4d0e-8e9b-5d174504512c', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/5b08e2a6-c87a-4d0e-8e9b-5d174504512c', 'height': 3886}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B17_F05_023_donut_02', 'duration': None, 'original_filename': 'BFMF_B17_F05_023b.tif', 'mime_type': 'image/tiff', 'width': 4212, 'rank': 1073741824, 'id': '3fc44508-b041-487a-98c2-9370859f0918', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/3fc44508-b041-487a-98c2-9370859f0918', 'height': 3898}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Guitar player in silhouette at the Friday night concert in Pauley Ballroom during the 1970 Berkeley Folk Music Festival'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': '1970 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['5'], 'cultural_context': [], 'contributor': [{'role': 'Contributor', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|ctb|Berkeley Folk Music Festival (Contributor)', 'label_with_role': 'Berkeley Folk Music Festival (Contributor)'}, {'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/n80086600', 'label': 'Bishop, John Melville', 'variants': ['Bishop, John (John Melville)'], 'facet': 'http://id.loc.gov/authorities/names/n80086600|pht|Bishop, John Melville (Photographer)', 'label_with_role': 'Bishop, John Melville (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/8562d006-4c78-4033-8a83-75fab0b7a4c1', 'ark': 'ark:/81985/n2j09wk5j', 'embedding': [0.09126034, -0.0028452172, 0.01182489, -0.0461487, -0.04592188, 0.11056077, -0.03340583, -0.031988665, 0.042763915, 0.027483491, 0.04526793, -0.010876595, 0.072664596, -0.025636202, 0.014001108, 0.050316583, -0.008044788, -0.0032871945, 0.08314811, 0.041704156, 0.010387915, 0.056316316, -0.052904774, 0.06343546, -0.05564262, -0.052144215, 0.001703931, 0.014009419, -0.10722795, -0.005006141, 0.017104596, 0.036111027, 0.05028357, 0.04486349, -0.07392306, 0.05663971, -0.003282846, -0.043984007, -0.08184545, 0.09568426, -0.030178852, -0.005762516, -0.03804251, -0.05614036, -0.04547869, -0.09738929, -0.024259217, -0.021328462, -0.015075274, -0.017959418, -0.023493191, 0.027696192, 0.038744885, -0.017880417, -0.048518825, -0.027014025, -0.0047118138, 0.051078252, 0.029852126, -0.026937015, 0.012648027, -0.050788406, -0.09117317, -0.0030464397, -0.098135635, 0.009596626, 0.06736143, -0.04254004, 0.030276038, -0.087929934, 0.012338443, 0.040129703, -0.013700336, -0.06964982, 0.034813933, 0.0627661, -0.006726543, -0.041116323, -0.01677161, -0.1046405, 0.020548386, -0.05401713, 0.017086416, -0.071212, -0.043267686, 0.030654818, -0.02768234, 0.0025028628, -0.022477463, -0.0150602115, -0.08386778, 0.008789454, -0.06874386, -0.11979341, 0.0545433, 0.042092305, -0.021834407, -0.003594354, 0.13327959, 0.045627054, -0.05052323, 0.0708416, -0.019797694, 0.06067077, 0.034476895, -0.10949298, -0.003189195, 0.018489633, -0.017916039, 0.05799893, 0.02911862, -0.016005062, 0.03987252, 0.03227978, 0.04791412, 0.10281594, -0.016412184, 0.08805258, -0.01431898, 0.03806077, -0.044836212, 0.025283225, 0.05912708, 0.032666437, -0.076753795, 0.07954483, -0.002546867, 0.055572294, 0.04164166, -0.035490904, 0.016557414, -0.080811866, 0.10772507, -0.011948275, -0.010542556, -0.0025398545, -0.0062172296, -0.061501857, 0.11855696, 0.0035190592, 0.053726077, -0.005949943, -0.054918543, -0.009278296, 0.03649131, -0.030760335, -0.044136178, -0.07259126, -0.05048039, 0.0414379, -0.010457446, -0.013244283, -0.018967345, 0.074259266, 0.09501561, 0.10924603, 0.08889188, -0.0037479978, 0.017935934, -0.0107012885, 0.07847507, 0.008118721, 0.08209346, 0.05554205, -0.049891766, 0.010584772, 0.0032788534, -0.0713621, -0.007741467, 0.030875875, -0.016966447, 0.049005434, -0.014813752, 0.09761013, 0.037017133, 0.0008371236, -0.0011821319, -0.040879473, -0.021554029, 0.045615237, -0.031323858, 0.0077393404, 0.024966499, 0.010478117, -0.017087737, -0.039158642, -0.008138289, -0.025215121, 0.06390017, 0.06620777, -0.010726343, -0.04598, -0.008376602, -0.06511065, -0.011654872, -0.002366399, 0.05481098, -0.08685098, 0.09311619, 0.03092212, -0.08477764, -0.05691477, -0.01515746, 0.05691884, -0.069789715, 0.0055359444, 0.025089147, 0.04896507, -0.015576751, 0.0052301707, -0.007066718, -0.03784788, -0.014478048, -0.032656725, 0.039091114, -0.02119021, -0.08536168, -0.059563007, -0.13296779, 0.0487046, 0.035997983, -0.036822863, -0.060375307, -0.018575102, 0.008702747, 0.052131932, -0.037945867, 0.016413303, 0.024852924, 0.09546878, -0.05506767, 0.09634418, 0.021398967, -0.019112902, 0.059875127, 0.0063339677, 0.052053113, -0.11131768, 0.038449965, -0.039399277, -0.04040777, 0.05170224, -0.06536806, 0.06036177, 0.03234657, 0.0043955473, -0.04722763, 0.07062677, -0.057153728, -0.02497854, 0.113709144, -0.019319767, -0.064606965, 0.0032441614, 0.037157364, -0.08528642, -0.058182318, -0.05990046, 0.016099174, 0.04765949, -0.00771348, -0.020631468, -0.037366997, -0.042551596, 0.020100793, -0.017425356, 0.021688407, 0.05586048, -0.055163167, -0.050715674, -0.06096883, 0.038143802, -0.011016726, -0.042468272, -0.12580892, -0.027191352, 0.022755394, -0.021266738, -0.0049079484, 0.06228395, -0.045172993, 0.07229774, 0.061853603, 0.1386213, -0.118517615, 0.03571046, -0.051414095, -0.041184902, -0.021852618, 0.032349456, -0.005194472, 0.073890045, -0.043839682, 0.03280737, 0.04595348, 0.08783969, -0.021733455, 0.062083546, -0.06366983, 0.049495764, -0.038387764, 0.062685244, -0.019588707, -0.01885637, 0.04309707, -0.035220817, -0.05422185, -0.034320984, -0.016159633, 0.0016125983, 0.07341695, -0.06887478, -0.02282412, 0.041979294, 0.06981881, -0.03900774, -0.010550132, -0.039350677, 0.07248212, -0.011506894, -0.006457656, 0.034159552, -0.080810115, 0.035177693, 0.041405, 0.017997677, 0.060891423, -0.069022395, -0.09621185, 0.021901714, -0.10763342, -0.07494131, -0.0020404784, 0.007423364, 0.107987426, -0.066167586, 0.019175641, -0.033897813, -0.0035432691, -0.019033324, -0.00872899, -0.0032068857, 0.0922436, -0.06454982, -0.045708206, -0.035056755, 0.016449165, -0.045419253, -0.0011543237, -0.022664156, 0.03481993, 0.06818229, -0.067137964, -0.072920084, 0.033822436, 0.016173644, -0.056004655, -0.053215347, -0.016669177, 0.07609498, 0.008635335, -0.010794958, 0.042261057, 0.046409294, -0.00038835048, -0.0017625407, 0.03906051, 0.0734231, 0.02095949, 0.09258197, -0.028816229, -0.0131158065, 0.010026339, -0.047085207, 0.0026462537, 0.041578706, 0.0057582255, 0.04479632, 0.000702668, 0.0013063533, 0.041933015, -0.012811758, -0.040490307, -0.050043665], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['October 9, 1970'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 1.08389, 'id': '5b08e2a6-c87a-4d0e-8e9b-5d174504512c', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/5b08e2a6-c87a-4d0e-8e9b-5d174504512c'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/8562d006-4c78-4033-8a83-75fab0b7a4c1', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='d507f114-21ac-489a-bfb5-ac55c09ded9b', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:58:47.281936', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'd507f114-21ac-489a-bfb5-ac55c09ded9b', 'create_date': '2021-03-16T18:57:57.781470Z', 'batch_ids': ['0eb078fe-e321-4126-9fc1-7f1304848af3', '1e168ff7-3adb-480a-8c7c-00e6703c369c'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b/thumbnail', 'style_period': [], 'box_number': ['12'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Warner, Frank'], 'modified_date': '2023-03-28T15:37:38.279832Z', 'accession_number': 'BFMF_B12_F17_021', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['10 inches (height) x 8 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B12_F17_021_donut_01', 'duration': None, 'original_filename': 'BFMF_B12_F17_021a.tif', 'mime_type': 'image/tiff', 'width': 3908, 'rank': 0, 'id': '7aab1d76-6379-45bb-88cb-d699cf1f8272', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/7aab1d76-6379-45bb-88cb-d699cf1f8272', 'height': 4229}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B12_F17_021_donut_02', 'duration': None, 'original_filename': 'BFMF_B12_F17_021b.tif', 'mime_type': 'image/tiff', 'width': 3921, 'rank': 1073741824, 'id': '94cd2541-26fb-4242-ba7a-b521548a342c', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/94cd2541-26fb-4242-ba7a-b521548a342c', 'height': 4229}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner on stage with banjo at the Berkeley Folk Music Festival'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '339bc665-5e61-4bda-b402-b6258fb8f5a2'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['17'], 'cultural_context': [], 'contributor': [{'role': 'Contributor', 'id': 'http://id.loc.gov/authorities/names/n2012053361', 'label': 'Berkeley Folk Music Festival', 'variants': ['A.S.U.C. Berkeley Folk Music Festival', 'A.S.U.C.-S.U.P.E.R.B. Berkeley Folk Festival', 'Berkeley Folk Festival', 'University of California, Berkeley. Associated Students. Berkeley Folk Music Festival'], 'facet': 'http://id.loc.gov/authorities/names/n2012053361|ctb|Berkeley Folk Music Festival (Contributor)', 'label_with_role': 'Berkeley Folk Music Festival (Contributor)'}, {'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2017159756', 'label': 'Olivier, Barry, 1935-', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2017159756|pht|Olivier, Barry, 1935- (Photographer)', 'label_with_role': 'Olivier, Barry, 1935- (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/d507f114-21ac-489a-bfb5-ac55c09ded9b', 'ark': 'ark:/81985/n23r0q81n', 'embedding': [0.07594887, 0.001113786, 0.012387741, -0.042865273, -0.020435678, 0.11637783, -0.033348132, -0.012827505, 0.0392023, 0.006566, 0.068631925, -0.016739178, 0.063597344, -0.020490555, -0.021901814, 0.04819716, -0.0015526102, -0.019430228, 0.011375268, 0.038793065, 0.008635955, 0.022112386, -0.02192987, 0.006856843, -0.028076313, -0.061620582, -0.054862432, 0.026814906, -0.047998376, 0.0031093035, 0.04146067, 0.050351515, 0.103333965, 0.005006521, -0.084990054, 0.034817293, -0.007943403, -0.030356633, -0.06189283, 0.075152814, -0.029682925, 0.042412996, -0.034145985, -0.027813839, -0.0048863036, -0.044829067, -0.022299083, 0.0034301842, -0.004326754, -0.025603535, 0.00996898, 0.027409045, 0.018911373, -0.05907173, -0.040864624, -0.03696362, 0.00866368, 0.06101485, 0.051790785, 0.017289435, -0.024221892, -0.07171304, -0.079036206, 0.02264073, -0.056712884, 0.010634262, 0.05775775, -0.05196073, -0.009610319, -0.056292064, 0.030433986, 0.027081063, -0.020521779, -0.0793823, 0.03672694, 0.07711011, -0.029284775, -0.05457462, -0.045236785, -0.11352056, -0.01846722, -0.034913264, 0.007947535, -0.07493605, -0.05495734, -0.005812537, -0.046566103, -0.017365674, -0.05670948, 0.0048002014, -0.06926234, -0.015413382, -0.07786675, -0.09641534, 0.021814568, 0.053702835, -0.004287393, -0.019879663, 0.107946366, 0.06680863, -0.029680008, 0.052141063, -0.08274676, 0.036444776, -0.013969335, -0.074425116, -0.021734005, 0.024010118, -0.008364513, 0.06704165, 0.055600446, -0.06054297, 0.039745063, 0.054891154, 0.11459329, 0.05920863, -0.03213113, 0.065943524, 0.0094602285, 0.005182417, -0.041679066, 0.043548666, 0.03779015, 0.011863804, -0.11226903, 0.06807226, 0.01674394, 0.07177816, 0.006021433, 0.0011049338, 0.024295459, -0.040099967, 0.04711817, -0.036106255, -0.010983447, 0.023892025, -0.01594442, 0.019407146, 0.115785964, -0.010151785, 0.062025316, 0.012153204, -0.028816259, 0.0154665, 0.048979353, -0.06127804, -0.008404242, -0.02636338, -0.037421517, 0.03151591, 0.010513087, -0.050662607, -0.030337494, 0.011716876, 0.057709593, 0.06223296, 0.12036542, 0.0129668275, -0.013721807, 0.023794731, 0.07454364, 0.0016586371, 0.07331472, 0.011161393, -0.026615454, -0.0061849505, 0.00021560902, -0.11314205, 0.022646237, 0.008234693, -0.034745514, 0.043550007, -0.0270412, 0.11226845, 0.03469058, -0.014423479, 0.00035565742, -0.030518586, -0.009119011, 0.03930484, 0.006858177, 0.01576284, 0.022991592, -0.009541326, -0.03159044, -0.03548523, 0.0059045795, -0.008257705, 0.063850194, 0.08582231, -0.01013843, -0.011573113, -0.032731026, -0.05125375, -0.016554398, 0.0075550727, 0.051950764, -0.09229782, 0.04462828, 0.029245643, -0.07932896, -0.060688905, -0.061640214, 0.03829617, -0.055825938, -0.023332778, 0.0064091864, 0.09240201, -0.022947207, 0.062694535, -0.036200043, -0.07286833, -0.05665239, -0.08844541, 0.005141345, -0.010604718, -0.040682256, -0.080049716, -0.0790916, 0.05235161, 0.042224687, -0.04382604, -0.08491207, -0.031423658, -0.02909197, 0.08379766, 0.011768788, -0.027314078, 0.044866417, 0.07839059, -0.06720813, 0.12129614, 0.05065089, -0.023599098, 0.03428483, 0.0018693489, 0.01883079, -0.10696421, 0.020237349, -0.021998813, -0.045343947, 0.045640267, -0.022420894, 0.017720537, 0.017249746, 0.0040186294, -0.05394313, 0.053357266, -0.006230794, -0.023175461, 0.06902284, -0.0047592376, -0.05454351, 0.019943167, 0.021285538, -0.09245463, -0.019221772, -0.017788889, 0.021161592, 0.03399591, 0.012176389, -0.048713993, -0.01148515, -0.05843458, -0.019580867, -0.023637807, 0.03917812, 0.06274841, -0.012480592, -0.04784048, -0.085393205, 0.03449464, -0.016334543, -0.07232176, -0.1159501, 0.018478632, 0.01592679, -0.03811843, -0.0052272803, 0.038119867, 0.023804704, 0.07474718, 0.07574434, 0.09782377, -0.09380169, 0.041774273, -0.037375245, -0.07612785, -0.024585318, 0.054272253, 0.06044805, 0.08995568, -0.08835034, 0.01760889, 0.057529673, 0.12061209, -0.017293263, 0.031486608, -0.12043621, 0.06547003, -0.0071004243, 0.112541676, -0.044432007, 0.075815, 0.0035093597, 0.013712798, -0.04148844, 0.026614295, -0.009356392, -0.007333762, 0.09305945, -0.052954767, -0.02049411, 0.083346255, 0.05451667, -0.08956182, 0.025520045, 0.029864773, 0.058235053, 0.017778583, 0.0034885262, 0.018795265, -0.05612537, 0.023926772, 0.11355623, 0.07002444, 0.044564594, -0.047521796, -0.12872598, 0.057446253, -0.060265608, -0.054387454, -0.0007067935, 0.07891809, 0.03976044, -0.10985981, 0.0038116428, -0.05495165, 0.0105062965, -0.038639907, -0.026404802, -0.0031823448, 0.07663703, -0.09545281, -0.0518924, -0.063171566, -0.0032377993, -0.09269242, -0.05995854, -0.04158067, 0.041548334, 0.04180716, -0.08664738, -0.048303604, 0.040354628, 0.0110902665, -0.10820594, -0.04283538, -0.033493012, 0.10154231, -0.009726676, -0.017080843, 0.04184788, 0.05975081, 0.067567036, 0.026791433, 0.039215364, 0.05380966, 0.044780027, 0.049373463, -0.01060408, 0.008142417, -0.011580482, -0.002124577, 0.022319922, 0.018898573, -0.03280569, 0.052349705, -0.043879285, 0.028718911, 0.015407804, 0.0013802708, -0.027014716, -0.057635706], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.92409, 'id': '7aab1d76-6379-45bb-88cb-d699cf1f8272', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/7aab1d76-6379-45bb-88cb-d699cf1f8272'}, 'api_model': 'Work', 'physical_description_material': [], 'series': [\"Berkeley Folk Music Festival Archive--1. Artists' Photo Archive\"], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/d507f114-21ac-489a-bfb5-ac55c09ded9b', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='7ae4237d-3846-400e-a140-e70588a44118', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T16:42:23.035905', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': '7ae4237d-3846-400e-a140-e70588a44118', 'create_date': '2021-03-16T04:35:50.020022Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118/thumbnail', 'style_period': [], 'box_number': ['14'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1958 (P. Olivier)'], 'modified_date': '2023-03-27T22:21:22.865339Z', 'accession_number': 'BFMF_B14_F07_037', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['6.75 inches (height) x 4.75 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_037_donut_01', 'duration': None, 'original_filename': 'BFMF_B14_F07_037a.tif', 'mime_type': 'image/tiff', 'width': 2735, 'rank': 0, 'id': '4045638f-b44a-4159-89e3-8cc9216e472b', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/4045638f-b44a-4159-89e3-8cc9216e472b', 'height': 3987}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_037_donut_02', 'duration': None, 'original_filename': 'BFMF_B14_F07_037b.tif', 'mime_type': 'image/tiff', 'width': 4249, 'rank': 1073741824, 'id': 'd34ea4d3-f1f5-4ada-86af-46a5ede3823b', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/d34ea4d3-f1f5-4ada-86af-46a5ede3823b', 'height': 2839}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner, gesturing on stage at 1958 Berkeley Folk Music Festival workshop'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['7'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/7ae4237d-3846-400e-a140-e70588a44118', 'ark': 'ark:/81985/n2t14v46q', 'embedding': [0.08364101, 0.0076814736, 0.014017683, -0.031407345, -0.029448364, 0.10476905, -0.043709137, -0.012303572, 0.037121594, -0.007784829, 0.07175027, -0.004544867, 0.06388855, -0.017516015, -0.02035439, 0.053095035, -0.0078945495, -0.02529792, 0.01668213, 0.039189097, 0.016091783, 0.007371081, -0.026903767, 0.0047324677, -0.019392982, -0.06546684, -0.051527254, 0.039607234, -0.05332751, -0.0030491827, 0.035968035, 0.056282505, 0.099496044, -0.0066540106, -0.08494604, 0.037731394, -0.0073631443, -0.026182078, -0.05131912, 0.06372585, -0.046402883, 0.039295573, -0.024633994, -0.020063967, 0.003699064, -0.048953548, -0.015024984, 0.014700696, -0.004079139, -0.018382687, 0.011491149, 0.019400034, 0.01436236, -0.04751536, -0.039950557, -0.032908235, 0.02444102, 0.057790656, 0.037282478, 0.024676112, -0.013353448, -0.06173235, -0.08170625, 0.028309165, -0.049837142, 0.010876913, 0.057235725, -0.055476338, -0.008190716, -0.038470894, 0.030178517, 0.010308751, -0.0059999237, -0.08238833, 0.041234955, 0.08225093, -0.032500595, -0.06812136, -0.044105276, -0.11368624, -0.011905148, -0.021604156, 0.00014570777, -0.0795001, -0.059103455, -0.006098228, -0.04931078, -0.016057298, -0.052625276, 0.004122248, -0.06864577, -0.02563202, -0.08982236, -0.088441506, 0.011922125, 0.050308526, 0.00964528, -0.013744142, 0.1015975, 0.07292487, -0.031629812, 0.06301348, -0.06710897, 0.0308907, -0.0314739, -0.07544542, -0.014978827, 0.033479262, -0.0076184506, 0.064959705, 0.04581653, -0.06289333, 0.040478785, 0.04836301, 0.10242615, 0.061110232, -0.034979895, 0.06303559, 0.0019979875, 0.001351984, -0.041217238, 0.043202743, 0.03359442, 0.004134386, -0.10119317, 0.04956222, 0.010179472, 0.0658099, 0.007828291, 0.010983124, 0.022065587, -0.030302303, 0.048028283, -0.033363536, -0.00727473, 0.013978249, -0.024259958, 0.03533854, 0.12230273, -0.009277951, 0.055678517, 0.017086715, -0.025440838, 0.014108124, 0.057316925, -0.051757023, -0.024366839, -0.02482389, -0.04448927, 0.023874866, 0.009025183, -0.061205734, -0.04058462, 0.02282363, 0.043633368, 0.072135136, 0.10325854, 0.009059299, -0.008723632, 0.026252612, 0.06558876, 0.0013438795, 0.075251825, 0.004667271, -0.027094187, -0.01913157, 0.004942813, -0.111599, 0.026295898, 0.009649455, -0.01949303, 0.03744145, -0.033313688, 0.106684774, 0.036918346, -0.0052728932, 0.009242098, -0.029218338, -0.017896578, 0.046387438, 0.015602919, 0.033513244, 0.03369517, -0.009581918, -0.024012929, -0.033248316, -0.006042133, -0.005653986, 0.066269025, 0.089649536, -0.012527729, -0.007949401, -0.030421013, -0.05329362, -0.019065425, 0.010297033, 0.057386737, -0.079060145, 0.047136657, 0.03653526, -0.07616367, -0.059861578, -0.07607448, 0.022231666, -0.03930969, -0.024988782, 0.004525475, 0.08404056, -0.025668122, 0.061667398, -0.032415643, -0.0751758, -0.04917145, -0.076403685, 0.0077011674, -0.003565137, -0.037361193, -0.09093953, -0.077350594, 0.058117487, 0.043461274, -0.037312746, -0.10644898, -0.036235955, -0.03383987, 0.08999659, 0.020195007, -0.04280809, 0.042890638, 0.09059201, -0.06902621, 0.120558634, 0.06560603, -0.025791913, 0.018050615, 0.0002705672, 0.014404368, -0.10503451, 0.004121509, -0.02313136, -0.024380278, 0.03571622, -0.017643753, 0.0155197065, 0.028566748, 0.0086571025, -0.06613628, 0.057238083, -0.0017967573, -0.028673144, 0.08781076, -0.019141302, -0.07016237, 0.020831587, 0.025029507, -0.09622245, -0.0056305733, -0.019215563, 0.029635942, 0.022336472, 0.01824768, -0.040084124, -0.017187737, -0.058123358, -0.02128572, -0.024753103, 0.028595792, 0.06345472, -0.01919364, -0.05177791, -0.092514746, 0.025657842, -0.00882496, -0.077313215, -0.11880978, -0.015048078, 0.013764775, -0.043968234, -0.014947149, 0.03594524, 0.020626366, 0.06919051, 0.08536191, 0.08256041, -0.09089072, 0.048589613, -0.041873865, -0.08792635, -0.03135303, 0.054141518, 0.054206036, 0.10726412, -0.098701015, 0.0210048, 0.056476492, 0.10740491, -0.019907966, 0.031508766, -0.12855637, 0.05468825, 0.0006782405, 0.101691104, -0.045702063, 0.076967224, 0.009033617, 0.0064833798, -0.038295075, 0.019012893, -0.014356533, 0.0018229753, 0.08027459, -0.040792245, -0.01702097, 0.09509269, 0.06568524, -0.0804279, 0.03463514, 0.02064064, 0.055774525, 0.024987789, 0.0036618223, -0.003644231, -0.04116726, 0.018535156, 0.11669956, 0.062361967, 0.044617422, -0.040274106, -0.13825354, 0.04718793, -0.054594085, -0.059742905, 0.0093763005, 0.08061778, 0.034210525, -0.114625916, 0.009108664, -0.04050491, 0.002895574, -0.03619683, -0.025542034, -0.0037365921, 0.077509224, -0.10320783, -0.05345295, -0.04816933, -0.002593153, -0.09352249, -0.061307654, -0.03272267, 0.037702255, 0.05170246, -0.083594754, -0.048236303, 0.053632952, 0.023451846, -0.11766805, -0.04502727, -0.044674587, 0.105870366, -0.0058015944, -0.01384311, 0.055795632, 0.063970365, 0.05827424, 0.030386137, 0.031809967, 0.047838546, 0.046734154, 0.057114672, 0.0075229616, 0.0046009254, -0.0016559546, -0.0032752554, 0.0133230295, 0.0061775194, -0.028691754, 0.059527934, -0.04391209, 0.044630934, 0.015596234, -0.0002566118, -0.035590656, -0.062418643], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.68597, 'id': '4045638f-b44a-4159-89e3-8cc9216e472b', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/4045638f-b44a-4159-89e3-8cc9216e472b'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/7ae4237d-3846-400e-a140-e70588a44118', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'}),\n", - " Document(page_content='e6ca8586-aacf-4254-829a-8748cdbf98b4', metadata={'notes': [], 'keywords': [], 'subject': [{'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046046', 'label': 'Berkeley (Calif.)', 'variants': ['Paikelai (Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/n79046046|GEOGRAPHICAL|Berkeley (Calif.) (Geographical)', 'label_with_role': 'Berkeley (Calif.) (Geographical)'}, {'role': 'Geographical', 'id': 'http://id.loc.gov/authorities/names/n79046084', 'label': 'University of California, Berkeley', 'variants': ['Berkeley (University)', 'Berkli Kaliforniya Universiteti', 'Berklio universitetas', 'Bokelai Jia Zhou da xue', 'Bŏkʻŭlli Taehak (Calif.)', 'Cal (University)', 'California Ülikool Berkeleys', 'California (University)', 'California. University of California, Berkeley', 'Đại học California--Berkeley', 'Đại học California tại Berkeley', 'Jia zhou da xue, Paikelai', 'Kalifarniĭski ŭniversitėt u Berkli', 'Kaliforniĭski universitet, Bŭrkli', 'Kaliforniĭskiĭ universitet v Berkli', 'Kalifornijas universitāte Bērklijā', 'Kalifornijos universitetas Berklyje', 'Kaliforníuháskóli í Berkeley', 'Kaliforniya Üniversitesi, Berkeley', 'Kariforunia Daigaku Bākurē', 'Panepistēmio Berkleu tēs Kaliphornias', 'Pŏkʻŭlli Taehak (Calif.)', 'U.C. Berkeley', 'UC Berkeley', 'UC (University of California,)', 'Universidad de California en Berkeley', 'Universidade da Califórnia em Berkeley', 'Universidade de California, Berkeley', 'Università della California, Berkeley', 'Universitas California, Berkeley', 'Universitas Californiensis apud Berkeley', 'Universitat de Califòrnia, Berkeley', 'Universiṭat Ḳalifornyah be-Berḳli', 'Universität von Kalifornien in Berkeley', 'Universitatea Berkeley din California', 'Universitato de Kalifornio ĉe Berkeley', 'Universitato de Kalifornio ĉe Berklio', 'Université de Californie à Berkeley', 'Universiteit van Californië--Berkeley', 'Universıteyê Kaliforniya, Berkeley', 'Universiti California, Berkeley', 'University of California at Berkeley', 'Universytet Kaliforniï, Berkli', 'Univerza Kalifornije, Berkeley', 'Πανεπιστήμιο Μπέρκλεϋ της Καλιφόρνιας', 'Університет Каліфорнії, Берклі', 'Калифорнийски университет, Бъркли', 'Калифорнийский университет в Беркли', 'Каліфарнійскі ўніверсітэт у Берклі', 'אוניברסיטת קליפורניה בברקלי', 'カリフォルニア大学バークレー校', '柏克萊加州大學'], 'facet': 'http://id.loc.gov/authorities/names/n79046084|GEOGRAPHICAL|University of California, Berkeley (Geographical)', 'label_with_role': 'University of California, Berkeley (Geographical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/no2018164197', 'label': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.)', 'variants': ['Weekend of Folk Music (1st : 1958 : Berkeley, Calif.)'], 'facet': 'http://id.loc.gov/authorities/names/no2018164197|TOPICAL|Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)', 'label_with_role': 'Berkeley Folk Music Festival (1st : 1958 : Berkeley, Calif.) (Topical)'}, {'role': 'Topical', 'id': 'http://id.loc.gov/authorities/names/n83172282', 'label': 'Warner, Frank, 1903-1978', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/n83172282|TOPICAL|Warner, Frank, 1903-1978 (Topical)', 'label_with_role': 'Warner, Frank, 1903-1978 (Topical)'}], 'related_url': [], 'caption': [], 'project': {'manager': 'Nicole Finzer', 'proposer': 'Scott Krafft', 'name': 'Berkeley Folk Music Festival', 'task_number': 'P0123', 'cycle': '2018', 'desc': 'NEH grant project to digitize Berkeley Folk Festival Collection'}, 'language': [], 'terms_of_use': 'The images on this web site are from material in the collections of the Charles Deering McCormick Library of Special Collections of Northwestern University Libraries, and are provided for use by its students, faculty and staff, and by other researchers visiting this site, for research consultation and scholarly purposes only. Further distribution and/or any commercial use of the images from this site is not permitted.', 'source': [], 'ingest_sheet': None, 'library_unit': 'Charles Deering McCormick Library of Special Collections', 'indexed_at': '2024-02-21T17:02:26.781964', 'rights_statement': {'id': 'http://rightsstatements.org/vocab/InC/1.0/', 'label': 'In Copyright'}, 'id': 'e6ca8586-aacf-4254-829a-8748cdbf98b4', 'create_date': '2021-03-16T20:42:47.145683Z', 'batch_ids': ['cc5000f6-9e44-4312-8f2d-7388ad03708a'], 'identifier': ['MS 63'], 'thumbnail': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4/thumbnail', 'style_period': [], 'box_number': ['14'], 'visibility': 'Public', 'ingest_project': None, 'iiif_manifest': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4?as=iiif', 'work_type': 'Image', 'published': True, 'collection': {'description': 'The Berkeley Folk Music Festival Archive consists of roughly 33,500 items, including photographs of folk artists and groups, posters, flyers, press clippings, correspondence, publicity information, audio, video, and more about the Festival and the folk music revival as a whole. A digital exhibit, The Berkeley Folk Music Festival & the Folk Revival on the US West Coast—An Introduction, can be found at https://sites.northwestern.edu/bfmf. We welcome your input and comments to help us continue to improve the accuracy of this rich, wide-ranging collection of materials at https://sites.northwestern.edu/bfmf/contact-us/.', 'id': '18ec4c6b-192a-4ab8-9903-ea0f393c35f7', 'title': 'Berkeley Folk Music Festival'}, 'folder_name': ['Berkeley 1958 (P. Olivier)'], 'modified_date': '2023-03-27T22:32:41.948516Z', 'accession_number': 'BFMF_B14_F07_036', 'license': None, 'date_created_edtf': ['1958-06-27/1958-06-30'], 'physical_description_size': ['6.75 inches (height) x 4.75 inches (width)'], 'publisher': [], 'file_sets': [{'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Recto', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_036_donut_01', 'duration': None, 'original_filename': 'BFMF_B14_F07_036a.tif', 'mime_type': 'image/tiff', 'width': 2720, 'rank': 0, 'id': 'e004a328-8029-4651-8b39-783f90443086', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/e004a328-8029-4651-8b39-783f90443086', 'height': 4028}, {'role': 'Access', 'streaming_url': None, 'description': None, 'label': 'Verso', 'webvtt': None, 'poster_offset': None, 'accession_number': 'BFMF_B14_F07_036_donut_02', 'duration': None, 'original_filename': 'BFMF_B14_F07_036b.tif', 'mime_type': 'image/tiff', 'width': 4108, 'rank': 1073741824, 'id': 'fba18ab4-fd5f-4319-91a1-d4636ea08b66', 'representative_image_url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/fba18ab4-fd5f-4319-91a1-d4636ea08b66', 'height': 2845}], 'status': 'Done', 'box_name': [], 'catalog_key': [], 'technique': [], 'description': ['Frank Warner, gesturing on stage at 1958 Berkeley Folk Music Festival workshop'], 'csv_metadata_update_jobs': ['64502329-9646-4bcb-a659-fb6e96277a19', '3b4ea97f-54f8-43a1-b027-d600b9673684'], 'title': 'Frank Warner, 1958 Berkeley Folk Music Festival', 'legacy_identifier': [], 'folder_number': ['7'], 'cultural_context': [], 'contributor': [{'role': 'Photographer', 'id': 'http://id.loc.gov/authorities/names/no2018025579', 'label': 'Olivier, Phillip', 'variants': [], 'facet': 'http://id.loc.gov/authorities/names/no2018025579|pht|Olivier, Phillip (Photographer)', 'label_with_role': 'Olivier, Phillip (Photographer)'}], 'provenance': [], 'genre': [{'id': 'http://vocab.getty.edu/aat/300128347', 'label': 'black-and-white photographs', 'variants': ['black-and-white photograph', 'black and white photographs', 'photographs, black-and-white', 'zwart-wit foto', 'photographie en noir et blanc', 'Schwarzweißfotografie', 'Schwarzweißfotografien', 'Schwarzweißfoto', 'Schwarz-Weiß-Foto', 'Schwarzweiß-Fotografie', 'Schwarzweiß-Fotografien', 'Schwarz-Weiß-Fotografien', 'Schwarzweißfotographie', 'Schwarzweißfotographien', 'Schwarzweißfotos', 'Schwarz-Weiß-Fotos', 'Schwarzweißphoto', 'Schwarzweißphotographie', 'Schwarz-Weiß-Photographie', 'Schwarzweiß-Photographie', 'Schwarzweißphotographien', 'Schwarz-Weiß-Photographien', 'fotografie b/n', 'fotografía en blanco y negro (obra visual)'], 'facet': 'http://vocab.getty.edu/aat/300128347||black-and-white photographs'}], 'api_link': 'https://bmq.dev.rdc.library.northwestern.edu:3002/works/e6ca8586-aacf-4254-829a-8748cdbf98b4', 'ark': 'ark:/81985/n2xp6vj89', 'embedding': [0.08364101, 0.0076814736, 0.014017683, -0.031407345, -0.029448364, 0.10476905, -0.043709137, -0.012303572, 0.037121594, -0.007784829, 0.07175027, -0.004544867, 0.06388855, -0.017516015, -0.02035439, 0.053095035, -0.0078945495, -0.02529792, 0.01668213, 0.039189097, 0.016091783, 0.007371081, -0.026903767, 0.0047324677, -0.019392982, -0.06546684, -0.051527254, 0.039607234, -0.05332751, -0.0030491827, 0.035968035, 0.056282505, 0.099496044, -0.0066540106, -0.08494604, 0.037731394, -0.0073631443, -0.026182078, -0.05131912, 0.06372585, -0.046402883, 0.039295573, -0.024633994, -0.020063967, 0.003699064, -0.048953548, -0.015024984, 0.014700696, -0.004079139, -0.018382687, 0.011491149, 0.019400034, 0.01436236, -0.04751536, -0.039950557, -0.032908235, 0.02444102, 0.057790656, 0.037282478, 0.024676112, -0.013353448, -0.06173235, -0.08170625, 0.028309165, -0.049837142, 0.010876913, 0.057235725, -0.055476338, -0.008190716, -0.038470894, 0.030178517, 0.010308751, -0.0059999237, -0.08238833, 0.041234955, 0.08225093, -0.032500595, -0.06812136, -0.044105276, -0.11368624, -0.011905148, -0.021604156, 0.00014570777, -0.0795001, -0.059103455, -0.006098228, -0.04931078, -0.016057298, -0.052625276, 0.004122248, -0.06864577, -0.02563202, -0.08982236, -0.088441506, 0.011922125, 0.050308526, 0.00964528, -0.013744142, 0.1015975, 0.07292487, -0.031629812, 0.06301348, -0.06710897, 0.0308907, -0.0314739, -0.07544542, -0.014978827, 0.033479262, -0.0076184506, 0.064959705, 0.04581653, -0.06289333, 0.040478785, 0.04836301, 0.10242615, 0.061110232, -0.034979895, 0.06303559, 0.0019979875, 0.001351984, -0.041217238, 0.043202743, 0.03359442, 0.004134386, -0.10119317, 0.04956222, 0.010179472, 0.0658099, 0.007828291, 0.010983124, 0.022065587, -0.030302303, 0.048028283, -0.033363536, -0.00727473, 0.013978249, -0.024259958, 0.03533854, 0.12230273, -0.009277951, 0.055678517, 0.017086715, -0.025440838, 0.014108124, 0.057316925, -0.051757023, -0.024366839, -0.02482389, -0.04448927, 0.023874866, 0.009025183, -0.061205734, -0.04058462, 0.02282363, 0.043633368, 0.072135136, 0.10325854, 0.009059299, -0.008723632, 0.026252612, 0.06558876, 0.0013438795, 0.075251825, 0.004667271, -0.027094187, -0.01913157, 0.004942813, -0.111599, 0.026295898, 0.009649455, -0.01949303, 0.03744145, -0.033313688, 0.106684774, 0.036918346, -0.0052728932, 0.009242098, -0.029218338, -0.017896578, 0.046387438, 0.015602919, 0.033513244, 0.03369517, -0.009581918, -0.024012929, -0.033248316, -0.006042133, -0.005653986, 0.066269025, 0.089649536, -0.012527729, -0.007949401, -0.030421013, -0.05329362, -0.019065425, 0.010297033, 0.057386737, -0.079060145, 0.047136657, 0.03653526, -0.07616367, -0.059861578, -0.07607448, 0.022231666, -0.03930969, -0.024988782, 0.004525475, 0.08404056, -0.025668122, 0.061667398, -0.032415643, -0.0751758, -0.04917145, -0.076403685, 0.0077011674, -0.003565137, -0.037361193, -0.09093953, -0.077350594, 0.058117487, 0.043461274, -0.037312746, -0.10644898, -0.036235955, -0.03383987, 0.08999659, 0.020195007, -0.04280809, 0.042890638, 0.09059201, -0.06902621, 0.120558634, 0.06560603, -0.025791913, 0.018050615, 0.0002705672, 0.014404368, -0.10503451, 0.004121509, -0.02313136, -0.024380278, 0.03571622, -0.017643753, 0.0155197065, 0.028566748, 0.0086571025, -0.06613628, 0.057238083, -0.0017967573, -0.028673144, 0.08781076, -0.019141302, -0.07016237, 0.020831587, 0.025029507, -0.09622245, -0.0056305733, -0.019215563, 0.029635942, 0.022336472, 0.01824768, -0.040084124, -0.017187737, -0.058123358, -0.02128572, -0.024753103, 0.028595792, 0.06345472, -0.01919364, -0.05177791, -0.092514746, 0.025657842, -0.00882496, -0.077313215, -0.11880978, -0.015048078, 0.013764775, -0.043968234, -0.014947149, 0.03594524, 0.020626366, 0.06919051, 0.08536191, 0.08256041, -0.09089072, 0.048589613, -0.041873865, -0.08792635, -0.03135303, 0.054141518, 0.054206036, 0.10726412, -0.098701015, 0.0210048, 0.056476492, 0.10740491, -0.019907966, 0.031508766, -0.12855637, 0.05468825, 0.0006782405, 0.101691104, -0.045702063, 0.076967224, 0.009033617, 0.0064833798, -0.038295075, 0.019012893, -0.014356533, 0.0018229753, 0.08027459, -0.040792245, -0.01702097, 0.09509269, 0.06568524, -0.0804279, 0.03463514, 0.02064064, 0.055774525, 0.024987789, 0.0036618223, -0.003644231, -0.04116726, 0.018535156, 0.11669956, 0.062361967, 0.044617422, -0.040274106, -0.13825354, 0.04718793, -0.054594085, -0.059742905, 0.0093763005, 0.08061778, 0.034210525, -0.114625916, 0.009108664, -0.04050491, 0.002895574, -0.03619683, -0.025542034, -0.0037365921, 0.077509224, -0.10320783, -0.05345295, -0.04816933, -0.002593153, -0.09352249, -0.061307654, -0.03272267, 0.037702255, 0.05170246, -0.083594754, -0.048236303, 0.053632952, 0.023451846, -0.11766805, -0.04502727, -0.044674587, 0.105870366, -0.0058015944, -0.01384311, 0.055795632, 0.063970365, 0.05827424, 0.030386137, 0.031809967, 0.047838546, 0.046734154, 0.057114672, 0.0075229616, 0.0046009254, -0.0016559546, -0.0032752554, 0.0133230295, 0.0061775194, -0.028691754, 0.059527934, -0.04391209, 0.044630934, 0.015596234, -0.0002566118, -0.035590656, -0.062418643], 'alternate_title': [], 'creator': [], 'related_material': [], 'date_created': ['June 27, 1958 to June 30, 1958'], 'abstract': [], 'representative_file_set': {'aspect_ratio': 0.67527, 'id': 'e004a328-8029-4651-8b39-783f90443086', 'url': 'https://iiif.dev.rdc.library.northwestern.edu/iiif/2/bmq-dev/e004a328-8029-4651-8b39-783f90443086'}, 'api_model': 'Work', 'physical_description_material': [], 'series': ['Berkeley Folk Music Festival Archive--2. Festivals Photo Archive--2.1. Berkeley'], 'canonical_link': 'https://dc.rdc-staging.library.northwestern.edu/items/e6ca8586-aacf-4254-829a-8748cdbf98b4', 'location': [], 'rights_holder': [], 'table_of_contents': [], 'scope_and_contents': [], 'preservation_level': 'Level 1'})],\n", - " 'output_text': \"Based on the documents provided, some of the performers who played at the Berkeley Folk Music Festival over the years include:\\n\\n- Frank Warner - Several photos show Frank Warner playing banjo and singing at the 1st Berkeley Folk Music Festival in 1958.\\n\\n- Shlomo Carlebach - One photo from 1968 shows people dancing as Shlomo Carlebach performed on stage at that year's festival. \\n\\n- An unidentified guitar player is shown in silhouette performing at the Friday night concert during the 1970 festival.\\n\\n- There are also some general photos of unidentified performers singing and playing instruments like autoharp and guitar at various festival events, likely from the 1960s.\\n\\nThe documents indicate the Berkeley Folk Music Festival featured many folk music performers over its multi-decade run, though only a few specific artists are identified in the metadata. The photos and descriptions suggest amateur and professional folk musicians from many styles and backgrounds played at this important West Coast folk revival event each year.\"}" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "response" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "markdown=\"Yes, there are several documents related to the themes of patriotism, prominently featured within the [World War II Poster Collection](https://dc.library.northwestern.edu/collections/faf4f60e-78e0-4fbf-96ce-4ca8b4df597a). This collection showcases more than 300 World War II-era posters issued by various U.S. government agencies, highlighting the government's effort through art, illustration, and photographs to unite the American people in a time of adversity. These posters serve as a significant historical artifact, reflecting the themes of patriotism, national unity, and collective effort during World War II.\\n\\nFor instance, the poster titled [Give it your best!](https://dc.library.northwestern.edu/items/aa743661-ecf5-4b1f-beda-21ea957adbf4) features the U.S. flag, directly appealing to the viewer's sense of patriotism and duty. Similarly, [We have just begun to fight!](https://dc.library.northwestern.edu/items/fa796889-1f7a-4c54-8b64-11e2a68f65b3) depicts a soldier in combat uniform, rallying the American people with a message of resilience and determination to defend the nation. Another poster, [The United Nations fight for freedom](https://dc.library.northwestern.edu/items/f3e0776c-e6e9-40d4-a53c-ee8c0a7fee2a), showcases the flags of the United Nations member nations with the Statue of Liberty in the background, symbolizing unity and collective effort for freedom among allied nations.\\n\\nMoreover, the [Patriotic postcard](https://dc.library.northwestern.edu/items/e51be35c-0b82-44f6-a50c-1eea28a90f4c) from the collection of the United States Army Base Hospital Number 12 World War I and II Records features a woman symbolizing America holding the American flag, accompanied by a patriotic poem. This postcard emphasizes the importance of defending the nation's principles and never surrendering, further underscoring the theme of patriotism.\\n\\nThese documents not only provide insight into the visual and rhetorical strategies used to foster a sense of national pride and duty during times of war but also serve as valuable resources for understanding the historical context and societal values of the era.\"" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "261\n", - "261\n", - "267\n" - ] - }, - { - "data": { - "text/plain": [ - "'Yes there are several documents related to the themes of patriotism prominently featured within the World War II Poster Collection This collection showcases more than 300 World War II era posters issued by various U S government agencies highlighting the government s effort through art illustration and photographs to unite the American people in a time of adversity These posters serve as a significant historical artifact reflecting the themes of patriotism national unity and collective effort during World War II For instance the poster titled Give it your best features the U S flag directly appealing to the viewer s sense of patriotism and duty Similarly We have just begun to fight depicts a soldier in combat uniform rallying the American people with a message of resilience and determination to defend the nation Another poster The United Nations fight for freedom showcases the flags of the United Nations member nations with the Statue of Liberty in the background symbolizing unity and collective effort for freedom among allied nations Moreover the Patriotic postcard from the collection of the United States Army Base Hospital Number 12 World War I and II Records features a woman symbolizing America holding the American flag accompanied by a patriotic poem This postcard emphasizes the importance of defending the nation s principles and never surrendering further underscoring the theme of patriotism These documents not only provide insight into the visual and rhetorical strategies used to foster a sense of national pride and duty during times of war but also serve as valuable resources for understanding the historical context and societal values of the era '" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import re\n", - "print(len(markdown.split()))\n", - "text = re.sub(\"\\[(.+?)\\]\\(.+?\\)\", \"\\\\1\", markdown)\n", - "print(len(text.split()))\n", - "text = re.sub(\"\\s*\\W+\\s*\", \" \", text)\n", - "print(len(text.split()))\n", - "text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": ".venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.5" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/chat/src/secrets.py b/chat/src/secrets.py index 968df5c..8f69d81 100644 --- a/chat/src/secrets.py +++ b/chat/src/secrets.py @@ -5,6 +5,7 @@ def load_secrets(): SecretsPath = os.getenv('SECRETS_PATH') EnvironmentMap = [ + ['API_TOKEN_SECRET', 'dcapi', 'api_token_secret'], ['OPENSEARCH_ENDPOINT', 'index', 'endpoint'], ['OPENSEARCH_MODEL_ID', 'index', 'embedding_model'], ['AZURE_OPENAI_API_KEY', 'azure_openai', 'api_key'], @@ -14,6 +15,7 @@ def load_secrets(): client = boto3.client("secretsmanager") response = client.batch_get_secret_value(SecretIdList=[ + f'{SecretsPath}/config/dcapi', f'{SecretsPath}/infrastructure/index', f'{SecretsPath}/infrastructure/azure_openai' ]) diff --git a/chat/template.yaml b/chat/template.yaml index 2f177ca..ecdb0d1 100644 --- a/chat/template.yaml +++ b/chat/template.yaml @@ -2,9 +2,9 @@ AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: Websocket Chat API for dc-api-v2 Parameters: - ApiTokenSecret: + ApiTokenName: Type: String - Description: Secret Key for Encrypting JWTs (must match IIIF server) + Description: Name of the jwt that DC API issues EnvironmentPrefix: Type: String Description: Prefix for Index names @@ -175,33 +175,35 @@ Resources: Action: lambda:InvokeFunction FunctionName: !Ref ChatFunction Principal: apigateway.amazonaws.com - ChatDependencies: - Type: AWS::Serverless::LayerVersion - Properties: - LayerName: - Fn::Sub: "${AWS::StackName}-dependencies" - Description: Dependencies for streaming chat function - ContentUri: ./dependencies - CompatibleRuntimes: - - python3.10 - LicenseInfo: "Apache-2.0" - Metadata: - BuildMethod: python3.10 + #* ChatDependencies: + #* Type: AWS::Serverless::LayerVersion + #* Properties: + #* LayerName: + #* Fn::Sub: "${AWS::StackName}-dependencies" + #* Description: Dependencies for streaming chat function + #* ContentUri: ./dependencies + #* CompatibleArchitectures: + #* - x86_64 + #* CompatibleRuntimes: + #* - python3.12 + #* LicenseInfo: "Apache-2.0" + #* Metadata: + #* BuildMethod: python3.12 ChatFunction: Type: AWS::Serverless::Function Properties: CodeUri: ./src - Runtime: python3.10 + Runtime: python3.12 Architectures: - x86_64 - Layers: - - !Ref ChatDependencies + #* Layers: + #* - !Ref ChatDependencies MemorySize: 1024 Handler: handlers/chat.handler Timeout: 300 Environment: Variables: - API_TOKEN_SECRET: !Ref ApiTokenSecret + API_TOKEN_NAME: !Ref ApiTokenName ENV_PREFIX: !Ref EnvironmentPrefix HONEYBADGER_API_KEY: !Ref HoneybadgerApiKey HONEYBADGER_ENVIRONMENT: !Ref HoneybadgerEnv @@ -228,23 +230,23 @@ Resources: - logs:CreateLogStream - logs:PutLogEvents Resource: !Sub "${ChatMetricsLog.Arn}:*" - Metadata: - BuildMethod: nodejs20.x + #* Metadata: + #* BuildMethod: nodejs20.x ChatSyncFunction: Type: AWS::Serverless::Function Properties: CodeUri: ./src - Runtime: python3.10 + Runtime: python3.12 Architectures: - x86_64 - Layers: - - !Ref ChatDependencies + #* Layers: + #* - !Ref ChatDependencies MemorySize: 1024 Handler: handlers/chat_sync.handler Timeout: 300 Environment: Variables: - API_TOKEN_SECRET: !Ref ApiTokenSecret + API_TOKEN_NAME: !Ref ApiTokenName ENV_PREFIX: !Ref EnvironmentPrefix HONEYBADGER_API_KEY: !Ref HoneybadgerApiKey HONEYBADGER_ENVIRONMENT: !Ref HoneybadgerEnv @@ -261,14 +263,14 @@ Resources: - 'es:ESHttpGet' - 'es:ESHttpPost' Resource: '*' - # - Statement: - # - Effect: Allow - # Action: - # - logs:CreateLogStream - # - logs:PutLogEvents - # Resource: !Sub "${ChatMetricsLog.Arn}:*" - Metadata: - BuildMethod: nodejs20.x + - Statement: + - Effect: Allow + Action: + - logs:CreateLogStream + - logs:PutLogEvents + Resource: !Sub "${ChatMetricsLog.Arn}:*" + #* Metadata: + #* BuildMethod: nodejs20.x ChatMetricsLog: Type: AWS::Logs::LogGroup Properties: diff --git a/node/src/handlers/middleware.js b/node/src/handlers/middleware.js index f183e79..107ca71 100644 --- a/node/src/handlers/middleware.js +++ b/node/src/handlers/middleware.js @@ -20,6 +20,7 @@ const Honeybadger = require("../honeybadger-setup"); const { StatusCodes } = require("http-status-codes"); const { SECRETS_PATH } = process.env; const SecretPaths = [ + `${SECRETS_PATH}/config/dcapi`, `${SECRETS_PATH}/infrastructure/index`, `${SECRETS_PATH}/infrastructure/nusso`, ]; @@ -64,6 +65,7 @@ const _initializeEnvironment = async function () { endpoint = new URL(endpoint).hostname; } + putenv("API_TOKEN_SECRET", secrets.dcapi?.api_token_secret); putenv("OPENSEARCH_ENDPOINT", endpoint); putenv("OPENSEARCH_MODEL_ID", secrets.index?.embedding_model); putenv("NUSSO_API_KEY", secrets.nusso?.api_key); diff --git a/template.yaml b/template.yaml index 81389d0..ce4c878 100644 --- a/template.yaml +++ b/template.yaml @@ -25,7 +25,6 @@ Globals: Environment: Variables: API_TOKEN_NAME: !Ref ApiTokenName - API_TOKEN_SECRET: !Ref ApiTokenSecret DC_API_ENDPOINT: !Ref DcApiEndpoint DC_URL: !Ref DcUrl DEV_TEAM_NET_IDS: !Ref DevTeamNetIds @@ -111,21 +110,31 @@ Parameters: StreamingBucket: Type: String Description: Meadow Streaming Bucket + WriteConfigSecret: + Type: String + Description: Set to something other than "true" to _not_ write configuration secrets + Default: "true" +Conditions: + WriteSecret: + Fn::Equals: + - !Ref WriteConfigSecret + - true Resources: - apiDependencies: - Type: AWS::Serverless::LayerVersion - Properties: - LayerName: !Sub "${AWS::StackName}-api-dependencies" - Description: Dependencies for API handlers - ContentUri: ./layers/api_dependencies - CompatibleRuntimes: - - nodejs20.x - LicenseInfo: Apache-2.0 - Metadata: - BuildMethod: nodejs20.x + #* apiDependencies: + #* Type: AWS::Serverless::LayerVersion + #* Properties: + #* LayerName: !Sub "${AWS::StackName}-api-dependencies" + #* Description: Dependencies for API handlers + #* ContentUri: ./layers/api_dependencies + #* CompatibleRuntimes: + #* - nodejs20.x + #* LicenseInfo: Apache-2.0 + #* Metadata: + #* BuildMethod: nodejs20.x # Configuration apiConfiguration: Type: AWS::SecretsManager::Secret + Condition: WriteSecret Properties: Name: !Sub "${SecretsPath}/config/dcapi" SecretString: @@ -165,8 +174,8 @@ Resources: Properties: Handler: handlers/get-auth-callback.handler Description: NUSSO callback function. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: @@ -187,8 +196,8 @@ Resources: Properties: Handler: handlers/get-auth-login.handler Description: Performs NUSSO login. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: @@ -203,8 +212,8 @@ Resources: Properties: Handler: handlers/get-auth-logout.handler Description: Performs NUSSO logout. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: @@ -219,8 +228,8 @@ Resources: Properties: Handler: handlers/get-auth-token.handler Description: Function to retrieve raw JWT. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: @@ -241,8 +250,8 @@ Resources: Properties: Handler: handlers/get-auth-whoami.handler Description: Exchanges valid JWT token for user information. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: @@ -257,8 +266,8 @@ Resources: Properties: Handler: handlers/get-collections.handler Description: Gets Collections. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -280,8 +289,8 @@ Resources: Properties: Handler: handlers/get-collection-by-id.handler Description: Gets a Collection by id. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -303,8 +312,8 @@ Resources: Properties: Handler: handlers/get-file-set-by-id.handler Description: Gets a FileSet by id. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -326,8 +335,8 @@ Resources: Properties: Handler: handlers/get-file-set-auth.handler Description: Authorizes access to a file set. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Environment: Variables: USE_PROXIED_IP: true @@ -352,8 +361,8 @@ Resources: Properties: Handler: handlers/get-file-set-download.handler Description: Downloads a file set. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Environment: Variables: STEP_FUNCTION_ENDPOINT: !Ref AWS::NoValue @@ -410,8 +419,8 @@ Resources: Properties: Handler: handlers/get-work-auth.handler Description: Authorizes access to a work. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Environment: Variables: USE_PROXIED_IP: true @@ -436,8 +445,8 @@ Resources: Properties: Handler: handlers/get-work-by-id.handler Description: Gets a Work by id. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Environment: Variables: USE_PROXIED_IP: true @@ -462,8 +471,8 @@ Resources: Properties: Handler: handlers/get-thumbnail.handler Description: Gets a Work's representative thumbnail. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -498,8 +507,8 @@ Resources: Handler: handlers/get-similar.handler Timeout: 100 Description: Gets works similar to a specific work. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -521,8 +530,8 @@ Resources: Properties: Handler: handlers/search.postSearch Description: Handles OpenSearch search requests, Works only by default. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -544,8 +553,8 @@ Resources: Properties: Handler: handlers/search.getSearch Description: Handles paging requests - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -580,8 +589,8 @@ Resources: Handler: handlers/options-request.handler Timeout: 3 Description: Handles all OPTIONS requests - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: @@ -596,8 +605,8 @@ Resources: Properties: Handler: handlers/get-shared-link-by-id.handler Description: Gets a shared link document by id. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy - !Ref readIndexPolicy @@ -619,8 +628,8 @@ Resources: Properties: Handler: handlers/oai.handler Description: Transforms works into OAI Records. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Timeout: 60 Policies: - !Ref readSecretsPolicy @@ -649,7 +658,7 @@ Resources: Properties: Location: ./chat/template.yaml Parameters: - ApiTokenSecret: !Ref ApiTokenSecret + ApiTokenName: !Ref ApiTokenName EnvironmentPrefix: !Ref EnvironmentPrefix HoneybadgerApiKey: !Ref HoneybadgerApiKey HoneybadgerEnv: !Ref HoneybadgerEnv @@ -661,8 +670,8 @@ Resources: Properties: Handler: handlers/get-chat-endpoint.handler Description: Returns the URI of the chat websocket API. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Environment: Variables: WEBSOCKET_URI: !GetAtt chatWebsocket.Outputs.WebSocketURI @@ -680,8 +689,8 @@ Resources: Properties: Handler: handlers/post-chat-feedback.handler Description: Handles feedback from the chat. - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Environment: Variables: CHAT_FEEDBACK_BUCKET: !Ref chatFeedbackBucket @@ -726,8 +735,8 @@ Resources: Handler: handlers/default-request.handler Timeout: 3 Description: Handles all other requests - Layers: - - !Ref apiDependencies + #* Layers: + #* - !Ref apiDependencies Policies: - !Ref readSecretsPolicy Events: