index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service/impl/SpringBeanJobFactory.java | package ai.hyacinth.core.service.trigger.server.service.impl;
import org.quartz.spi.TriggerFiredBundle;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.scheduling.quartz.AdaptableJobFactory;
import org.springframework.ster... |
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service/impl/TriggerClientService.java | package ai.hyacinth.core.service.trigger.server.service.impl;
public interface TriggerClientService {
void trigger(Long triggerId);
}
|
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service/impl/TriggerClientServiceImpl.java | package ai.hyacinth.core.service.trigger.server.service.impl;
import ai.hyacinth.core.service.trigger.server.dto.TriggerInfo;
import ai.hyacinth.core.service.trigger.server.dto.type.ServiceTriggerMethodType;
import ai.hyacinth.core.service.trigger.server.error.TriggerServiceErrorCode;
import ai.hyacinth.core.service.t... |
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service/impl/TriggerJobBean.java | package ai.hyacinth.core.service.trigger.server.service.impl;
import lombok.extern.slf4j.Slf4j;
import org.quartz.JobDetail;
import org.quartz.JobExecutionContext;
import org.quartz.JobKey;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.quartz.QuartzJobBean;
import... |
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service/impl/TriggerServiceConstants.java | package ai.hyacinth.core.service.trigger.server.service.impl;
public interface TriggerServiceConstants {
String JOB_DATA_KEY_TRIGGER_ID = "TriggerService/Trigger/Id";
String SERVICE_GLOBAL = "__GLOBAL__";
String EVENT_TYPE = "TriggerService/Event/Trigger";
}
|
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/service/impl/TriggerServiceImpl.java | package ai.hyacinth.core.service.trigger.server.service.impl;
import ai.hyacinth.core.service.trigger.server.domain.ServiceTrigger;
import ai.hyacinth.core.service.trigger.server.dto.TriggerChangeResult;
import ai.hyacinth.core.service.trigger.server.dto.TriggerCreationRequest;
import ai.hyacinth.core.service.trigger.... |
0 | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server | java-sources/ai/hyacinth/framework/core-service-trigger-server/0.5.24/ai/hyacinth/core/service/trigger/server/web/TriggerController.java | package ai.hyacinth.core.service.trigger.server.web;
import ai.hyacinth.core.service.trigger.server.dto.TriggerChangeResult;
import ai.hyacinth.core.service.trigger.server.dto.TriggerCreationRequest;
import ai.hyacinth.core.service.trigger.server.dto.TriggerInfo;
import ai.hyacinth.core.service.trigger.server.dto.Trig... |
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/ServiceApiConstants.java | package ai.hyacinth.core.service.web.common;
public interface ServiceApiConstants {
String API_PREFIX = "/api";
String HTTP_HEADER_AUTHENTICATED_PRINCIPLE = "X-Principle";
}
|
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/ServiceApiErrorCode.java | package ai.hyacinth.core.service.web.common;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
public interface ServiceApiErrorCode {
String getCode();
default String getMessage() {
return toString();
}
int getHttpStatusCode();
@Data
@AllArgsConstructor
@NoArg... |
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/ServiceApiErrorResponse.java | package ai.hyacinth.core.service.web.common;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
@Data
@EqualsAndHashCode(callSuper = true)
public class ServiceApiErrorResponse ex... |
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/ServiceApiException.java | package ai.hyacinth.core.service.web.common;
public class ServiceApiException extends RuntimeException {
private int httpStatusCode;
private ServiceApiErrorResponse errorResponse;
public ServiceApiException() {
super();
}
public ServiceApiException(
int httpStatus, ServiceApiErrorResponse error... |
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/ServiceApiResponse.java | package ai.hyacinth.core.service.web.common;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
public class ServiceApiResponse {
protected String status = "success";
@JsonInclude(JsonInclude.Include.NON_NULL)
protected Object data... |
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/error/CommonServiceErrorCode.java | package ai.hyacinth.core.service.web.common.error;
import ai.hyacinth.core.service.web.common.ServiceApiErrorCode;
import lombok.AllArgsConstructor;
import lombok.Getter;
import org.springframework.http.HttpStatus;
@Getter
@AllArgsConstructor
public enum CommonServiceErrorCode implements ServiceApiErrorCode {
BAD_... |
0 | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common | java-sources/ai/hyacinth/framework/core-service-web-common/0.5.24/ai/hyacinth/core/service/web/common/payload/AuthenticationResult.java | package ai.hyacinth.core.service.web.common.payload;
import java.io.Serializable;
import java.util.List;
import javax.validation.constraints.NotNull;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
public class AuthenticationResult<PrincipalType> implements Serializable {
private stati... |
0 | java-sources/ai/hyacinth/framework/core-service-web-support/0.5.24/ai/hyacinth/core/service/web/support | java-sources/ai/hyacinth/framework/core-service-web-support/0.5.24/ai/hyacinth/core/service/web/support/config/DefaultConfigLoader.java | package ai.hyacinth.core.service.web.support.config;
import ai.hyacinth.core.service.module.loader.ConfigLoaderPostProcessor;
public class DefaultConfigLoader extends ConfigLoaderPostProcessor {}
|
0 | java-sources/ai/hyacinth/framework/core-service-web-support/0.5.24/ai/hyacinth/core/service/web/support | java-sources/ai/hyacinth/framework/core-service-web-support/0.5.24/ai/hyacinth/core/service/web/support/config/WebConfig.java | package ai.hyacinth.core.service.web.support.config;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)
public class WebConfig {}
|
0 | java-sources/ai/idylnlp/idylnlp-dl4j/1.1.0/ai/idylnlp | java-sources/ai/idylnlp/idylnlp-dl4j/1.1.0/ai/idylnlp/dl4j/IdylNLPTokenizer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www... |
0 | java-sources/ai/idylnlp/idylnlp-dl4j/1.1.0/ai/idylnlp | java-sources/ai/idylnlp/idylnlp-dl4j/1.1.0/ai/idylnlp/dl4j/IdylNLPTokenizerFactory.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/Constants.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/ModelManifestCache.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/ModelValidator.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/Namespaces.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/entity/Entity.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/entity/EntityMetadata.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/entity/Span.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/entity | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/entity/comparators/EntityComparator.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/exceptions/EntityFinderException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/exceptions/ExtractorException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/exceptions/ModelLoaderException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/exceptions/ValidationException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/language/Language.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/manifest/DocumentModelManifest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/manifest/ModelManifest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/manifest/ModelManifestUtils.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/manifest/SecondGenModelManifest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/manifest/StandardModelManifest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/AnnotationWriter.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/ConfidenceFilter.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/ConfidenceFilterSerializer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/DuplicateEntityStrategy.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/EntityComparator.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/EntityOrder.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/EntitySanitizer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/Location.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/SentenceDetector.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/SentenceSanitizer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/Span.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/Stemmer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/Tokenizer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/annotation/AnnotationReader.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/annotation/AnnotationTypes.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/annotation/IdylNLPAnnotation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/AbstractDocumentClassificationRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/AbstractDocumentClassifierConfiguration.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/AbstractDocumentClassifierTrainingRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DeepLearningDocumentClassificationRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DeepLearningDocumentClassifierTrainingRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassificationEvaluationRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassificationEvaluationResponse.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassificationFile.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassificationResponse.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassificationScores.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassificationTrainingResponse.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassifier.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassifierException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassifierModelOperations.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentClassifierTrainingRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/DocumentModelTrainingException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/OpenNLPDocumentClassificationRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/documents/OpenNLPDocumentClassifierTrainingRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/language/LanguageDetectionException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/language/LanguageDetectionResponse.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/language/LanguageDetector.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/language/StopWordRemover.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/lemma/Lemmatizer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/ner/EntityExtractionRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/ner/EntityExtractionResponse.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/ner/EntityRecognizer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/pipeline/Pipeline.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/pipeline/PipelineRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/pipeline/PipelineResponse.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/pos/PartsOfSpeechTagger.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/pos/PartsOfSpeechToken.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/sentiment/Sentiment.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/sentiment/SentimentAnalysisException.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/sentiment/SentimentAnalysisRequest.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/sentiment/SentimentAnalyzer.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/sentiment/SentimentDefinition.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings/Distance.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings/Similarity.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings/StringMetrics.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings/distancestrategy/ConstantMaxDistanceStrategy.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings/distancestrategy/MaxDistanceStrategy.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/strings/distancestrategy/WordLengthBasedMaxDistanceStrategy.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/subjects/BratSubjectOfTrainingOrEvaluation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/subjects/CoNLL2003SubjectOfTrainingOrEvaluation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/subjects/DefaultSubjectOfTrainingOrEvaluation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/subjects/IdylNLPSubjectOfTrainingOrEvaluation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/subjects/OpenNLPSubjectOfTrainingOrEvaluation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
0 | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp | java-sources/ai/idylnlp/idylnlp-model/1.1.0/ai/idylnlp/model/nlp/subjects/SubjectOfTrainingOrEvaluation.java | /*******************************************************************************
* Copyright 2018 Mountain Fog, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.