mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nlp.git
				synced 2025-10-31 03:42:44 +00:00 
			
		
		
		
	
			
				
					
						
					
					6fd969d3b6d7ee492990bacf6c59eb90b4902079
				
			
			
		
	Natural language processing
This repository provides all code that is needed to build a container image for natural language processing utilising spaCy. In case you don't want to build the image by yourself, there is also a prebuild image that can be used in the registry.
Build the image
user@machine:~$ cd <path-to-this-repository>
user@machine:~$ docker build -t gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/nlp .
Starting a container
user@machine:~$ docker run \
  --name nlp-container \
  -dit \
  -v <your-input-directory>:/root/files_for_nlp \
  -v <your-output-directory>:/root/files_from_nlp \
  gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/nlp
Start a natural language processing run
user@machine:~$ docker exec -it nlp-container \
  nlp -i files_for_nlp -o files_from_nlp -l <language-code>
Where needs to be one of the following:
- de (Deutsch)
- en (Englisch)
- es (Spanish)
- fr (Französisch)
- pt (Portugisisch)
					Languages
				
				
								
								
									Python
								
								95.2%
							
						
							
								
								
									Dockerfile
								
								4.8%