Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
ted-datasets
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mateusz Pawlik
ted-datasets
Commits
a82631c7
Commit
a82631c7
authored
Oct 22, 2018
by
Mateusz Pawlik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tidied up sentiment script.
parent
c2220f05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
22 deletions
+35
-22
sentiment/download_prepare.sh
sentiment/download_prepare.sh
+35
-22
No files found.
sentiment/download_prepare.sh
View file @
a82631c7
#!/bin/bash
#!/bin/bash
# file: prepare_data.sh
#
# Program: Downloads and prepares data containing the sentiment dataset.
#
# Author: Thomas Huetter
# create target folder and change into it
# The MIT License (MIT)
mkdir
sentiment
# Copyright (c) 2017 Thomas Hütter, Mateusz Pawlik.
cd
sentiment
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
download the data files
#
Download the data files.
wget https://nlp.stanford.edu/sentiment/trainDevTestTrees_PTB.zip
wget https://nlp.stanford.edu/sentiment/trainDevTestTrees_PTB.zip
#
unzip the data into folder original_data
#
Extract the data into subdirectory.
unzip trainDevTestTrees_PTB.zip
unzip trainDevTestTrees_PTB.zip
-d
original_data
# remove zip file
# Prepare output from 'dev.txt' and 'train.txt':
rm
-rf
trainDevTestTrees_PTB.zip
# - convert dev.txt and train.txt into UTF-8 format
# - replace ( by {
# - replace ) by }
# - remove whitespace before '{'
# - sort by number of nodes (equivalent to number of "{")
iconv
-f
ISO-8859-1
-t
"UTF-8"
original_data/trees/dev.txt original_data/trees/train.txt |
\
sed
-e
's/(/{/g'
|
sed
-e
's/)/}/g'
|
sed
-E
's/[[:space:]]([{])/\1/g'
|
\
awk
'{print gsub("{","{"), $0}'
|
sort
-n
|
cut
-d
' '
-f2-
>
sentiment_sorted.bracket
# change to unzipped folder
# Tidy up.
cd
trees
rm
trainDevTestTrees_PTB.zip
rm
-rf
original_data
# prepare data for file L.trees
\ No newline at end of file
# convert dev.txt and train.txt into UTF-8 format | replace ( by { | replace ) by } | remove whitespace before '{' | sort by number of nodes (equivalent to number of "{")
iconv
-f
ISO-8859-1
-t
"UTF-8"
dev.txt train.txt |
sed
-e
's/(/{/g'
|
sed
-e
's/)/}/g'
|
sed
-E
's/[[:space:]]([{])/\1/g'
|
awk
'{print gsub("{","{"), $0}'
|
sort
-n
|
cut
-d
' '
-f2-
>
../sentiment_sorted.bracket
# go back to the folder
cd
..
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment