This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "all_text": "LOREM IPSUM", | |
| "company_id": "0013", | |
| "frequency": "W", | |
| "delivery_id": "01_3_11_03", | |
| "file_identifier": "SDL_INPUT.CSV", | |
| "code": "_5717", | |
| "origine": "ORIGINE_NAME", | |
| "period_end_date": "2017-10-01", | |
| "period_start_date": "2017-09-01", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.waateura.parser</groupId> | |
| <artifactId>parser</artifactId> | |
| <packaging>jar</packaging> | |
| <version>1.0-SNAPSHOT</version> | |
| <name>parser</name> | |
| <url>http://maven.apache.org</url> | |
| <build> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class EarlyStopping(Callback): | |
| def __init__(self, monitor='val_loss', patience=0, verbose=0,cmp=None): | |
| super(Callback, self).__init__() | |
| self.monitor = monitor | |
| self.patience = patience | |
| self.verbose = verbose | |
| self.best = np.Inf | |
| self.wait = 0 | |
| if cmp : |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| : capital-common-countries | |
| athènes grèce bagdad irak | |
| athènes grèce bangkok thaïlande | |
| athènes grèce beijing china | |
| athènes grèce berlin allemagne | |
| athènes grèce berne suisse | |
| athènes grèce caire Égypte | |
| athènes grèce canberra australie | |
| athènes grèce chine pékin | |
| athènes grèce hanoi vietnam |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print( "Goodbye, World!") # ceci n'est pas une Hello World ! | |
| a = " je suis une string" # ceci est une string unicode | |
| b = 'je suis une string aussi' # ça aussi | |
| c = bytes('je suis une bytes' ) | |
| c = {"clef" : 'valeur'} # ceci est une dictionnaire | |
| d = ( |