carloscapote commited on
Commit
070f0ae
1 Parent(s): c1f53a6

solve conflicts around .git attributes

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. prepare.ipynb +85 -0
  3. train.jsonl +3 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ /.ipynb_checkpoints
2
+ /eswiktionary.csv
prepare.ipynb ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "id": "04b44586",
7
+ "metadata": {},
8
+ "outputs": [],
9
+ "source": [
10
+ "import pandas as pd"
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "markdown",
15
+ "id": "25f887a9",
16
+ "metadata": {},
17
+ "source": [
18
+ "The `eswiktionary.csv` file used below is the one generated by [elcapo/eswiktionary_parser](https://github.com/elcapo/eswiktionary_parser) and its structure is described [here](https://github.com/elcapo/eswiktionary_parser/releases/tag/v0.1.0)."
19
+ ]
20
+ },
21
+ {
22
+ "cell_type": "code",
23
+ "execution_count": 2,
24
+ "id": "0266d64a",
25
+ "metadata": {},
26
+ "outputs": [],
27
+ "source": [
28
+ "definitions = pd.read_csv(\"eswiktionary.csv\", names=[\"word\", \"classification\", \"definition\"])"
29
+ ]
30
+ },
31
+ {
32
+ "cell_type": "code",
33
+ "execution_count": 3,
34
+ "id": "28ade220",
35
+ "metadata": {},
36
+ "outputs": [],
37
+ "source": [
38
+ "definitions = definitions.to_dict(orient = \"records\")"
39
+ ]
40
+ },
41
+ {
42
+ "cell_type": "code",
43
+ "execution_count": 4,
44
+ "id": "df0fd351",
45
+ "metadata": {},
46
+ "outputs": [],
47
+ "source": [
48
+ "import json"
49
+ ]
50
+ },
51
+ {
52
+ "cell_type": "code",
53
+ "execution_count": 5,
54
+ "id": "0fff6e5d",
55
+ "metadata": {},
56
+ "outputs": [],
57
+ "source": [
58
+ "with open(\"train.jsonl\", \"w\") as file:\n",
59
+ " for definition in definitions:\n",
60
+ " file.write(json.dumps(definition) + \"\\n\")"
61
+ ]
62
+ }
63
+ ],
64
+ "metadata": {
65
+ "kernelspec": {
66
+ "display_name": "Python 3 (ipykernel)",
67
+ "language": "python",
68
+ "name": "python3"
69
+ },
70
+ "language_info": {
71
+ "codemirror_mode": {
72
+ "name": "ipython",
73
+ "version": 3
74
+ },
75
+ "file_extension": ".py",
76
+ "mimetype": "text/x-python",
77
+ "name": "python",
78
+ "nbconvert_exporter": "python",
79
+ "pygments_lexer": "ipython3",
80
+ "version": "3.9.12"
81
+ }
82
+ },
83
+ "nbformat": 4,
84
+ "nbformat_minor": 5
85
+ }
train.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:079af325bac3a92fed137c1b617114dc99c9f83fdc015b1119864646c842837f
3
+ size 138216669