judith0 commited on
Commit
616059a
1 Parent(s): 0d8b50e

agregando 0 10 cedulas

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.idea/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
.idea/cedula_Profecional.iml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="jdk" jdkName="Python 3.9" jdkType="Python SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ </module>
.idea/inspectionProfiles/Project_Default.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
5
+ <option name="ignoredPackages">
6
+ <value>
7
+ <list size="3">
8
+ <item index="0" class="java.lang.String" itemvalue="huggingface-hub" />
9
+ <item index="1" class="java.lang.String" itemvalue="PyYAML" />
10
+ <item index="2" class="java.lang.String" itemvalue="typing_extensions" />
11
+ </list>
12
+ </value>
13
+ </option>
14
+ </inspection_tool>
15
+ <inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
16
+ <option name="ignoredErrors">
17
+ <list>
18
+ <option value="W605" />
19
+ </list>
20
+ </option>
21
+ </inspection_tool>
22
+ </profile>
23
+ </component>
.idea/inspectionProfiles/profiles_settings.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
.idea/misc.xml ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9" project-jdk-type="Python SDK" />
4
+ </project>
.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/cedula_Profecional.iml" filepath="$PROJECT_DIR$/.idea/cedula_Profecional.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
cedulaP-donut/train/metadata.jsonl ADDED
File without changes
cedulaP-donut/train/metadata.jsonll ADDED
File without changes
cedulaP-donut/validation/metadata.jsonl ADDED
File without changes
crear.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+
4
+ # Ruta de la carpeta donde se guardarán los archivos JSON
5
+ folder_path = "./data/key"
6
+
7
+ # Verificar si la carpeta existe, de lo contrario, crearla
8
+ if not os.path.exists(folder_path):
9
+ os.makedirs(folder_path)
10
+
11
+ for i in range(0, 50):
12
+ data = {
13
+ "professionalId":"",
14
+ "name": "",
15
+ "firstSurname": "",
16
+ "secondSurname": "",
17
+ "professionName": "",
18
+ "dateOfIssue": "Ciudad de Mexico a",
19
+ "curp": "",
20
+ "type": "CEDULA PROFECIONAL",
21
+ }
22
+
23
+ file_name = f"{i}.json"
24
+ file_path = os.path.join(folder_path, file_name)
25
+
26
+ with open(file_path, 'w') as f:
27
+ json.dump(data, f, indent=4)
28
+
29
+ print(f"Archivo {file_name} creado en {folder_path}.")
30
+
31
+ print("Creación de archivos JSON completada.")
data/img/000.jpg ADDED

Git LFS Details

  • SHA256: a511829c66a90555b792f910af5110dc1dee6aa3ee586d2c4ebc17b9010b0ca0
  • Pointer size: 131 Bytes
  • Size of remote file: 403 kB
data/img/001.jpg ADDED

Git LFS Details

  • SHA256: 6378eb71e88b8fb4ca1b3aedb2971f71ed72375c437529da1966b370bd291aef
  • Pointer size: 130 Bytes
  • Size of remote file: 50.3 kB
data/img/002.jpg ADDED

Git LFS Details

  • SHA256: 2618a066cb1544a16dd477df5c57e6a4dd6cda5b03e1a2d30d4c0dc7c5458b09
  • Pointer size: 130 Bytes
  • Size of remote file: 55.7 kB
data/img/003.jpg ADDED

Git LFS Details

  • SHA256: cbd32a217064db0e826114170547eaa25617c716aaf50d2e64648768bd51e323
  • Pointer size: 131 Bytes
  • Size of remote file: 168 kB
data/img/004.jpg ADDED

Git LFS Details

  • SHA256: c97e39c78370834b39178b203ef2667f02c3d47bb4d8ab852a67b7031aeb7ce9
  • Pointer size: 130 Bytes
  • Size of remote file: 17.2 kB
data/img/005.jpg ADDED

Git LFS Details

  • SHA256: 0d3b69d1fe19f8351b42e17eb852b1c54f9a6d89edfeada9215d4e6cc2c15c49
  • Pointer size: 131 Bytes
  • Size of remote file: 132 kB
data/img/006.jpg ADDED

Git LFS Details

  • SHA256: 8f1b538b474a2d6071e97f59ec8894c6161d1a9d0e5fc7c512fc640e6336e1a2
  • Pointer size: 131 Bytes
  • Size of remote file: 218 kB
data/img/007.jpg ADDED

Git LFS Details

  • SHA256: f0a6cfdc9742439776b79b1c44cdded529c68905b2acccb33269b3ec829d5775
  • Pointer size: 131 Bytes
  • Size of remote file: 131 kB
data/img/008.jpg ADDED

Git LFS Details

  • SHA256: b3cf0ed2909ff2c6c1afb9aac9bea9f56b2d7747ebf709aaf5e7e2bb54a5d9e8
  • Pointer size: 131 Bytes
  • Size of remote file: 133 kB
data/img/009.jpg ADDED

Git LFS Details

  • SHA256: 6378eb71e88b8fb4ca1b3aedb2971f71ed72375c437529da1966b370bd291aef
  • Pointer size: 130 Bytes
  • Size of remote file: 50.3 kB
data/key/000.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "9664469",
3
+ "name": "DIEGO ARTURO",
4
+ "firstSurname": "CARRILLO",
5
+ "secondSurname": "GOMEZ",
6
+ "professionName": "LICENCIATURA COMO CIRUJANO DENTISTA",
7
+ "dateOfIssue": "Ciudad de México a 11 de Febrero de 2016",
8
+ "curp": "CAGD840308HDFRMG01",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/001.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "10900935",
3
+ "name": "FRANCISCO JAVIER",
4
+ "firstSurname": "AGUILAR",
5
+ "secondSurname": "REYNOSO",
6
+ "professionName": "LICENCIATURA EN DERECHO",
7
+ "dateOfIssue": "Ciudad de Mexico a 03 de Abril de 2018",
8
+ "curp": "AURF920515HDFGYR07",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/002.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "10496176",
3
+ "name": "SUGUEIRI GUADALUPE",
4
+ "firstSurname": "CAVALOS",
5
+ "secondSurname": "CERECEDO",
6
+ "professionName": "LICENCIATURA EN ADMINISTRACIONN DE EMPRESAS TURISTICAS",
7
+ "dateOfIssue": "Ciudad de Mexico a 16 de Junio de 2017",
8
+ "curp": "CACS941020MTSVRG07",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/003.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "9859099",
3
+ "name": "BRUNO",
4
+ "firstSurname": "HINOJOSA",
5
+ "secondSurname": "ESTRADA",
6
+ "professionName": "LICENCIATURA EN QUIMICO FARMACEUTICO BIOLOGO",
7
+ "dateOfIssue": "Ciudad de Mexico a 14 de Julio de 2016",
8
+ "curp": "HIEB920119HDFNSR03",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/004.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "10831542",
3
+ "name": "EDGAR ALEJANDRO",
4
+ "firstSurname": "ROJAS",
5
+ "secondSurname": "BRUNO",
6
+ "professionName": "TECNICO EN ENFERMERIA",
7
+ "dateOfIssue": "Ciudad de Mexico a 06 de Marzo de 2018",
8
+ "curp": "RXBE910930HTSJRD08",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/005.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "10054925",
3
+ "name": "MIRIAM LETICIA",
4
+ "firstSurname": "RODRIGUEZ",
5
+ "secondSurname": "SAENZ",
6
+ "professionName": "LICENCIATURA EN ADMINISTRACION",
7
+ "dateOfIssue": "Ciudad de México a 27 de Octubre de 2016",
8
+ "curp": "ROSM89062MTSDNR00",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/006.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "10578852",
3
+ "name": "VICTOR JACIENTO",
4
+ "firstSurname": "LARA",
5
+ "secondSurname": "CACERES",
6
+ "professionName": "LICENCIATURA EN DERECHO",
7
+ "dateOfIssue": "Ciudad de México a 11 de Febrero de 2016",
8
+ "curp": "LACV930129HTCRCC01",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/007.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "9650366",
3
+ "name": "DAVID RAFAEL",
4
+ "firstSurname": "MONDRAGON",
5
+ "secondSurname": "GOMEZ",
6
+ "professionName": "LICENCIATURA EN DERECHO",
7
+ "dateOfIssue": "México, D.F., a 18 de Enero de 2016",
8
+ "curp": "MOGD890626HDFNMV03",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/008.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "9478379",
3
+ "name": "JUDITH",
4
+ "firstSurname": "VILLEGAS",
5
+ "secondSurname": "DIAZ",
6
+ "professionName": "LICENCIATURA EN INGENIERÍA EN TECNOLOGÍAS DE LA INFORMACIÓN",
7
+ "dateOfIssue": "Ciudad de México a 10 de Febrero de 2016",
8
+ "curp": "VIDJ930118MHGLZD08",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/009.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "10900935",
3
+ "name": "FRANCISCO JAVIER",
4
+ "firstSurname": "AGUILAR",
5
+ "secondSurname": "REYNOSO",
6
+ "professionName": "LICENCIATURA EN DERECHO",
7
+ "dateOfIssue": "Ciudad de México a 03 de Abril de 2018",
8
+ "curp": "AURF920515HDFGYR07",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/010.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/011.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/012.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/013.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/014.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/015.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/016.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/017.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/018.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/019.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/020.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/021.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/022.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/023.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/024.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/025.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/026.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/027.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }
data/key/028.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "professionalId": "",
3
+ "name": "",
4
+ "firstSurname": "",
5
+ "secondSurname": "",
6
+ "professionName": "",
7
+ "dateOfIssue": "",
8
+ "curp": "",
9
+ "type": "CEDULA PROFECIONAL"
10
+ }